:root {
  color-scheme: light;
  --paper: #f8f4ec;
  --ink: #1b1b1b;
  --muted: #4a4a4a;
  --accent: #ef5a3c;
  --accent-2: #1f7a8c;
  --accent-3: #f6c453;
  --card: #fffaf2;
  --shadow: 0 24px 60px rgba(27, 27, 27, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 196, 83, 0.35), transparent 55%),
    radial-gradient(circle at 90% 15%, rgba(31, 122, 140, 0.25), transparent 60%),
    radial-gradient(circle at 50% 85%, rgba(239, 90, 60, 0.2), transparent 55%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(248, 244, 236, 0.9);
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 46px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.7rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 16px 0 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 20px 40px rgba(239, 90, 60, 0.25);
}

.btn.ghost {
  border-color: rgba(27, 27, 27, 0.25);
  color: var(--ink);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27, 27, 27, 0.08);
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(360px, 82vw);
  background: #111;
  padding: 18px;
  border-radius: 36px;
  color: white;
  box-shadow: var(--shadow);
}

.phone-top {
  font-family: "Fraunces", "Times New Roman", serif;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.phone-body {
  background: #1c1c1c;
  padding: 14px;
  border-radius: 28px;
  display: grid;
  gap: 12px;
}

.flow-card {
  background: #2a2a2a;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-card.accent {
  background: rgba(239, 90, 60, 0.22);
  border-color: rgba(239, 90, 60, 0.5);
}

.flow-card.accent-2 {
  background: rgba(31, 122, 140, 0.25);
  border-color: rgba(31, 122, 140, 0.5);
}

.flow-card .label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 6px;
}

.flow-card .title {
  font-weight: 600;
  margin: 0 0 6px;
}

.flow-card .text {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
}

.stats {
  padding: 30px 0 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.stat-label {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 90px 0;
}

.section-title h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 10px 0 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.step-number {
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px;
}

.spotlight {
  background: rgba(255, 255, 255, 0.65);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-3);
  position: absolute;
  left: 0;
  top: 6px;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 20px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.vault-card {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 90, 60, 0.15), rgba(31, 122, 140, 0.15));
  border: 1px solid rgba(27, 27, 27, 0.1);
}

.vault-label {
  font-weight: 600;
  color: var(--accent-2);
  margin: 0 0 10px;
}

.vault-text {
  margin: 0;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.pill {
  padding: 22px;
  border-radius: 999px;
  background: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.pill p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq {
  background: rgba(255, 255, 255, 0.7);
}

.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq-item {
  background: white;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.safety {
  padding: 40px 0 90px;
}

.safety-card {
  background: #151515;
  color: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.safety-card a {
  color: var(--accent-3);
  text-decoration: underline;
}

.cta {
  padding-top: 40px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, rgba(31, 122, 140, 0.15), rgba(239, 90, 60, 0.15));
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.site-footer {
  padding: 60px 0;
  border-top: 1px solid rgba(27, 27, 27, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-copy {
  color: var(--muted);
  margin-top: 6px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal {
  padding-bottom: 60px;
}

.legal-main {
  padding: 80px 0 60px;
}

.legal-section {
  margin-top: 30px;
  padding: 24px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.legal-section h2 {
  margin-top: 0;
}

.legal-section ul {
  padding-left: 20px;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .pill {
    border-radius: 24px;
    text-align: left;
  }

  .stats-grid {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
