/* ─────────────────────────────────────────────────────────
   RESET & TOKENS
   ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Apple-exact greys & blues */
  --black:        #000000;
  --bg-dark:      #161617;
  --bg-light:     #f5f5f7;
  --bg-white:     #ffffff;
  --text-dark:    #1d1d1f;
  --text-mute:    #86868b;
  --text-mute-2:  #6e6e73;
  --text-light:   #f5f5f7;
  --text-light-2: #a1a1a6;

  --blue:        #0071e3;   /* Apple marketing blue */
  --blue-hover:  #0077ed;
  --blue-press:  #006edb;
  --blue-soft:   #2997ff;   /* iOS link blue */
  --green:       #34c759;
  --orange:      #ff9f0a;
  --red:         #ff453a;
  --purple:      #5e5ce6;

  --container:   980px;
  --container-wide: 1024px;
  --nav-h:       44px;

  --ease-apple:  cubic-bezier(0.28, 0.11, 0.32, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.5, 1.6, 0.4, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--text-dark);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ─────────────────────────────────────────────────────────
   KEYFRAMES
   ───────────────────────────────────────────────────────── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(10,113,227,.55); }
  70%  { box-shadow: 0 0 0 18px rgba(10,113,227,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,113,227,0); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes peek-left {
  0%   { transform: rotate(-26deg) translateX(-90px) translateY(28px); }
  58%  { transform: rotate(-7deg)  translateX(10px)  translateY(-6px); }
  100% { transform: rotate(-9deg)  translateX(0)     translateY(0); }
}
@keyframes float-left {
  0%, 100% { transform: rotate(-9deg) translateY(0); }
  50%      { transform: rotate(-9deg) translateY(-10px); }
}
@keyframes peek-right {
  0%   { transform: rotate(26deg) translateX(90px)  translateY(28px); }
  58%  { transform: rotate(7deg)  translateX(-10px) translateY(-6px); }
  100% { transform: rotate(9deg)  translateX(0)     translateY(0); }
}
@keyframes float-right {
  0%, 100% { transform: rotate(9deg) translateY(0); }
  50%      { transform: rotate(9deg) translateY(-10px); }
}
@keyframes blink-cursor {
  0%, 49% { opacity: 1; }
  50%, 99% { opacity: 0; }
  100%    { opacity: 1; }
}
@keyframes scroll-arrow {
  0%   { transform: translateY(0);   opacity: .7; }
  50%  { transform: translateY(6px); opacity: 1; }
  100% { transform: translateY(0);   opacity: .7; }
}
@keyframes glow-soft {
  0%, 100% { box-shadow: 0 40px 100px -20px rgba(10,113,227,.45); }
  50%      { box-shadow: 0 50px 130px -20px rgba(10,113,227,.7);  }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ─────────────────────────────────────────────────────────
   GLOBAL NAV
   ───────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(0,0,0,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .4s var(--ease-apple);
}
#nav.light { background: rgba(251,251,253,0.82); border-bottom-color: rgba(0,0,0,.07); }

.nav-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  letter-spacing: -.01em;
}

.nav-logo { display: inline-flex; align-items: center; gap: 6px; color: #f5f5f7; transition: color .3s; }
#nav.light .nav-logo { color: #1d1d1f; }
.nav-logo svg { width: 16px; height: 16px; color: var(--blue-soft); }
.nav-logo-text { font-size: 17px; font-weight: 500; letter-spacing: -.02em; }

.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links li a {
  display: inline-block;
  padding: 0 12px;
  color: rgba(245,245,247,0.8);
  font-size: 12px; font-weight: 500;
  transition: color .25s var(--ease-apple);
}
.nav-links li a:hover { color: #f5f5f7; }
#nav.light .nav-links li a         { color: rgba(29,29,31,0.8); }
#nav.light .nav-links li a:hover   { color: #1d1d1f; }

.nav-buy {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500;
  color: #fff;
  background: var(--blue);
  padding: 6px 14px;
  border-radius: 980px;
  transition: background .2s var(--ease-apple);
}
#nav.light .nav-buy { color: #fff; background: var(--blue); }
.nav-buy:hover { opacity: 1; background: #0077ed; }

#nav-hamburger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  color: #f5f5f7;
}
#nav.light #nav-hamburger { color: #1d1d1f; }
#nav-hamburger svg { width: 18px; height: 18px; }

/* Slide-down mobile panel */
#mobile-panel {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(30px);
  padding: 24px 22px;
  transform: translateY(-110%);
  transition: transform .45s var(--ease-apple);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
#mobile-panel.open { transform: translateY(0); }
#mobile-panel a {
  display: block;
  font-size: 18px; font-weight: 500; letter-spacing: -.01em;
  color: #f5f5f7;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: opacity .2s;
}
#mobile-panel a:hover { opacity: .7; }
#mobile-panel .mobile-buy {
  margin-top: 24px;
  border: 0; text-align: center;
  background: var(--blue); color: #fff; border-radius: 980px;
  padding: 14px; font-size: 17px; font-weight: 400;
}

/* ─────────────────────────────────────────────────────────
   SECTION SHELLS
   ───────────────────────────────────────────────────────── */
.s-black, .s-dark { background: var(--black); color: var(--text-light); }
.s-dark            { background: var(--bg-dark); }
.s-light           { background: var(--bg-light); color: var(--text-dark); }
.s-white           { background: var(--bg-white); color: var(--text-dark); }

section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

.container       { max-width: var(--container); margin: 0 auto; padding-left: 22px; padding-right: 22px; }
.container-wide  { max-width: var(--container-wide); margin: 0 auto; padding-left: 22px; padding-right: 22px; }

/* ─────────────────────────────────────────────────────────
   TYPOGRAPHY (Apple's actual scale)
   ───────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--blue-soft); }
.eyebrow-mute  { color: var(--text-mute); font-weight: 400; }

.headline-xl {
  font-size: clamp(48px, 8.4vw, 96px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-wrap: balance;
}
.headline-lg {
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.05;
  text-wrap: balance;
}
.headline-md {
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.07;
  text-wrap: balance;
}
.headline-sm {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.1;
  text-wrap: balance;
}
.subhead {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: .002em;
  color: var(--text-mute);
}
.body-lg { font-size: 21px; line-height: 1.43; letter-spacing: .011em; }
.body    { font-size: 17px; line-height: 1.47; letter-spacing: -.022em; }
.body-sm { font-size: 14px; line-height: 1.43; letter-spacing: -.016em; color: var(--text-mute); }
.caption { font-size: 12px; line-height: 1.4; letter-spacing: -.01em; color: var(--text-mute); }

.muted-on-dark { color: var(--text-mute) !important; }
.dim-on-dark   { color: var(--text-light-2) !important; }
.text-light    { color: var(--text-light) !important; }
.text-dark     { color: var(--text-dark) !important; }

/* ─────────────────────────────────────────────────────────
   CTA BUTTONS (Apple-style)
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  height: 44px; min-width: 28px;
  padding: 0 22px;
  font-size: 17px; font-weight: 400; letter-spacing: -.022em;
  border-radius: 980px;
  text-align: center;
  transition: background .15s var(--ease-apple), opacity .2s, transform .15s var(--ease-apple);
  cursor: pointer; border: 0;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover  { background: var(--blue-hover); }
.btn-primary:active { background: var(--blue-press); transform: scale(.98); }

.btn-secondary { background: transparent; color: var(--blue); padding: 0 4px; height: auto; }
.btn-secondary::after {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  margin-left: 5px;
  vertical-align: middle;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' stroke='currentColor' stroke-width='1.6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 1 7 4.5 3 8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' stroke='currentColor' stroke-width='1.6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 1 7 4.5 3 8'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 9px 9px;
  mask-size: 9px 9px;
  background-color: currentColor;
  transition: transform .2s var(--ease-apple);
}
.btn-secondary:hover::after { transform: translateX(3px); }

.btn-link-dark  { color: var(--blue-soft); }

/* App Store badge — official styling */
.app-store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #000;
  height: 50px; padding: 0 22px;
  border-radius: 12px;
  font-size: 17px; font-weight: 500; letter-spacing: -.01em;
  transition: opacity .2s, transform .2s var(--ease-apple);
}
.app-store-badge:hover { opacity: .88; transform: translateY(-1px); }
.app-store-badge svg { width: 22px; height: 22px; }

