:root {
  --navy: #08152f;
  --navy-2: #123b57;
  --aqua: #4fc7c9;
  --aqua-light: #dff8f6;
  --coral: #f47c58;
  --sand: #f6f3eb;
  --paper: #ffffff;
  --ink: #10213b;
  --muted: #607087;
  --line: #dce3e8;
  --shadow: 0 28px 70px rgba(8, 21, 47, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfd;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 227, 232, .8);
  background: rgba(251, 252, 253, .88);
  backdrop-filter: blur(18px);
}
.nav { height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 20px; font-weight: 760; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 8px 22px rgba(8, 21, 47, .18); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 650; }
.nav-links a:hover { color: var(--ink); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  background: var(--aqua);
  color: var(--navy);
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(79, 199, 201, .28);
}
.button.secondary { color: white; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); box-shadow: none; }
.hero { overflow: hidden; background: var(--navy); color: white; }
.hero-grid { min-height: 760px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding: 86px 0 74px; }
.eyebrow { margin: 0 0 16px; color: var(--aqua); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 0; max-width: 760px; font-size: clamp(46px, 6vw, 78px); line-height: 1.02; letter-spacing: -.055em; }
.hero-copy > p:not(.eyebrow) { max-width: 630px; margin: 25px 0 30px; color: rgba(255,255,255,.72); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 18px; color: rgba(255,255,255,.5); font-size: 13px; }
.phone-stage { position: relative; min-height: 620px; display: grid; place-items: center; }
.phone-stage::before { content: ""; position: absolute; width: 570px; height: 570px; border-radius: 50%; background: radial-gradient(circle at 48% 52%, rgba(79,199,201,.36), rgba(79,199,201,0) 68%); }
.phone { position: relative; width: min(355px, 86vw); padding: 10px; border-radius: 54px; background: #020714; box-shadow: 0 45px 100px rgba(0,0,0,.48); transform: rotate(3deg); }
.phone img { width: 100%; border-radius: 45px; }
.mini-badge { position: absolute; right: -20px; top: 110px; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(13,37,60,.88); color: white; box-shadow: var(--shadow); backdrop-filter: blur(16px); font-weight: 700; }
.mini-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); }
.section { padding: 100px 0; }
.section.tint { background: var(--sand); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section h2, .legal h1 { margin: 0 0 14px; color: var(--navy); font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
.section-head p, .lead { color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: var(--paper); box-shadow: 0 12px 35px rgba(8,21,47,.06); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 15px; background: var(--aqua-light); color: var(--navy); font-size: 22px; }
.card:nth-child(2n) .card-icon { background: #fff0eb; }
.card h3 { margin: 0 0 8px; font-size: 21px; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.privacy-band { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: center; padding: 44px; border-radius: 34px; background: var(--navy); color: white; }
.privacy-band img { width: 170px; margin: auto; border-radius: 38px; }
.privacy-band h2 { color: white; }
.privacy-band p { color: rgba(255,255,255,.68); }
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 820px; }
.price-card { position: relative; padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: white; }
.price-card.featured { border: 2px solid var(--aqua); box-shadow: var(--shadow); }
.pill { display: inline-flex; padding: 5px 9px; border-radius: 99px; background: var(--aqua); color: var(--navy); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.price-card h3 { margin: 20px 0 4px; font-size: 24px; }
.price { font-size: 40px; font-weight: 800; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: 0; }
.price-card ul { padding-left: 20px; color: var(--muted); }
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq details { padding: 22px 24px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.faq summary { cursor: pointer; font-weight: 750; }
.faq p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.legal { max-width: 790px; padding: 74px 0 100px; }
.legal h1 { font-size: clamp(40px, 6vw, 62px); }
.legal h2 { margin: 42px 0 10px; color: var(--navy); font-size: 25px; letter-spacing: -.02em; }
.legal h3 { margin: 26px 0 8px; font-size: 18px; }
.legal p, .legal li { color: #485b72; }
.legal li { margin: 7px 0; }
.legal .updated { color: var(--muted); font-size: 14px; }
.callout { padding: 20px 22px; border-left: 4px solid var(--aqua); border-radius: 0 16px 16px 0; background: var(--aqua-light); }
.support-hero { padding: 72px 0 38px; text-align: center; }
.support-hero img { width: 96px; margin: 0 auto 24px; border-radius: 24px; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-bottom: 90px; }
.support-grid .card a { color: #087f83; font-weight: 700; }
.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: white; }
.footer-grid { display: flex; align-items: center; gap: 24px; }
.footer-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-links { margin-left: auto; display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; }

@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; padding-top: 64px; }
  .hero-copy > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .phone-stage { min-height: 540px; }
  .feature-grid, .faq { grid-template-columns: 1fr; }
  .privacy-band { grid-template-columns: 1fr; text-align: center; padding: 34px 24px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .nav { height: 68px; }
  .brand { font-size: 18px; }
  .brand img { width: 38px; height: 38px; }
  .nav .button { min-height: 44px; padding: 0 15px; font-size: 13px; }
  .hero-grid { min-height: auto; padding-bottom: 48px; }
  .hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .phone-stage { min-height: 500px; }
  .mini-badge { right: -4px; }
  .section { padding: 72px 0; }
  .pricing, .support-grid { grid-template-columns: 1fr; }
  .footer-grid { display: block; }
  .footer-links { margin: 18px 0 0; }
}
