:root {
  --warm-ivory: #faf7f2;
  --stone: #e7e4dc;
  --deep-ink: #1f2328;
  --muted-teal: #6d8f8a;
  --deep-plum: #4b2e4f;
  --sand: #efe9dd;
  --mist: #dfe8e4;
  --line: rgba(31, 35, 40, 0.13);
  --soft-shadow: 0 24px 60px rgba(31, 35, 40, 0.11);
  --font-display: "Satoshi", "Avenir Next", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-ivory);
  color: var(--deep-ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 35, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 35, 40, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 66%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 242, 0.82);
  border-bottom: 1px solid rgba(31, 35, 40, 0.08);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(109, 143, 138, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(109, 143, 138, 0.9);
  border-left-color: transparent;
  border-radius: 50%;
}

.brand-mark::before {
  inset: 7px;
}

.brand-mark::after {
  inset: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(31, 35, 40, 0.72);
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--deep-ink);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(31, 35, 40, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  color: rgba(31, 35, 40, 0.67);
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(31, 35, 40, 0.58);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 94px);
  font-weight: 400;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
}

h3 {
  font-size: 19px;
  font-weight: 650;
}

.lead {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(31, 35, 40, 0.68);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(31, 35, 40, 0.13);
  font-weight: 650;
  font-size: 14px;
}

.button.primary {
  background: var(--muted-teal);
  color: white;
  border-color: var(--muted-teal);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.36);
}

.privacy-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  max-width: 520px;
  margin-top: 34px;
  padding: 16px;
  border: 1px solid rgba(31, 35, 40, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--stone);
  display: grid;
  place-items: center;
  color: var(--deep-ink);
}

.icon-circle svg {
  width: 20px;
  height: 20px;
}

.privacy-note p {
  margin: 0;
  font-size: 14px;
  color: rgba(31, 35, 40, 0.7);
}

.hero-visual {
  position: relative;
}

.phone-showcase {
  min-height: 660px;
  position: relative;
}

.phone-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 35, 40, 0.16);
  border-radius: 34px;
  background: var(--warm-ivory);
  box-shadow: var(--soft-shadow);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-shot {
  width: min(310px, 56%);
  position: absolute;
  left: 12%;
  top: 2%;
  z-index: 3;
}

.secondary-shot {
  width: min(230px, 42%);
  position: absolute;
  right: 6%;
}

.top-shot {
  top: 10%;
  z-index: 2;
}

.bottom-shot {
  bottom: 0;
  z-index: 1;
}

.contour-badge {
  position: absolute;
  right: -20px;
  bottom: 28px;
  width: min(210px, 40%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(109, 143, 138, 0.35), rgba(109, 143, 138, 0.12) 64%, transparent 65%),
    repeating-radial-gradient(circle at 45% 44%, transparent 0 12px, rgba(31, 35, 40, 0.12) 13px, transparent 15px);
  border: 1px solid rgba(109, 143, 138, 0.28);
}

.section {
  padding: 74px 0;
  border-top: 1px solid rgba(31, 35, 40, 0.08);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
  color: rgba(31, 35, 40, 0.66);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
}

.feature .icon-circle {
  margin-bottom: 28px;
}

.feature p {
  margin: 9px 0 0;
  color: rgba(31, 35, 40, 0.62);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.flow-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.flow-preview .phone-shot {
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(31, 35, 40, 0.09);
}

.flow-preview .phone-shot:nth-child(2) {
  transform: translateY(-24px);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(31, 35, 40, 0.15);
  display: grid;
  place-items: center;
  color: var(--muted-teal);
  font-weight: 700;
}

.step p {
  margin: 6px 0 0;
  color: rgba(31, 35, 40, 0.65);
}

.legal-band {
  background: var(--deep-ink);
  color: white;
  border-top: 0;
}

.legal-band .section-heading p,
.legal-band .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.legal-card {
  display: block;
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.legal-card p {
  color: rgba(255, 255, 255, 0.66);
  margin: 10px 0 0;
}

.page {
  padding: 62px 0 84px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 760px);
  gap: 56px;
  align-items: start;
}

.page-sidebar {
  position: sticky;
  top: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
}

.page-sidebar p {
  margin: 0 0 16px;
  color: rgba(31, 35, 40, 0.62);
  font-size: 14px;
}

.page-sidebar a {
  display: block;
  padding: 8px 0;
  color: rgba(31, 35, 40, 0.72);
  font-size: 14px;
}

.article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
}

.article h1 {
  font-size: clamp(42px, 5vw, 68px);
  margin-bottom: 16px;
}

.article h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.article h3 {
  margin-top: 24px;
}

.article p,
.article li {
  color: rgba(31, 35, 40, 0.72);
}

.article-lead {
  font-size: 19px;
  margin: 0 0 30px;
}

.article ul {
  padding-left: 20px;
}

.article a {
  color: var(--muted-teal);
  font-weight: 650;
}

.notice {
  margin: 28px 0;
  padding: 18px;
  border-left: 4px solid var(--muted-teal);
  background: rgba(109, 143, 138, 0.11);
}

.legal-meta {
  margin: 0 0 26px;
  color: rgba(31, 35, 40, 0.52);
  font-size: 14px;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 26px;
  align-items: center;
  margin: 28px 0 38px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
}

.support-hero h2 {
  margin-top: 0;
}

.support-hero img {
  width: min(220px, 100%);
  justify-self: center;
  border-radius: 28px;
  border: 1px solid rgba(31, 35, 40, 0.1);
  box-shadow: 0 16px 40px rgba(31, 35, 40, 0.1);
}

.emergency-card {
  padding: 22px;
  border: 1px solid rgba(75, 46, 79, 0.18);
  border-radius: 8px;
  background: rgba(75, 46, 79, 0.08);
}

.emergency-card h3 {
  margin-top: 0;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.resource-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(75, 46, 79, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 14px;
}

.support-options {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.support-option {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
}

.support-option p {
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
}

.faq-grid p {
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(31, 35, 40, 0.09);
  color: rgba(31, 35, 40, 0.58);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

@media (max-width: 920px) {
  .hero-grid,
  .section-heading,
  .split,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    gap: 34px;
  }

  .phone-showcase {
    min-height: 520px;
  }

  .feature-grid,
  .legal-card-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    font-size: 19px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .hero {
    padding-top: 38px;
  }

  .phone-showcase {
    min-height: 430px;
  }

  .primary-shot {
    width: 58%;
    left: 0;
  }

  .secondary-shot {
    width: 44%;
    right: 0;
  }

  .phone-shot {
    border-radius: 24px;
  }

  .contour-badge {
    display: none;
  }

  .flow-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .flow-preview .phone-shot {
    border-radius: 16px;
  }

  .section {
    padding: 52px 0;
  }

  .feature-grid,
  .legal-card-grid,
  .faq-grid,
  .support-hero {
    grid-template-columns: 1fr;
  }

  .actions,
  .footer-row,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .article {
    padding: 24px;
  }
}

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