/* ─────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out),
              transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* Word-by-word headline reveal */
.word-reveal .word {
  display: inline-block;
  transition: opacity .9s var(--ease-out),
              transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.js .word-reveal .word { opacity: 0; transform: translateY(18px); }
.js .word-reveal.in .word { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ─────────────────────────────────────────────────────────
   IPHONE FRAME — devices.css technique, Space Black Titanium
   Based on iPhone 14 Pro body: 428×868 px, screen: 390×830
   Scaled proportionally via --pw custom property
   ───────────────────────────────────────────────────────── */
.phone {
  position: relative;
  width: var(--pw, 300px);
  /* Device BODY aspect ratio (not screen): 428 × 868 */
  aspect-ratio: 428 / 868;
  background: #010101;
  border: 1px solid #5c5956;         /* Space Black titanium edge */
  border-radius: calc(var(--pw, 300px) * .159);  /* 68 / 428 */
  padding: calc(var(--pw, 300px) * .044);         /* 19 / 428 */
  box-shadow:
    /* Polished chamfer ring — bright inner highlight at edge */
    inset 0 0 4px 2px white,
    /* Deep frame well — dark ring around screen recess */
    inset 0 0 0 calc(var(--pw, 300px) * .014) #76726f,
    /* Drop shadows */
    0 calc(var(--pw, 300px) * .025) calc(var(--pw, 300px) * .040) rgba(0,0,0,.32),
    0 calc(var(--pw, 300px) * .100) calc(var(--pw, 300px) * .160) calc(var(--pw, 300px) * -.020) rgba(0,0,0,.54),
    0 calc(var(--pw, 300px) * .240) calc(var(--pw, 300px) * .300) calc(var(--pw, 300px) * -.060) rgba(0,0,0,.72);
  flex-shrink: 0;
  transition: transform .6s var(--ease-apple);
}

/* Left side buttons: Action (short) + Vol Up + Vol Down
   Positioned as real divs matching devices.css iPhone 14 Pro geometry */
.phone-btns {
  background: #5c5956;
  border-radius: 2px 0 0 2px;
  height: calc(var(--pw, 300px) * .075);   /* action: 32/868 × 2.028 */
  left: -2px;
  position: absolute;
  top: calc(var(--pw, 300px) * .269);      /* 115/868 × 2.028 */
  width: 3px;
  box-shadow: -1px 0 2px rgba(0,0,0,.5), inset 1px 0 1px rgba(255,255,255,.10);
}
.phone-btns::before {                      /* Vol Up */
  background: #5c5956;
  border-radius: 2px 0 0 2px;
  box-shadow: inherit;
  content: "";
  height: calc(var(--pw, 300px) * .145);   /* 62/868 × 2.028 */
  left: 0;
  position: absolute;
  top: calc(var(--pw, 300px) * .140);      /* (175−115)/868 × 2.028 */
  width: 3px;
}
.phone-btns::after {                       /* Vol Down */
  background: #5c5956;
  border-radius: 2px 0 0 2px;
  box-shadow: inherit;
  content: "";
  height: calc(var(--pw, 300px) * .145);
  left: 0;
  position: absolute;
  top: calc(var(--pw, 300px) * .327);      /* (255−115)/868 × 2.028 */
  width: 3px;
}

/* Right side: Sleep/Wake button */
.phone-power {
  background: #5c5956;
  border-radius: 0 2px 2px 0;
  height: calc(var(--pw, 300px) * .234);   /* 100/868 × 2.028 */
  position: absolute;
  right: -2px;
  top: calc(var(--pw, 300px) * .468);      /* 200/868 × 2.028 */
  width: 3px;
  box-shadow: 1px 0 2px rgba(0,0,0,.5), inset -1px 0 1px rgba(255,255,255,.10);
}

.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  /* Screen corner radius: 49px / 428px = 11.4% of phone width */
  border-radius: calc(var(--pw, 300px) * .114);
  overflow: hidden;
  background: #000;
}

/* Front-glass sheen — ultra-subtle specular highlight over the screen */
.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(158deg,
    rgba(255,255,255,.055) 0%,
    rgba(255,255,255,.018) 22%,
    transparent 50%);
  pointer-events: none;
  z-index: 999;
}

/* Dynamic Island and home indicator are part of the real screenshots */

.phone-hero    { --pw: 320px; }
.phone-feature { --pw: 300px; }
.phone-large   { --pw: 360px; }

@media (max-width: 900px) {
  .phone-hero    { --pw: min(280px, 78vw); }
  .phone-feature { --pw: min(260px, 70vw); }
  .phone-large   { --pw: min(290px, 76vw); }
}

/* ─────────────────────────────────────────────────────────
   MOCK iOS UI — primitives
   ───────────────────────────────────────────────────────── */
.mock-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: calc(var(--pw, 300px) * .045) calc(var(--pw, 300px) * .07) 0;
  font-size: calc(var(--pw, 300px) * .038);
  font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.mock-status-right { display: flex; align-items: center; gap: 5px; }
.mock-status-right svg { width: calc(var(--pw, 300px) * .045); height: calc(var(--pw, 300px) * .045); fill: #fff; }
.mock-battery {
  width: calc(var(--pw, 300px) * .062);
  height: calc(var(--pw, 300px) * .032);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 3px; padding: 1.2px;
  position: relative;
}
.mock-battery::after {
  content: ""; display: block; width: 78%; height: 100%;
  background: #fff; border-radius: 1.5px;
}
.mock-battery::before {
  content: ""; position: absolute;
  right: -2.5px; top: 50%; transform: translateY(-50%);
  width: 1.5px; height: 35%;
  background: rgba(255,255,255,.55); border-radius: 0 1px 1px 0;
}

.mock-time-big {
  text-align: center;
  font-size: calc(var(--pw, 300px) * .19);
  font-weight: 200;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  margin-top: calc(var(--pw, 300px) * .1);
}
.mock-date-big {
  text-align: center;
  font-size: calc(var(--pw, 300px) * .045);
  color: rgba(255,255,255,.95);
  font-weight: 500;
  margin-top: calc(var(--pw, 300px) * .015);
}

.mock-header {
  padding: calc(var(--pw, 300px) * .055) calc(var(--pw, 300px) * .055) calc(var(--pw, 300px) * .025);
  flex-shrink: 0;
}
.mock-header-title { font-size: calc(var(--pw, 300px) * .065); font-weight: 700; color: #fff; letter-spacing: -.02em; }
.mock-header-sub   { font-size: calc(var(--pw, 300px) * .035); color: rgba(255,255,255,.4); margin-top: 2px; font-weight: 400; }

.mock-row {
  margin: 0 calc(var(--pw, 300px) * .04) calc(var(--pw, 300px) * .025);
  background: rgba(255,255,255,.07);
  border-radius: calc(var(--pw, 300px) * .04);
  padding: calc(var(--pw, 300px) * .035) calc(var(--pw, 300px) * .04);
  display: flex; align-items: flex-start; gap: 8px;
  flex-shrink: 0;
}
.mock-row-active {
  background: rgba(10,113,227,.12);
  border: 1px solid rgba(10,113,227,.4);
}
.mock-dot {
  width: calc(var(--pw, 300px) * .04);
  height: calc(var(--pw, 300px) * .04);
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
  margin-top: 2px;
}
.mock-dot-done {
  background: var(--green);
  border-color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.mock-dot-done svg { width: 60%; height: 60%; }
.mock-row-title { font-size: calc(var(--pw, 300px) * .04); font-weight: 600; color: #fff; letter-spacing: -.012em; }
.mock-row-meta  { font-size: calc(var(--pw, 300px) * .03); color: rgba(255,255,255,.45); margin-top: 2px; font-weight: 400; }
.mock-row-strike .mock-row-title { text-decoration: line-through; opacity: .55; }
.mock-badge {
  margin-left: auto;
  font-size: calc(var(--pw, 300px) * .026);
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 5px;
  flex-shrink: 0; align-self: center;
}

.mock-input {
  margin: auto calc(var(--pw, 300px) * .04) calc(var(--pw, 300px) * .04);
  background: rgba(255,255,255,.09);
  border-radius: calc(var(--pw, 300px) * .04);
  padding: calc(var(--pw, 300px) * .032) calc(var(--pw, 300px) * .04);
  display: flex; align-items: center; gap: 8px;
}
.mock-input-text { font-size: calc(var(--pw, 300px) * .034); color: #fff; flex: 1; min-width: 0; }
.mock-input-text.placeholder { color: rgba(255,255,255,.35); }
.mock-cursor {
  display: inline-block;
  width: 1.5px; height: calc(var(--pw, 300px) * .045);
  background: var(--blue-soft);
  margin-left: 1px;
  vertical-align: middle;
  animation: blink-cursor 1.06s steps(2, end) infinite;
}
.mock-send {
  width: calc(var(--pw, 300px) * .065);
  height: calc(var(--pw, 300px) * .065);
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-send svg { width: 50%; height: 50%; }

/* Lock screen notification */
.mock-notif {
  margin: calc(var(--pw, 300px) * .028) calc(var(--pw, 300px) * .04);
  background: rgba(40,40,42,.92);
  backdrop-filter: blur(20px);
  border-radius: calc(var(--pw, 300px) * .052);
  padding: calc(var(--pw, 300px) * .035);
  display: flex; align-items: flex-start; gap: 8px;
  flex-shrink: 0;
}
.mock-notif-icon {
  width: calc(var(--pw, 300px) * .085);
  height: calc(var(--pw, 300px) * .085);
  border-radius: calc(var(--pw, 300px) * .022);
  background: linear-gradient(135deg, var(--blue) 0%, #0050a8 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-notif-icon svg { width: 60%; height: 60%; }
.mock-notif-body  { flex: 1; min-width: 0; }
.mock-notif-app   { font-size: calc(var(--pw, 300px) * .026); font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1px; }
.mock-notif-title { font-size: calc(var(--pw, 300px) * .035); font-weight: 600; color: #fff; }
.mock-notif-sub   { font-size: calc(var(--pw, 300px) * .032); color: rgba(255,255,255,.55); margin-top: 1px; }
.mock-notif-time  { font-size: calc(var(--pw, 300px) * .028); color: rgba(255,255,255,.35); flex-shrink: 0; }
.mock-notif-active { box-shadow: 0 0 0 1px rgba(10,113,227,.4), 0 8px 30px rgba(10,113,227,.25); }
.mock-notif-active .mock-notif-icon { animation: pulse-ring 2.2s ease-out infinite; }

/* Parsed chip */
.parsed-chip {
  display: inline-flex; flex-direction: column;
  background: rgba(10,113,227,.18);
  border-radius: 6px;
  padding: 3px 7px;
}
.parsed-chip .label { font-size: calc(var(--pw, 300px) * .024); font-weight: 600; color: var(--blue-soft); letter-spacing: .04em; text-transform: uppercase; }
.parsed-chip .value { font-size: calc(var(--pw, 300px) * .034); font-weight: 600; color: #fff; }
.parsed-chip.green { background: rgba(52,199,89,.16); }
.parsed-chip.green .label { color: #5dd278; }
.parsed-chip.orange { background: rgba(255,159,10,.16); }
.parsed-chip.orange .label { color: #ffb84d; }

/* Interval pills */
.interval-pill {
  display: inline-block;
  font-size: 13px; font-weight: 500;
  padding: 6px 13px;
  border-radius: 980px;
  background: rgba(10,113,227,.1);
  color: var(--blue);
  letter-spacing: -.01em;
}
.interval-pill.muted { background: rgba(0,0,0,.06); color: var(--text-mute-2); }

/* Scenario callout — italic pull-quote in feature sections */
.scenario-callout {
  color: var(--text-mute-2);
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -.022em;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, rgba(10,113,227,.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 10px;
}
.hero-eyebrow .new {
  display: inline-block;
  background: rgba(41,151,255,.12);
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.hero-headline {
  font-size: clamp(56px, 9.2vw, 116px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .95;
  text-wrap: balance;
  color: var(--text-light);
  margin: 14px auto 22px;
  max-width: 920px;
}
.hero-headline .gradient {
  background: linear-gradient(135deg, #ffffff 20%, #a8d4ff 55%, #86868b 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.9vw, 22px);
  color: var(--text-light-2);
  max-width: 520px;
  margin: 0 auto 30px;
  line-height: 1.45;
  letter-spacing: -.01em;
}
.hero-ctas {
  display: flex; gap: 18px; align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative; z-index: 2;
}
.hero-ctas .btn-secondary { color: var(--blue-soft); }

.hero-phone-stage {
  position: relative;
  display: flex; justify-content: center; align-items: flex-end;
  padding: 48px 0 0;
  z-index: 1;
}

/* Center phone — main reminder list, front and center */
.hero-phone-center {
  z-index: 3;
  animation: float-y 7s ease-in-out infinite;
  flex-shrink: 0;
}

/* Side phones — fanned out behind center */
.phone-side { --pw: 240px; }

.hero-phone-left {
  transform-origin: bottom center;
  margin-right: -62px;
  z-index: 1;
  animation: peek-left 1.2s cubic-bezier(0.34,1.56,0.64,1) 0.5s both;
  filter: brightness(.78);
  flex-shrink: 0;
}
.hero-phone-right {
  transform-origin: bottom center;
  margin-left: -62px;
  z-index: 1;
  animation: peek-right 1.2s cubic-bezier(0.34,1.56,0.64,1) 0.8s both;
  filter: brightness(.78);
  flex-shrink: 0;
}

@media (max-width: 900px) and (min-width: 681px) {
  .phone-side { --pw: 190px; }
  .hero-phone-left { margin-right: -46px; }
  .hero-phone-right { margin-left: -46px; }
}
@media (max-width: 680px) {
  .hero-phone-left, .hero-phone-right { display: none; }
  .phone-side { --pw: min(200px, 55vw); }
}
@media (max-width: 500px) {
  .hero-phone-center { --pw: min(260px, 72vw); }
}

.scroll-cue {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  margin-top: 28px;
  color: rgba(255,255,255,.4);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}
.scroll-cue svg { width: 16px; height: 16px; animation: scroll-arrow 1.8s ease-in-out infinite; }

/* Hero phones fade into next section */
.hero-fade {
  pointer-events: none;
  height: 180px;
  margin-top: -180px;
  background: linear-gradient(to bottom, transparent 0%, var(--black) 100%);
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────────────────────────
   QUOTE STRIP
   ───────────────────────────────────────────────────────── */
.quote-strip {
  padding: 100px 22px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.quote-strip p {
  font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-wrap: balance;
  max-width: 880px;
  margin: 0 auto;
  color: #f5f5f7;
}
.quote-strip .dim { color: var(--text-mute); }

/* ─────────────────────────────────────────────────────────
   FEATURE — 2-column with sticky text
   ───────────────────────────────────────────────────────── */
.feature {
  padding: 140px 0;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse > :first-child { order: 2; }
.feature-text { max-width: 460px; }
.feature-visual {
  display: flex; justify-content: center;
  position: relative;
}
.feature-visual::after {
  content: "";
  position: absolute;
  bottom: -10%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60px;
  background: radial-gradient(ellipse, rgba(0,0,0,.4) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.s-light .feature-visual::after { background: radial-gradient(ellipse, rgba(0,0,0,.18) 0%, transparent 70%); }

@media (max-width: 834px) {
  .feature-row { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .feature-row.reverse > :first-child { order: 0; }
  .feature-text { margin: 0 auto; }
}

/* ─────────────────────────────────────────────────────────
   STATS
   ───────────────────────────────────────────────────────── */
.stats {
  padding: 130px 22px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.stats-grid > div {
  padding: 0 32px;
  border-right: 1px solid rgba(0,0,0,.1);
}
.stats-grid > div:last-child { border-right: 0; }
.stat-num {
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .95;
  color: var(--text-dark);
  display: inline-block;
}
.stat-num sup { font-size: .28em; vertical-align: super; }
.stat-unit {
  font-size: 26px; font-weight: 600; letter-spacing: -.02em; margin-top: 2px;
  color: var(--text-dark);
  display: inline-block;
}
.stat-label {
  font-size: 17px;
  color: var(--text-mute-2);
  margin-top: 14px;
  line-height: 1.42;
  letter-spacing: -.01em;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; gap: 56px; }
  .stats-grid > div { border-right: 0; padding: 0; }
  .stats-grid > div + div { padding-top: 56px; border-top: 1px solid rgba(0,0,0,.08); }
}

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS — vertical timeline
   ───────────────────────────────────────────────────────── */
.steps {
  max-width: 700px; margin: 72px auto 0;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 48px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 27px; top: 56px;
  width: 1.5px;
  height: calc(100% - 56px);
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.04) 100%);
}
.step:last-child::before { display: none; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 600;
  box-shadow: 0 10px 30px -8px rgba(10,113,227,.5);
  position: relative;
  z-index: 1;
}
.step-num.done { background: var(--green); box-shadow: 0 10px 30px -8px rgba(52,199,89,.5); }
.step-content h3 { font-size: 24px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 8px; }
.step-content p  { font-size: 17px; line-height: 1.5; color: var(--text-mute-2); }
.step-content em { font-style: normal; color: var(--text-dark); }

/* ─────────────────────────────────────────────────────────
   FEATURES GRID
   ───────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.feat-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  transition: transform .35s var(--ease-apple), box-shadow .35s var(--ease-apple);
  display: flex; flex-direction: column;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -20px rgba(0,0,0,.18); }
.feat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feat-icon svg { width: 28px; height: 28px; }
.feat-card h3 {
  font-size: 21px; font-weight: 600;
  letter-spacing: -.018em; margin-bottom: 8px;
  color: var(--text-dark);
}
.feat-card p {
  font-size: 16px; line-height: 1.5;
  color: var(--text-mute-2);
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   COMPARISON TABLE
   ───────────────────────────────────────────────────────── */
.comp-wrapper {
  margin-top: 56px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.comp-table thead th {
  font-size: 14px; font-weight: 500;
  color: var(--text-mute-2);
  padding: 16px 20px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.comp-table thead th:first-child { text-align: left; }
.comp-table thead th.oya-col {
  color: var(--blue);
  font-weight: 600;
  font-size: 17px;
  border-top: 3px solid var(--blue);
  padding-top: 13px;
}
.comp-table tbody td {
  font-size: 16px;
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.05);
  letter-spacing: -.01em;
}
.comp-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-dark);
}
.comp-table tbody tr:last-child td { border-bottom: 0; }
.comp-table .oya-col {
  background: linear-gradient(180deg, rgba(10,113,227,.06) 0%, rgba(10,113,227,.02) 100%);
}
.comp-yes { color: var(--green); font-size: 22px; font-weight: 700; }
.comp-no  { color: #c7c7cc; font-size: 22px; }
.comp-partial { color: var(--text-mute); font-size: 14px; font-weight: 500; }

/* ─────────────────────────────────────────────────────────
   REVIEWS
   ───────────────────────────────────────────────────────── */
.review-feature {
  max-width: 880px;
  margin: 0 auto 80px;
  padding: 0 22px;
  text-align: center;
}
.review-feature blockquote {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -.018em;
  line-height: 1.18;
  color: #f5f5f7;
  text-wrap: balance;
  margin-bottom: 24px;
}
.review-feature blockquote::before { content: "\201C"; color: rgba(255,255,255,.18); }
.review-feature blockquote::after  { content: "\201D"; color: rgba(255,255,255,.18); }
.review-feature cite {
  font-style: normal;
  font-size: 15px;
  color: var(--text-mute);
  letter-spacing: -.01em;
}
.review-feature cite strong { color: #f5f5f7; font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  transition: transform .3s var(--ease-apple), background .3s, border-color .3s;
}
.review-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.review-stars { color: var(--orange); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.review-card h4 {
  font-size: 17px; font-weight: 600;
  letter-spacing: -.012em; color: #f5f5f7;
  margin-bottom: 10px; line-height: 1.3;
}
.review-card p {
  font-size: 15px; line-height: 1.5;
  color: var(--text-mute); margin-bottom: 18px;
}
.review-meta { font-size: 13px; color: var(--text-mute-2); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   PRIVACY
   ───────────────────────────────────────────────────────── */
.privacy {
  text-align: center;
  padding: 140px 22px;
}
.privacy-shield {
  width: 96px; height: 96px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(52,199,89,.18) 0%, rgba(52,199,89,.04) 100%);
  border: 1px solid rgba(52,199,89,.3);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 36px;
}
.privacy-shield svg { width: 48px; height: 48px; }

/* ─────────────────────────────────────────────────────────
   SPECS BAR
   ───────────────────────────────────────────────────────── */
.specs-bar {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  align-items: center;
  padding: 32px 22px;
  gap: 0;
}
.spec-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 28px;
  font-size: 14px; color: var(--text-mute-2);
  letter-spacing: -.01em;
  border-right: 1px solid rgba(0,0,0,.12);
}
.spec-item:nth-child(3n) { border-right: 0; }
.spec-item svg { width: 18px; height: 18px; color: var(--blue); }

@media (max-width: 768px) {
  .specs-bar { grid-template-columns: repeat(2, auto); }
  .spec-item { border-right: 0; padding: 10px 18px; font-size: 13px; }
}

/* ─────────────────────────────────────────────────────────
   DOWNLOAD CTA
   ───────────────────────────────────────────────────────── */
.download-cta {
  text-align: center;
  padding: 160px 22px 140px;
  position: relative;
  overflow: hidden;
}
.download-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(10,113,227,.18) 0%, transparent 50%);
  pointer-events: none;
}
.app-icon-large {
  width: 132px; height: 132px;
  border-radius: 30px;
  background: linear-gradient(160deg, #2997ff 0%, #0050a8 100%);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 36px;
  position: relative;
  animation: float-y 6s ease-in-out infinite, glow-soft 6s ease-in-out infinite;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.3),
    0 30px 60px -10px rgba(10,113,227,.4);
}
.app-icon-large::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, transparent 50%);
  pointer-events: none;
}
.app-icon-large svg { width: 64px; height: 64px; position: relative; z-index: 1; }

.download-cta .meta {
  font-size: 14px; color: var(--text-mute);
  margin-top: 24px;
  letter-spacing: -.01em;
}

/* ─────────────────────────────────────────────────────────
   FOOTER (Apple-style)
   ───────────────────────────────────────────────────────── */
footer {
  background: var(--bg-light);
  color: var(--text-mute-2);
  padding: 32px 0 24px;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -.005em;
}
.footer-disclaimer {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.footer-disclaimer p { margin-bottom: 8px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer sup { color: var(--text-mute); font-size: 10px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 16px 0 32px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.footer-col h5 {
  font-size: 12px; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -.005em;
}
.footer-col a {
  display: block;
  font-size: 12px; color: var(--text-mute-2);
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text-dark); text-decoration: underline; }

.footer-bottom {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links a {
  font-size: 12px; color: var(--text-mute-2);
  position: relative;
  padding-right: 12px;
}
.footer-bottom-links a:not(:last-child)::after {
  content: ""; position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 12px;
  background: rgba(0,0,0,.15);
}
.footer-bottom-links a:hover { color: var(--text-dark); text-decoration: underline; }

@media (max-width: 768px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ─────────────────────────────────────────────────────────
   Highlights ribbon (Apple-style "Get the highlights")
   ───────────────────────────────────────────────────────── */
.highlights {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 96px 0;
}
.highlights .eyebrow-light {
  text-align: center;
  margin-bottom: 12px;
}
.highlights h3 {
  font-size: clamp(26px, 3.4vw, 34px); font-weight: 600;
  color: #f5f5f7;
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.highlight {
  position: relative;
  text-align: center;
  padding: 38px 24px 34px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .5s var(--ease-out),
              border-color .5s var(--ease-out),
              background .5s var(--ease-out),
              box-shadow .5s var(--ease-out);
}
.highlight:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 18px 40px -20px rgba(0,0,0,.7);
}
.highlight-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,.06);
  transition: transform .5s var(--ease-spring);
}
.highlight:hover .highlight-icon { transform: scale(1.07); }
.highlight-icon svg { width: 26px; height: 26px; color: var(--blue-soft); }
.highlight h4 {
  font-size: 17px; font-weight: 600;
  color: #f5f5f7; margin-bottom: 7px;
  letter-spacing: -.015em;
}
.highlight p {
  font-size: 14px; color: var(--text-light-2);
  line-height: 1.5;
}

/* Per-feature accent tints (SF Symbol style) */
.hl-blue   .highlight-icon { background: rgba(41,151,255,.14); }
.hl-blue   .highlight-icon svg { color: #2997ff; }
.hl-purple .highlight-icon { background: rgba(125,123,255,.16); }
.hl-purple .highlight-icon svg { color: #7d7bff; }
.hl-green  .highlight-icon { background: rgba(52,199,89,.15); }
.hl-green  .highlight-icon svg { color: #34c759; }
.hl-orange .highlight-icon { background: rgba(255,159,10,.15); }
.hl-orange .highlight-icon svg { color: #ff9f0a; }

@media (max-width: 900px) {
  .highlights { padding: 76px 0; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .highlight { padding: 30px 18px 28px; }
}

/* ─────────────────────────────────────────────────────────
   AUDIENCE GRID
   ───────────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.audience-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform .35s var(--ease-apple), box-shadow .35s var(--ease-apple);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -20px rgba(0,0,0,.18); }
.audience-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.audience-icon svg { width: 28px; height: 28px; }
.audience-emoji {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
}
.audience-card h3 {
  font-size: 20px; font-weight: 600;
  letter-spacing: -.016em; margin-bottom: 12px;
  color: var(--text-dark);
}
.audience-card p {
  font-size: 16px; line-height: 1.5;
  color: var(--text-mute-2);
}
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ─────────────────────────────────────────────────────────
   Mobile-only nav adjustments
   ───────────────────────────────────────────────────────── */
@media (max-width: 833px) {
  .nav-links { display: none; }
  .nav-buy   { display: none; }
  #nav-hamburger { display: inline-flex; }
}

/* ─────────────────────────────────────────────────────────
   Print
   ───────────────────────────────────────────────────────── */
@media print {
  #nav, #mobile-panel, .scroll-cue { display: none !important; }
}

/* ─────────────────────────────────────────────────────────
   Hero hook line
   ───────────────────────────────────────────────────────── */
.hero-hook {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: -.025em;
  line-height: 1.25;
  max-width: 540px;
  margin: 0 auto 10px;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   Phone annotation callouts
   ───────────────────────────────────────────────────────── */
.phone-annotated {
  position: relative;
  display: inline-flex;
  justify-content: center;
}
.phone-note {
  position: absolute;
  background: rgba(0,113,227,.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 5px 12px 5px 9px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 2px 14px rgba(0,0,0,.28);
  pointer-events: none;
}
.phone-note::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.phone-note.pn-right { left: calc(100% + 16px); }
.phone-note.pn-left  { right: calc(100% + 16px); }
.phone-note.pn-green  { background: rgba(36,172,74,.93); }
.phone-note.pn-orange { background: rgba(210,126,0,.93); }
/* ─────────────────────────────────────────────────────────
   Phone annotation chips — responsive reflow
   ─────────────────────────────────────────────────────────
   ≥860px : notes are absolutely positioned beside the phone
            via .pn-left / .pn-right. The wrapper uses
            display:contents so notes remain direct children
            of the positioned .phone-annotated ancestor.
   <920px : wrapper switches to flex-wrap row that sits
            below the phone frame as small chips.
            (920px aligns with where the 2-col feature-row
            has enough column room for floating notes.)
   ───────────────────────────────────────────────────────── */
.phone-notes-chips {
  display: contents;
}

@media (max-width: 919px) {
  .phone-annotated {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .phone-notes-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    justify-content: center;
    margin-top: 16px;
    max-width: 340px;
  }
  /* Stack variant: vertical column, left-aligned */
  .phone-notes-stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .phone-note {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    font-size: 11px;
    padding: 4px 10px 4px 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,.22);
  }
}

/* ─────────────────────────────────────────────────────────
   Price badge (annual plan callout)
   ───────────────────────────────────────────────────────── */
.price-badge {
  display: inline-block;
  background: rgba(52,199,89,.14);
  color: #34c759;
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  border: 1px solid rgba(52,199,89,.28);
  letter-spacing: .01em;
}

/* ─────────────────────────────────────────────────────────
   FAQ (details/summary accordion)
   ───────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 4px 0;
}
.faq-item:first-of-type { border-top: 1px solid rgba(0,0,0,.08); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--text-dark);
  transition: color .2s var(--ease-apple);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-mute);
  transition: transform .25s var(--ease-apple);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-item p {
  padding: 0 4px 24px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mute-2);
}
@media (max-width: 640px) {
  .faq-item summary { font-size: 17px; padding: 18px 2px; }
}
