/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
  --bg: #F6F5F1;
  --surface: #FFFFFF;
  --tint: #EDF2FB;
  --ink: #0F1520;
  --ink-2: #33405C;
  --muted: #5F6B85;
  --line: rgba(11, 23, 48, .10);
  --brand: #3C64DE;
  --brand-soft: #DCE6FD;
  --peach: #FFB68F;
  --peach-soft: #FFE9DC;
  --green: #1F8A63;
  --green-soft: #DCF2E9;
  --amber: #9A5B00;
  --amber-soft: #FBEDD6;
  --teal-900: #0E3A4C;
  --teal-800: #134A60;
  --teal-200: #B4D6DE;
  --app-blue: #4F7BE8;
  --app-canvas: #EDF2FB;
  --app-font: "Plus Jakarta Sans", var(--font);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(11, 23, 48, .05), 0 4px 14px rgba(11, 23, 48, .05);
  --shadow-md: 0 2px 4px rgba(11, 23, 48, .04), 0 18px 40px -12px rgba(11, 23, 48, .18);
  --shadow-lg: 0 40px 80px -30px rgba(21, 38, 110, .45), 0 12px 28px -12px rgba(11, 23, 48, .25);

  /* Easing blueprint (web-animation-design skill) */
  --ease-out-cubic: cubic-bezier(.215, .61, .355, 1);
  --ease-out-quart: cubic-bezier(.165, .84, .44, 1);
  --ease-out-quint: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out-cubic: cubic-bezier(.645, .045, .355, 1);
  --ease-in-out-quad: cubic-bezier(.455, .03, .515, .955);

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
svg { display: block; }
[data-lucide], .lucide { width: 1em; height: 1em; stroke-width: 1.9; flex: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 8px; }
[hidden] { display: none !important; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }
/* One vertical rhythm: --gap between sections, halved when neighbours share a background */
:root { --gap: clamp(64px, 8vw, 112px); }
.section { padding: var(--gap) 0; }
.section.tint { background: var(--tint); }
.section:not(.tint):not(.dark) + .section:not(.tint):not(.dark),
.section.tint + .section.tint,
.section.tour + .section.tint { padding-top: 0; }
.section.dark { margin-block: 0 var(--gap); }
.section.dark + .section { padding-top: 0; }

em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; color: var(--brand); font-size: 1.08em; line-height: 1; }

.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 18px;
}
.h2 {
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.06; letter-spacing: -.035em; font-weight: 600;
  text-wrap: balance;
}
.lead { font-size: clamp(16px, 1.35vw, 18.5px); color: var(--ink-2); line-height: 1.65; text-wrap: pretty; }

.sec-head { margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.split { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(24px, 5vw, 80px); align-items: end; }
.sec-head.stack .h2 { max-width: 820px; }
.sec-head.center { text-align: center; max-width: 860px; margin-inline: auto; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ==========================================================================
   Buttons, pills
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 26px; border-radius: 999px;
  font-weight: 600; font-size: 16px; letter-spacing: -.01em; white-space: nowrap;
  transition: transform 150ms var(--ease-out-cubic), background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn [data-lucide], .btn .lucide { transition: transform 200ms var(--ease-out-cubic); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 10px 24px -10px rgba(11, 23, 48, .55); }
.btn-ghost { border: 1.5px solid rgba(11, 23, 48, .18); background: rgba(255, 255, 255, .5); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 14.5px; box-shadow: none; }
.btn-lg { height: 60px; padding: 0 32px; font-size: 17px; }

@media (hover: hover) and (pointer: fine) {
  .btn-dark:hover { background: #16264A; }
  .btn-ghost:hover { background: #fff; border-color: rgba(11, 23, 48, .32); }
  .btn:hover [data-lucide], .btn:hover .lucide { transform: translateX(3px); }
}

.pill { display: inline-flex; align-items: center; height: 22px; padding: 0 9px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0; white-space: nowrap; }
.pill-green { background: var(--green-soft); color: var(--green); }
.pill-grey { background: rgba(11, 23, 48, .07); color: var(--muted); }
.pill-red { background: #FDE3E0; color: #B3261E; }
.pill-line { border: 1px solid var(--line); color: var(--ink-2); }

.ico {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--brand-soft); color: var(--brand); font-size: 21px;
  transition: transform 250ms var(--ease-out-cubic);
}

/* avatars */
.av { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border-radius: 50%; font-size: 13px; font-weight: 700; color: #fff; }
.av-1 { background: #E0764A; } .av-2 { background: #2F4BE0; } .av-3 { background: #0E7A57; } .av-4 { background: #8A5CD6; }
.av-doc { background: var(--ink); } .av-lab { background: #8A93A8; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav { position: fixed; inset: 14px 0 auto 0; z-index: 50; pointer-events: none; }
.nav-inner {
  pointer-events: auto;
  width: min(1120px, 100% - 28px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 62px; padding: 0 10px 0 20px; border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4);
  transition: background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.nav.scrolled .nav-inner { background: rgba(255, 255, 255, .86); border-color: var(--line); box-shadow: var(--shadow-sm); }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -.03em; }
.logo-mark { width: 30px; height: 30px; color: var(--brand); }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 8px 13px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: background-color 150ms ease, color 150ms ease; }
@media (hover: hover) and (pointer: fine) { .nav-links a:hover { background: rgba(11, 23, 48, .06); color: var(--ink); } }
.nav-actions { display: flex; align-items: center; gap: 8px; }

.menu-btn { display: none; position: relative; width: 42px; height: 42px; border-radius: 50%; background: rgba(11, 23, 48, .06); }
.menu-btn span { position: absolute; left: 13px; width: 16px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 200ms var(--ease-in-out-cubic); }
.menu-btn span:nth-child(1) { top: 17px; } .menu-btn span:nth-child(2) { top: 23px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  pointer-events: none; position: absolute; top: 72px; right: 14px; width: min(280px, calc(100% - 28px));
  display: grid; padding: 10px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
  opacity: 0; transform: scale(.96) translateY(-6px); transform-origin: top right;
  transition: opacity 160ms var(--ease-out-cubic), transform 160ms var(--ease-out-cubic);
  visibility: hidden;
}
.mobile-menu.open { pointer-events: auto; opacity: 1; transform: none; visibility: visible; transition-duration: 200ms; }
.mobile-menu a { padding: 12px 14px; border-radius: 12px; font-weight: 600; }
.mobile-menu a:active { background: var(--tint); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-wrap { padding: 10px; }
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #DDE6FF 0%, #E9EEFF 45%, #F3F1F4 100%);
  padding: clamp(120px, 13vw, 168px) 0 clamp(56px, 7vw, 96px);
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(48% 55% at 88% 78%, rgba(255, 170, 120, .75), transparent 70%),
    radial-gradient(40% 50% at 70% 20%, rgba(130, 150, 255, .55), transparent 70%),
    radial-gradient(36% 40% at 100% 40%, rgba(244, 114, 142, .35), transparent 70%);
  animation: glowDrift 16s var(--ease-in-out-quad) infinite alternate;
  will-change: transform;
}
@keyframes glowDrift { to { transform: translate3d(-3%, 2%, 0) scale(1.06); } }

.hero-grid { width: min(1200px, 100% - 48px); margin-inline: auto; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(24px, 4vw, 64px); align-items: center; }

.eyebrow-chip {
  display: inline-flex; align-items: center; gap: 9px; height: 34px; padding: 0 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .7); border: 1px solid rgba(255, 255, 255, .9);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 26px;
}
.eyebrow-chip .dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.eyebrow-chip .dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green); animation: ping 2.4s var(--ease-out-cubic) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(2.8); opacity: 0; } }

.hero-title { font-size: clamp(42px, 5.9vw, 78px); line-height: 1.02; letter-spacing: -.045em; font-weight: 600; }
.hero-title em { font-size: 1.1em; letter-spacing: -.02em; }
html.js .hero-title:not(.split) { opacity: 0; }
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .08em .14em 0; margin: 0 -.08em -.14em 0; }
.wi { display: inline-block; transform: translateY(110%); animation: wordUp 900ms var(--ease-out-quint) both; animation-delay: calc(var(--wi) * 45ms + 120ms); will-change: transform; }
@keyframes wordUp { to { transform: none; } }

.hero-sub { margin-top: 26px; max-width: 560px; font-size: clamp(16.5px, 1.4vw, 19px); color: var(--ink-2); line-height: 1.6; text-wrap: pretty; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 34px; }
.trust-chips li { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.trust-chips [data-lucide], .trust-chips .lucide { color: var(--brand); font-size: 16px; }

.hero-in { animation: heroIn 900ms var(--ease-out-quart) both; animation-delay: calc(var(--i) * 90ms + 200ms); }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* phone */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 640px; }
.phone {
  position: relative; width: 306px; height: 628px; padding: 9px; border-radius: 50px;
  background: #0A1226; box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .14);
}
.phone-screen { position: relative; height: 100%; border-radius: 42px; overflow: hidden; background: var(--app-canvas); display: flex; flex-direction: column; padding: 0 14px; font-family: var(--app-font); isolation: isolate; }
.phone-screen::before { content: ""; position: absolute; z-index: -1; inset: 0 0 auto 0; height: 118px; background: var(--teal-900); }
.phone-screen::after { content: ""; position: absolute; z-index: -1; inset: 100px 0 auto 0; height: 40px; border-radius: 26px 26px 0 0; background: var(--app-canvas); }
.ph-status, .ph-title { color: #fff; } .ph-kicker { color: var(--teal-200) !important; }
.ph-batt { border-color: #fff !important; } .ph-batt::after { background: #fff !important; }
.ph-bell { background: rgba(255, 255, 255, .14) !important; color: #fff; box-shadow: none !important; }
.ph-status { display: flex; align-items: center; justify-content: space-between; height: 44px; padding: 0 12px; font-size: 12.5px; font-weight: 700; }
.ph-island { width: 78px; height: 23px; border-radius: 99px; background: #061820; }
.ph-batt { width: 22px; height: 11px; border-radius: 3.5px; border: 1.5px solid var(--ink); position: relative; opacity: .8; }
.ph-batt::after { content: ""; position: absolute; inset: 1.5px 5px 1.5px 1.5px; border-radius: 1px; background: var(--ink); }
.ph-head { display: flex; justify-content: space-between; align-items: center; padding: 8px 4px 12px; }
.ph-kicker { font-size: 11px; font-weight: 600; color: var(--muted); }
.ph-title { font-size: 23px; font-weight: 700; letter-spacing: -.03em; line-height: 1.15; }
.ph-bell { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); font-size: 16px; }
.ph-profiles { display: flex; gap: 6px; margin-bottom: 12px; }
.pf { pointer-events: auto; flex: 1; display: grid; justify-items: center; gap: 5px; padding: 8px 0 7px; border-radius: 16px; font-size: 10.5px; font-weight: 600; color: var(--muted); border: 1.5px solid transparent; transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease; }
.pf .av { width: 32px; height: 32px; font-size: 12px; transition: transform 150ms var(--ease-out-cubic); }
.pf:active .av { transform: scale(.94); }
.pf.is-active { background: #fff; border-color: var(--brand); color: var(--ink); }
.ph-search { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px; border-radius: 12px; background: #fff; border: 1px solid var(--line); font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }
.ph-search [data-lucide], .ph-search .lucide { font-size: 14px; }
.ph-timeline { position: relative; flex: 1; display: grid; align-content: start; gap: 8px; padding-left: 14px; }
.ph-timeline::before { content: ""; position: absolute; left: 3px; top: 8px; bottom: 30px; width: 1.5px; background: repeating-linear-gradient(var(--line) 0 4px, transparent 4px 8px); }
.tl { position: relative; padding: 10px 12px; border-radius: 14px; background: #fff; box-shadow: 0 1px 2px rgba(11, 23, 48, .05); animation: tlIn 380ms var(--ease-out-quart) both; animation-delay: calc(var(--t) * 55ms); }
.tl::before { content: ""; position: absolute; left: -15px; top: 17px; width: 9px; height: 9px; border-radius: 50%; background: var(--app-blue); border: 2px solid var(--app-canvas); }
@keyframes tlIn { from { opacity: 0; transform: translateY(8px); } }
.tl-top { display: flex; justify-content: space-between; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; color: var(--muted); }
.tl-t { font-size: 12.5px; font-weight: 700; letter-spacing: -.01em; margin-top: 2px; }
.tl-s { font-size: 11px; color: var(--ink-2); }
.tag { height: 17px; padding: 0 7px; border-radius: 99px; font-size: 9.5px; font-weight: 700; display: inline-flex; align-items: center; }
.tag-blue { background: var(--brand-soft); color: var(--brand); } .tag-green { background: var(--green-soft); color: var(--green); }
.tag-peach { background: var(--peach-soft); color: #B4501F; } .tag-grey { background: rgba(11, 23, 48, .07); color: var(--muted); }
.ph-tabbar { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; justify-content: space-between; align-items: center; height: 54px; padding: 0 18px; border-radius: 99px; background: rgba(255, 255, 255, .92); box-shadow: var(--shadow-md); font-size: 18px; color: #9AA3B8; }
.ph-tabbar .on { color: var(--brand); }
.ph-scan { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--app-blue); color: #fff; }

/* floating cards */
.float-card { position: absolute; z-index: 2; }
.floaty { padding: 14px 16px; border-radius: 20px; background: rgba(255, 255, 255, .92); border: 1px solid rgba(255, 255, 255, .9); box-shadow: var(--shadow-md); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); animation: floaty 7s var(--ease-in-out-quad) infinite alternate; animation-delay: var(--fd); will-change: transform; }
@keyframes floaty { from { transform: translateY(-6px); } to { transform: translateY(7px); } }
.fc-title { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }
.fc-sub { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.fc-share { left: -17%; bottom: 15%; width: 248px; }
.fc-row { display: flex; align-items: center; gap: 10px; }
.fc-meter { height: 5px; border-radius: 9px; background: var(--tint); margin: 12px 0 10px; overflow: hidden; }
.fc-meter span { display: block; height: 100%; width: 100%; border-radius: inherit; background: var(--brand); transform-origin: left; transform: scaleX(.92); }
.fc-foot { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--ink-2); }
.fc-foot b { font-variant-numeric: tabular-nums; }
.fc-trend { right: -3%; top: -5%; width: 190px; }
.fc-big { display: flex; align-items: center; gap: 8px; font-size: 30px; font-weight: 700; letter-spacing: -.04em; line-height: 1.2; }
.fc-big small { font-size: 15px; margin-left: -6px; color: var(--muted); }
.spark { width: 100%; margin-top: 6px; overflow: visible; }
.spark-line { fill: none; stroke: var(--brand); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.6s var(--ease-out-quart) 1.2s forwards; }
.spark circle { fill: #fff; stroke: var(--brand); stroke-width: 2.4; opacity: 0; animation: fadeIn 300ms ease-out 2.5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
.fc-abha { right: -3%; bottom: 9%; }
.fc-abha .floaty { display: flex; align-items: center; gap: 10px; padding: 12px 16px 12px 12px; }
.fc-check { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 17px; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms var(--ease-out-quart), transform 800ms var(--ease-out-quart); transition-delay: calc(var(--i, 0) * 80ms); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal.done { transition: border-color 200ms ease, background-color 200ms ease; transition-delay: 0s; }

/* ==========================================================================
   Problem
   ========================================================================== */
.card { padding: 26px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.card h3, .point h3, .step h3, .feat h3, .spoint h3 { font-size: 19px; font-weight: 700; letter-spacing: -.025em; line-height: 1.25; }
.card p, .point p, .step p, .feat p, .spoint p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.prob { display: flex; flex-direction: column; gap: 12px; min-height: 300px; }
.prob .ico { background: var(--peach-soft); color: #B4501F; margin-bottom: 10px; }
.mess { margin-top: auto; align-self: flex-start; padding: 7px 12px; border-radius: 10px; background: var(--bg); border: 1px dashed rgba(11, 23, 48, .2); font-size: 12.5px; font-weight: 600; color: var(--muted); font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: -.02em; }
@media (hover: hover) and (pointer: fine) {
  .prob:hover { border-color: rgba(11, 23, 48, .22); }
  .prob:hover .ico, .point:hover .ico, .spoint:hover .ico, .feat:hover .ico { transform: translateY(-3px) rotate(-4deg); }
}

.marquee { margin: clamp(48px, 6vw, 80px) calc(50% - 50vw) 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 48s linear infinite; will-change: transform; }
.marquee-track span { padding: 10px 16px; border-radius: 12px; background: #fff; border: 1px solid var(--line); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; color: var(--muted); white-space: nowrap; }
.marquee-track span:nth-child(3n) { transform: rotate(-1.5deg); } .marquee-track span:nth-child(4n) { transform: rotate(1.2deg); }
@keyframes marquee { to { transform: translateX(calc(-50% - 6px)); } }

.closing { margin-top: clamp(40px, 5vw, 64px); max-width: 980px; font-size: clamp(24px, 3.1vw, 40px); line-height: 1.2; letter-spacing: -.03em; font-weight: 600; text-wrap: balance; }
.closing .soft { color: #8A93A8; }

/* ==========================================================================
   Caregiver (dark)
   ========================================================================== */
.dark { position: relative; background: var(--teal-900); color: #fff; border-radius: var(--r-xl); margin-inline: 10px; overflow: hidden; isolation: isolate; }
.dark::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 60% at 95% 0%, rgba(79, 123, 232, .42), transparent 70%), radial-gradient(40% 50% at 0% 100%, rgba(255, 160, 110, .16), transparent 70%); }
.dark .eyebrow { color: var(--teal-200); }
.dark em { color: #FFC3A3; }
.dark .lead { color: rgba(255, 255, 255, .74); margin-top: 24px; }
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }

.care-visual { position: relative; padding: 28px; border-radius: var(--r-lg); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 0 8px; }
.city { display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; border-radius: 99px; background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .12); }
.c-name { font-weight: 700; font-size: 14px; line-height: 1.2; } .c-place { font-size: 12px; color: var(--teal-200); line-height: 1.3; }
.care-path { width: 100%; height: 90px; overflow: visible; align-self: center; }
.care-path path { fill: none; stroke: #8FA4FF; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 2 9; vector-effect: non-scaling-stroke; animation: dash 1.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -22; } }
.care-log { grid-column: 1 / -1; display: grid; gap: 8px; margin-top: 26px; }
.care-log li { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 16px; background: rgba(255, 255, 255, .07); }
.care-log b { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.3; } .care-log small { font-size: 12.5px; color: var(--teal-200); }
.lg { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 11px; font-size: 17px; }
.lg-green { background: rgba(63, 207, 152, .16); color: #6FE0B4; } .lg-peach { background: rgba(255, 182, 143, .16); color: #FFC3A3; } .lg-blue { background: rgba(143, 164, 255, .18); color: #B3C1FF; }

.care-points { margin-top: clamp(48px, 6vw, 88px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid rgba(255, 255, 255, .12); gap: clamp(24px, 4vw, 56px); }
.point { display: grid; gap: 10px; align-content: start; }
.dark .ico { background: rgba(143, 164, 255, .16); color: #B3C1FF; margin-bottom: 8px; }
.dark .point p { color: rgba(255, 255, 255, .74); }

/* ==========================================================================
   How it works
   ========================================================================== */
.step { padding: 12px 12px 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.step > p, .step > h3 { padding: 0 16px; }
.step-n { font-family: var(--serif); font-style: italic; font-size: 22px !important; color: var(--brand) !important; margin-top: 24px; }
.step h3 { font-size: 26px; margin: 2px 0 10px; }
.step-art { position: relative; height: 264px; border-radius: var(--r-md); overflow: hidden; display: grid; place-items: center; }
.art-collect { background: linear-gradient(160deg, #FFE9DC, #FFD9C4); }
.art-organise { background: linear-gradient(160deg, #E4E9FF, #D3DCFF); }
.art-share { background: linear-gradient(160deg, #DDF3E9, #C9EBDB); }

.paper { position: relative; width: 150px; height: 178px; margin-top: -26px; padding: 18px 16px; border-radius: 10px; background: #fff; box-shadow: var(--shadow-md); transform: rotate(-4deg); display: grid; align-content: start; gap: 9px; overflow: hidden; }
.rx { font-family: var(--serif); font-size: 26px; line-height: 1; color: var(--ink); }
.ln { height: 6px; border-radius: 6px; background: #E6E9F2; } .w80 { width: 80%; } .w70 { width: 70%; } .w60 { width: 60%; } .w40 { width: 40%; }
.corner { position: absolute; width: 16px; height: 16px; border: 2.5px solid var(--brand); }
.corner.c-tl { top: 7px; left: 7px; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.corner.c-tr { top: 7px; right: 7px; border-left: 0; border-bottom: 0; border-radius: 0 5px 0 0; }
.corner.c-bl { bottom: 7px; left: 7px; border-right: 0; border-top: 0; border-radius: 0 0 0 5px; }
.corner.c-br { bottom: 7px; right: 7px; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }
.scanline { position: absolute; left: 0; right: 0; top: 0; height: 44px; background: linear-gradient(180deg, transparent, rgba(47, 75, 224, .22)); border-bottom: 2px solid var(--brand); animation: scan 2.6s var(--ease-in-out-cubic) infinite alternate; will-change: transform; }
@keyframes scan { from { transform: translateY(-44px); } to { transform: translateY(178px); } }
.art-chips { position: absolute; bottom: 18px; display: flex; gap: 6px; }
.art-chips span { padding: 6px 11px; border-radius: 99px; background: rgba(255, 255, 255, .85); font-size: 12px; font-weight: 600; }

.chart-card, .share-card { width: calc(100% - 44px); max-width: 300px; padding: 16px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); }
.chart-top { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; font-weight: 700; margin-bottom: 10px; }
.chart { width: 100%; overflow: visible; }
.band { fill: var(--green-soft); opacity: .7; }
.chart-line { fill: none; stroke: var(--brand); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.chart-dots circle { fill: #fff; stroke: var(--brand); stroke-width: 2.2; opacity: 0; }
/* looped by script.js: line draws at constant speed (linear = time visualisation), dots land as the
   line reaches them (--p = fraction of path length), then the latest reading beats. */
.chart { --draw: 2200ms; transition: opacity 350ms ease; }
.chart.fade { opacity: 0; }
.chart-dots circle, .chart-ripples circle { transform-box: fill-box; transform-origin: center; }
.chart-ripples circle { fill: var(--brand); opacity: 0; }
.chart.play .chart-line { animation: draw var(--draw) linear forwards; }
.chart.play .chart-dots circle { animation: dotIn 320ms var(--ease-out-quart) calc(var(--p, 0) * var(--draw)) both; }
.chart.play .chart-dots circle.last { animation: dotIn 320ms var(--ease-out-quart) var(--draw) both, beat 1300ms var(--ease-in-out-quad) calc(var(--draw) + 320ms) 3; }
.chart.play .chart-ripples circle { animation: ripple 1300ms var(--ease-out-cubic) calc(var(--draw) + 320ms) 3; }
.chart.play .chart-ripples circle:nth-child(2) { animation-delay: calc(var(--draw) + 640ms); }
@keyframes dotIn { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
@keyframes beat { 0%, 60%, 100% { transform: scale(1); } 20% { transform: scale(1.55); } }
@keyframes ripple { from { opacity: .45; transform: scale(1); } to { opacity: 0; transform: scale(5.5); } }
html:not(.js) .chart-line { stroke-dashoffset: 0; } html:not(.js) .chart-dots circle { opacity: 1; }
.chart-x { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--muted); margin-top: 6px; font-weight: 600; }

.sh-label { font-size: 11.5px !important; font-weight: 700; color: var(--muted) !important; margin-bottom: 7px; }
.sh-recs { display: flex; gap: 6px; margin-bottom: 14px; }
.sh-recs span { display: inline-flex; align-items: center; gap: 5px; height: 28px; padding: 0 10px; border-radius: 9px; background: var(--tint); font-size: 11.5px; font-weight: 600; white-space: nowrap; }
.seg { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); padding: 3px; border-radius: 12px; background: var(--tint); }
.seg button { position: relative; z-index: 1; height: 32px; font-size: 12px; font-weight: 700; color: var(--muted); transition: color 200ms ease; pointer-events: auto; }
.seg button.on { color: #fff; }
.seg-thumb { position: absolute; top: 3px; bottom: 3px; left: 3px; width: calc((100% - 6px) / 3); border-radius: 9px; background: var(--ink); transform: translateX(calc(var(--seg, 0) * 100%)); transition: transform 300ms var(--ease-in-out-cubic); will-change: transform; }
.sh-note { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px !important; font-weight: 600; color: var(--green) !important; }

/* ==========================================================================
   Features
   ========================================================================== */
.tabs-wrap { overflow-x: auto; scrollbar-width: none; margin: 36px -20px 0; padding: 0 20px; }
.tabs-wrap::-webkit-scrollbar { display: none; }
.tabs { position: relative; width: max-content; padding: 5px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }
.tabs-list { display: flex; }
.tabs-list button, .tabs-list span { height: 42px; padding: 0 17px; border-radius: 999px; font-size: 14px; font-weight: 600; white-space: nowrap; display: inline-flex; align-items: center; color: var(--ink-2); }
.tabs-overlay { position: absolute; inset: 5px; pointer-events: none; background: var(--ink); border-radius: 999px; clip-path: inset(0 75% 0 0 round 999px); transition: clip-path 300ms var(--ease-in-out-cubic); }
.tabs-overlay span { color: #fff; }

.panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 10px; min-height: 240px; padding: 28px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.feat .ico { margin-bottom: auto; }
.feat h3 { margin-top: 28px; font-size: 21px; }
.feat.wide { grid-column: span 2; }
.feat.wide p { max-width: 560px; }
.feat.accent { background: var(--teal-900); color: #fff; border-color: transparent; }
.feat.accent p { color: #B9C3DC; }
.feat.accent .ico { background: rgba(143, 164, 255, .18); color: #B3C1FF; }
.extract { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.extract span { display: inline-flex; align-items: center; gap: 7px; height: 30px; padding: 0 12px; border-radius: 99px; background: rgba(255, 255, 255, .1); font-size: 12.5px; font-weight: 500; }
.extract i { font-style: normal; font-size: 11px; font-weight: 700; color: #6FE0B4; }
.extract .warn { background: rgba(255, 182, 143, .16); } .extract .warn i { color: #FFC3A3; }
.panel.is-active .feat { animation: featIn 450ms var(--ease-out-quart) both; }
.panel.is-active .feat:nth-child(2) { animation-delay: 50ms; } .panel.is-active .feat:nth-child(3) { animation-delay: 100ms; }
.panel.is-active .feat:nth-child(4) { animation-delay: 150ms; } .panel.is-active .feat:nth-child(5) { animation-delay: 200ms; }
@keyframes featIn { from { opacity: 0; transform: translateY(14px) scale(.985); } }

/* ==========================================================================
   Security
   ========================================================================== */
.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.sec-left .lead { margin-top: 22px; }
.log-card { margin-top: 36px; padding: 8px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.log-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px 10px; font-size: 14px; font-weight: 700; }
.log-head span { display: inline-flex; align-items: center; gap: 8px; } .log-head small { font-weight: 500; color: var(--muted); font-size: 12.5px; }
.log-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 18px; background: var(--bg); margin-top: 6px; transition: opacity 250ms ease; }
.log-row.muted { opacity: .62; }
.log-main { flex: 1; min-width: 0; } .log-main b { display: block; font-size: 14.5px; line-height: 1.3; } .log-main small { display: block; font-size: 12.5px; color: var(--muted); }
.btn-revoke { position: relative; height: 34px; padding: 0 14px; border-radius: 99px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; transition: transform 150ms var(--ease-out-cubic), background-color 150ms ease; will-change: transform; }
.btn-revoke::before { content: ""; position: absolute; inset: -6px; }
.btn-revoke:active { transform: scale(.95); }
.btn-revoke.undo { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(11, 23, 48, .2); }
.pill.swap { animation: pillSwap 250ms var(--ease-out-cubic); }
@keyframes pillSwap { from { opacity: 0; transform: scale(.9); filter: blur(2px); } }
.log-hint { padding: 10px 14px 8px; font-size: 12.5px; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 16px; }

.sec-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.spoint { display: grid; gap: 10px; align-content: start; padding: 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.spoint .ico { background: var(--green-soft); color: var(--green); margin-bottom: 14px; }
.footnote { display: flex; align-items: center; gap: 12px; margin-top: clamp(32px, 4vw, 56px); padding: 18px 22px; border-radius: var(--r-md); background: var(--tint); font-size: 15px; font-weight: 500; color: var(--ink-2); }
.footnote [data-lucide], .footnote .lucide { color: var(--brand); font-size: 18px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.qa { border-bottom: 1px solid rgba(11, 23, 48, .13); }
.qa:first-child { border-top: 1px solid rgba(11, 23, 48, .13); }
.qa h3 { font-size: inherit; font-weight: inherit; }
.qa button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 2px; text-align: left; font-size: clamp(17px, 1.5vw, 20px); font-weight: 600; letter-spacing: -.02em; line-height: 1.35; }
.plus { position: relative; flex: none; width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--line); transition: transform 300ms var(--ease-in-out-cubic), background-color 200ms ease; }
.plus::before, .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; border-radius: 2px; background: var(--ink); transition: background-color 200ms ease; }
.plus::after { transform: rotate(90deg); }
.qa button[aria-expanded="true"] .plus { transform: rotate(135deg); background: var(--ink); }
.qa button[aria-expanded="true"] .plus::before, .qa button[aria-expanded="true"] .plus::after { background: #fff; }
.qa-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease-out-quart); }
.qa-panel > div { overflow: hidden; }
.qa-panel p { padding: 0 60px 26px 2px; color: var(--ink-2); font-size: 16px; line-height: 1.65; opacity: 0; transform: translateY(-6px); transition: opacity 250ms ease-out, transform 300ms var(--ease-out-quart); }
.qa.open .qa-panel { grid-template-rows: 1fr; }
.qa.open .qa-panel p { opacity: 1; transform: none; }
html:not(.js) .qa-panel { grid-template-rows: 1fr; } html:not(.js) .qa-panel p { opacity: 1; transform: none; }

/* ==========================================================================
   CTA + footer
   ========================================================================== */
.cta { position: relative; overflow: hidden; isolation: isolate; text-align: center; padding: clamp(64px, 9vw, 120px) 24px; border-radius: var(--r-xl); background: linear-gradient(180deg, #DDE6FF, #ECEFFB); display: grid; justify-items: center; }
.cta .h2 { max-width: 820px; }
.cta .lead { max-width: 560px; margin: 22px 0 36px; }
.cta-trust { margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--ink-2); }

.footer { margin: 0 10px 10px; padding: clamp(56px, 7vw, 96px) 0 36px; border-radius: var(--r-xl); background: var(--teal-900); color: #fff; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.foot-line { max-width: 560px; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; letter-spacing: -.035em; font-weight: 600; }
.foot-line span { color: #7F8BAA; }
.foot-links { display: flex; flex-wrap: wrap; gap: 6px 22px; font-size: 15px; color: #B9C3DC; }
.foot-links a { transition: color 150ms ease; }
@media (hover: hover) and (pointer: fine) { .foot-links a:hover { color: #fff; } }
.foot-bottom { display: grid; grid-template-columns: auto 1fr auto; gap: 16px 40px; align-items: center; padding-top: 28px; font-size: 13.5px; color: #8E9AB8; }
.foot-bottom .logo { color: #fff; } .foot-bottom .logo-mark { color: #fff; }
.foot-bottom p:nth-of-type(1) { max-width: 640px; }

/* ==========================================================================
   Try the app: screens recreated from the v3 flows (deep band, floating sheet)
   ========================================================================== */
.tour { background: linear-gradient(180deg, var(--bg), var(--tint) 40%); }
.tour-grid { display: grid; grid-template-columns: 1fr auto; gap: clamp(32px, 6vw, 96px); align-items: center; max-width: 1040px; margin-inline: auto; }
.tour-tabs { display: grid; gap: 10px; }
.tour-tabs button { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; text-align: left; padding: 20px 22px; border-radius: var(--r-md); border: 1px solid transparent; transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.tour-tabs b { display: block; font-size: 18.5px; font-weight: 700; letter-spacing: -.025em; line-height: 1.3; color: var(--ink-2); transition: color 200ms ease; }
.tour-tabs small { display: block; margin-top: 6px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.tt-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: rgba(15, 21, 32, .06); color: var(--ink-2); font-size: 19px; transition: background-color 200ms ease, color 200ms ease, transform 250ms var(--ease-out-cubic); }
.tour-tabs button[aria-selected="true"] { background: #fff; border-color: var(--line); box-shadow: var(--shadow-md); }
.tour-tabs button[aria-selected="true"] b { color: var(--ink); }
.tour-tabs button[aria-selected="true"] .tt-ico { background: var(--app-blue); color: #fff; }
.tour-tabs button:active .tt-ico { transform: scale(.94); }
@media (hover: hover) and (pointer: fine) { .tour-tabs button[aria-selected="false"]:hover { background: rgba(255, 255, 255, .6); } }
.tour-stage { display: grid; justify-items: center; gap: 18px; }
.tour-hint { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }

.aphone { width: 344px; height: 712px; padding: 9px; border-radius: 52px; background: #0A1226; box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .14); }
.ascreen { position: relative; height: 100%; border-radius: 43px; overflow: hidden; background: #fff; font-family: var(--app-font); color: #0F1520; font-size: 13px; line-height: 1.4; }
.ascreen p { margin: 0; }
.app { position: absolute; inset: 0; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateX(14px); transition: opacity 180ms var(--ease-out-cubic), transform 180ms var(--ease-out-cubic), visibility 0s 180ms; }
.app.on { opacity: 1; visibility: visible; transform: none; transition: opacity 280ms var(--ease-out-quart) 60ms, transform 280ms var(--ease-out-quart) 60ms, visibility 0s; }
.a-band { flex: none; background: var(--teal-900); color: #fff; padding: 13px 20px 34px; }
.a-status { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 600; margin-bottom: 18px; }
.a-status span:last-child { font-size: 10.5px; opacity: .7; }
.a-cap { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-200); }
.a-title { margin-top: 7px !important; font-size: 23px; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
.a-title.sm { margin-top: 0 !important; font-size: 19px; }
.a-sub { font-size: 11.5px; color: rgba(255, 255, 255, .72); margin-top: 3px !important; }
.a-display { display: flex; align-items: baseline; gap: 4px; margin-top: 4px !important; font-size: 44px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.a-display small { font-size: 18px; font-weight: 600; opacity: .7; margin-right: 8px; }
.a-doc { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.a-docav { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 14px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .22); font-family: var(--app-font); font-size: 14px; font-weight: 800; color: #fff; }
.a-docav.dark { background: var(--teal-900); border-color: transparent; }
.a-sheet { flex: 1; min-height: 0; margin-top: -18px; padding: 16px 18px 0; border-radius: 26px 26px 0 0; background: var(--app-canvas); display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.a-sheet.center { justify-content: center; align-items: center; text-align: center; padding-inline: 28px; gap: 12px; }
.a-foot { flex: none; display: flex; gap: 8px; padding: 12px 18px 20px; background: #fff; border-top: 1px solid #E4E9F2; }
.a-h { font-size: 15.5px; font-weight: 700; letter-spacing: -.015em; margin-top: 2px !important; }
.a-note { font-size: 13px; font-weight: 500; color: #33415C; line-height: 1.45; }
.a-fine { font-size: 11.5px; font-weight: 500; color: #6B7A99; line-height: 1.4; }
.a-card { background: #fff; border-radius: 18px; padding: 12px 14px; box-shadow: 0 6px 20px rgba(28, 48, 96, .07); }

.a-btn { height: 46px; padding: 0 18px; border-radius: 999px; background: var(--app-blue); color: #fff; font-family: var(--app-font); font-size: 13.5px; font-weight: 700; white-space: nowrap; transition: transform 150ms var(--ease-out-cubic), background-color 150ms ease, opacity 150ms ease; will-change: transform; }
.a-btn:active { transform: scale(.97); }
.a-btn.grow { flex: 1; } .a-btn.sm { height: 36px; padding: 0 14px; font-size: 12.5px; }
.a-btn.outline { background: #fff; color: #33415C; box-shadow: inset 0 0 0 1px #CBD3E0; }
.a-btn.danger { background: #FBE0E0; color: #C43D3D; }
.a-btn:disabled { opacity: .45; cursor: default; }
.a-actions { display: flex; gap: 8px; margin-top: 10px; }

.a-tag { display: inline-flex; align-items: center; height: 20px; padding: 0 8px; border-radius: 99px; font-size: 10.5px; font-weight: 700; letter-spacing: 0; white-space: nowrap; }
.a-tag.amber { background: #FBEDD6; color: #9A6412; } .a-tag.green { background: #DCF2E9; color: #1F8A63; } .a-tag.red { background: #FBE0E0; color: #C43D3D; }
.a-tag.glass { align-self: center; background: rgba(255, 255, 255, .16); color: #fff; height: 24px; font-size: 11.5px; }
.a-tag.swap { animation: pillSwap 250ms var(--ease-out-cubic); }

.a-field { background: #fff; border: 1.5px solid var(--app-blue); border-radius: 18px; padding: 11px 13px 12px; transition: border-color 200ms ease; }
.a-field-top { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; font-weight: 600; color: #6B7A99; }
.a-input { width: 100%; margin-top: 4px; padding: 2px 0; border: 0; border-bottom: 1.5px solid transparent; background: none; font: 700 16px/1.3 var(--app-font); letter-spacing: -.01em; color: #0F1520; outline: none; }
.a-input:focus { border-bottom-color: var(--app-blue); }
.a-field.ok { border-color: #E4E9F2; } .a-field.ok .a-actions { display: none; } .a-field.ok .a-input { pointer-events: none; }
.a-rows { display: grid; gap: 9px; }
.a-rows div { display: grid; grid-template-columns: 52px 1fr auto; gap: 8px; align-items: baseline; font-size: 12.5px; }
.a-rows span { color: #6B7A99; font-weight: 500; } .a-rows em { font: 600 10.5px var(--app-font); color: #1F8A63; }
.a-bigcheck { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: #DCF2E9; color: #2FA97C; font-size: 32px; }
.app.on .a-bigcheck { animation: checkIn 450ms var(--ease-out-quart) 150ms both; }
@keyframes checkIn { from { opacity: 0; transform: scale(.8); } }

.a-chart { width: 100%; overflow: visible; }
.a-ref { stroke: #E2A33A; stroke-width: 1.5; stroke-dasharray: 4 5; } .a-reft { font: 600 9.5px var(--app-font); fill: #9A6412; }
.a-line { fill: none; stroke: var(--app-blue); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.a-chart circle { fill: #fff; stroke: var(--app-blue); stroke-width: 2.5; transform-box: fill-box; transform-origin: center; transition: transform 250ms var(--ease-out-quart), fill 200ms ease; }
.a-chart circle.sel { fill: var(--app-blue); transform: scale(1.35); }
.a-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 8px; padding-top: 10px; border-top: 1px solid #E4E9F2; text-align: center; }
.a-stats b { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.02em; } .a-stats span { font-size: 10.5px; color: #6B7A99; font-weight: 600; }
.a-reads { padding: 4px; display: grid; gap: 2px; }
.a-reads button { display: flex; justify-content: space-between; align-items: center; gap: 10px; width: 100%; padding: 8px 10px; border-radius: 14px; text-align: left; font-family: var(--app-font); transition: background-color 150ms ease; }
.a-reads span { font-size: 12.5px; font-weight: 600; } .a-reads small { display: block; font-size: 10.5px; font-weight: 500; color: #6B7A99; }
.a-reads b { font-size: 16px; font-weight: 800; font-variant-numeric: tabular-nums; }
.a-reads button.sel { background: #EEF3FE; } .a-reads button.sel b { color: #3C64DE; }

.a-checks { display: grid; gap: 7px; }
.a-checks button { display: flex; align-items: center; gap: 11px; min-height: 50px; padding: 9px 13px; border-radius: 16px; background: #fff; border: 1.5px solid #E4E9F2; text-align: left; font-family: var(--app-font); transition: border-color 150ms ease; }
.a-checks b { display: block; font-size: 12.5px; font-weight: 600; color: #6B7A99; transition: color 150ms ease; } .a-checks small { display: block; font-size: 11px; color: #6B7A99; margin-top: 1px; }
.a-box { display: grid; place-items: center; flex: none; width: 21px; height: 21px; border-radius: 7px; box-shadow: inset 0 0 0 1.5px #CBD3E0; color: #fff; font-size: 13px; transition: background-color 150ms ease, box-shadow 150ms ease, transform 150ms var(--ease-out-cubic); }
.a-box .lucide { stroke-width: 3; opacity: 0; transform: scale(.6); transition: opacity 150ms ease-out, transform 150ms var(--ease-out-cubic); }
.a-checks button:active .a-box { transform: scale(.9); }
.a-checks button[aria-checked="true"] { border-color: var(--app-blue); } .a-checks button[aria-checked="true"] b { color: #0F1520; }
.a-checks button[aria-checked="true"] .a-box { background: var(--app-blue); box-shadow: none; } .a-checks button[aria-checked="true"] .a-box .lucide { opacity: 1; transform: none; }
.a-pills { display: flex; gap: 7px; }
.a-pills button { flex: 1; height: 42px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px #CBD3E0; font: 600 12.5px var(--app-font); color: #33415C; transition: background-color 150ms ease, color 150ms ease, transform 150ms var(--ease-out-cubic); }
.a-pills button:active { transform: scale(.97); }
.a-pills button.on { background: var(--app-blue); color: #fff; box-shadow: none; }
.a-consent { display: flex; gap: 9px; align-items: flex-start; padding: 10px 12px; border-radius: 14px; background: #EDF5F7; color: #134A60; font-size: 11.5px; font-weight: 600; line-height: 1.4; }
.a-consent .lucide { font-size: 15px; margin-top: 1px; }

.a-grant-top, .a-person { display: flex; align-items: center; gap: 11px; }
.a-grant-top > div, .a-person > div { flex: 1; min-width: 0; }
.a-grant b, .a-person b { display: block; font-size: 14px; font-weight: 700; } .a-grant small, .a-person small { display: block; font-size: 11.5px; color: #6B7A99; font-weight: 500; line-height: 1.35; }
.a-grant { transition: opacity 250ms ease; } .a-grant.stopped .a-grant-top { opacity: .55; }
.a-log { display: grid; gap: 9px; } .a-log div { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 600; } .a-log em { font: 500 11.5px var(--app-font); color: #6B7A99; white-space: nowrap; }
.a-log div.new { animation: tlIn 350ms var(--ease-out-quart) both; color: #C43D3D; }
.a-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.a-chips button, .a-chips span { height: 36px; padding: 0 14px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px #CBD3E0; font: 600 12.5px var(--app-font); color: #33415C; display: inline-flex; align-items: center; transition: background-color 150ms ease, color 150ms ease, transform 150ms var(--ease-out-cubic); }
.a-chips button:active { transform: scale(.96); }
.a-chips button[aria-pressed="true"] { background: var(--app-blue); color: #fff; box-shadow: none; }
.a-chips.static { margin-top: 10px; } .a-chips.static span { height: 26px; padding: 0 10px; font-size: 11.5px; background: #EEF3FE; color: #3C64DE; box-shadow: none; }

/* ==========================================================================
   Consent (DPDP)
   ========================================================================== */
.consent-grid { display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.creq { position: sticky; top: 110px; padding: 24px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); font-family: var(--app-font); }
.creq-cap { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.creq-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.creq-head b { display: block; font-size: 16px; } .creq-head small { font-size: 12.5px; color: var(--muted); }
.creq-rows { margin: 0; } .creq-rows div { display: grid; grid-template-columns: 118px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.creq-rows dt { color: var(--muted); font-weight: 500; } .creq-rows dd { margin: 0; font-weight: 600; }
.creq-foot { display: flex; gap: 8px; margin-top: 18px; }
.creq-btn { flex: 1; display: grid; place-items: center; height: 46px; border-radius: 999px; background: var(--app-blue); color: #fff; font-size: 13.5px; font-weight: 700; }
.creq-btn.ghost { flex: none; padding: 0 18px; background: #fff; color: var(--ink-2); box-shadow: inset 0 0 0 1px #CBD3E0; }
.creq-fine { margin-top: 14px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.cprin { margin: 0; display: grid; }
.cprin li { display: grid; grid-template-columns: 56px 1fr; gap: 8px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.cprin li:first-child { padding-top: 0; }
.cprin li > span { font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.2; color: var(--brand); }
.cprin h3 { font-size: 21px; font-weight: 700; letter-spacing: -.025em; line-height: 1.25; }
.cprin p { margin-top: 8px; font-size: 15.5px; color: var(--ink-2); line-height: 1.6; max-width: 560px; }

.rights { margin-top: clamp(56px, 7vw, 96px); }
.rights-h { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -.03em; margin-bottom: 24px; }
.rights-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.right { padding: 22px 20px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); }
.right .lucide, .right [data-lucide] { font-size: 22px; color: var(--brand); margin-bottom: 16px; }
.right b { display: block; font-size: 16px; letter-spacing: -.02em; } .right p { margin-top: 6px; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
.right a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.dependants { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.dependants > div { display: flex; gap: 14px; padding: 22px; border-radius: var(--r-md); background: var(--tint); }
.dependants .lucide, .dependants [data-lucide] { font-size: 22px; color: var(--teal-800); margin-top: 2px; }
.dependants p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); } .dependants b { color: var(--ink); }

.foot-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px 32px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 13.5px; color: var(--teal-200); }
.foot-legal nav { display: flex; flex-wrap: wrap; gap: 6px 22px; } .foot-legal a { text-decoration: underline; text-underline-offset: 3px; transition: color 150ms ease; }
@media (hover: hover) and (pointer: fine) { .foot-legal a:hover { color: #fff; } }

@media (max-width: 1080px) { .rights-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 960px) {
  .tour-grid, .consent-grid { grid-template-columns: 1fr; }
  .tour-tabs { display: flex; overflow-x: auto; scrollbar-width: none; margin: 0 -20px; padding: 4px 20px; gap: 8px; }
  .tour-tabs::-webkit-scrollbar { display: none; }
  .tour-tabs button { flex: none; grid-template-columns: auto auto; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px; background: rgba(255, 255, 255, .6); border-color: var(--line); }
  .tour-tabs button[aria-selected="true"] { box-shadow: var(--shadow-sm); }
  .tour-tabs small { display: none; } .tour-tabs b { font-size: 14px; white-space: nowrap; } .tt-ico { width: 32px; height: 32px; border-radius: 50%; font-size: 15px; }
  .creq { position: static; }
}
@media (max-width: 600px) {
  .aphone { width: 320px; height: 690px; }
  .rights-grid, .dependants { grid-template-columns: 1fr; }
  .cprin li { grid-template-columns: 40px 1fr; }
  .creq { padding: 18px; } .creq-rows div { grid-template-columns: 104px 1fr; }
}

/* ==========================================================================
   Claims
   ========================================================================== */
.claims-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.claims-grid .lead { margin-top: 22px; }
.claim-points { margin-top: clamp(32px, 4vw, 48px); gap: clamp(20px, 3vw, 36px); }
.claim-points .ico { background: var(--amber-soft); color: var(--amber); margin-bottom: 6px; }
.claim-visual { display: grid; justify-items: center; }
.claim-card { width: 100%; max-width: 420px; padding: 22px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); font-family: var(--app-font); }
.claim-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.claim-cap { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.claim-title { font-size: 17px; font-weight: 700; letter-spacing: -.02em; margin-top: 4px; }
.pill-amber { background: var(--amber-soft); color: var(--amber); }
.claim-list { display: grid; gap: 6px; margin: 14px 0; }
.claim-list li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 14px; background: var(--bg); font-size: 14px; font-weight: 600; transition: background-color 250ms ease; }
.claim-list small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }
.c-box { display: grid; place-items: center; flex: none; width: 22px; height: 22px; border-radius: 7px; background: var(--green); color: #fff; font-size: 14px; transition: background-color 250ms ease, transform 250ms var(--ease-out-cubic); }
.c-box .lucide { stroke-width: 3; transition: opacity 200ms ease-out, transform 200ms var(--ease-out-cubic); }
.claim-list .todo { background: var(--amber-soft); }
.claim-list .todo .c-box { background: #fff; box-shadow: inset 0 0 0 1.5px var(--amber); }
.claim-list .todo .c-box .lucide { opacity: 0; transform: scale(.6); }
.claim-list .todo small { color: var(--amber); font-weight: 600; }
.claim-list .todo::after { content: "Tap to add"; margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--amber); white-space: nowrap; }
.claim-list .todo { cursor: pointer; }
.claim-meter { height: 6px; border-radius: 9px; background: var(--tint); overflow: hidden; }
.claim-meter span { display: block; height: 100%; width: 100%; border-radius: inherit; background: var(--green); transform-origin: left; transform: scaleX(.8); transition: transform 500ms var(--ease-in-out-cubic); }
.claim-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.claim-btn { display: inline-grid; place-items: center; flex: none; height: 40px; padding: 0 18px; white-space: nowrap; border-radius: 999px; background: var(--app-blue); color: #fff; font-size: 13.5px; font-weight: 700; opacity: .45; transition: opacity 200ms ease, transform 150ms var(--ease-out-cubic); cursor: pointer; }
.claim-card.ready .claim-btn { opacity: 1; }
.claim-btn:active { transform: scale(.97); }
.claim-card.packed .claim-btn { background: var(--green); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 440px)); justify-content: center; gap: 16px; }
.plan { display: flex; flex-direction: column; padding: 32px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.plan.plan-plus { background: var(--teal-900); color: #fff; border-color: transparent; }
.plan-name { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.plan.plan-plus .plan-name { color: var(--teal-200); }
.plan-price { margin-top: 10px; font-size: clamp(36px, 4vw, 48px); font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.plan-price small { display: block; margin-top: 8px; font-size: 14.5px; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.plan.plan-plus .plan-price small { color: rgba(255, 255, 255, .72); }
.plan ul { display: grid; gap: 12px; margin: 28px 0 32px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; }
.plan li .lucide, .plan li [data-lucide] { flex: none; margin-top: 3px; font-size: 17px; color: var(--green); stroke-width: 2.5; }
.plan.plan-plus li .lucide, .plan.plan-plus li [data-lucide] { color: #6FE0B4; }
.plan .btn { margin-top: auto; }
.plan.plan-plus .btn-dark { background: var(--app-blue); box-shadow: none; }
.plan-alt { margin-top: 14px; font-size: 13.5px; color: rgba(255, 255, 255, .72); text-align: center; }
.plan-alt b { color: #fff; }
.plan-note { margin-top: 28px; text-align: center; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-2); }

@media (max-width: 960px) { .claims-grid { grid-template-columns: 1fr; } .claim-points { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .prob { min-height: 240px; }
  .fc-share { left: -4%; } .fc-trend { right: -2%; } .fc-abha { right: 0; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .hero-grid, .care-grid, .sec-grid, .faq-grid, .sec-head.split { grid-template-columns: 1fr; }
  .sec-head.split { align-items: start; }
  .hero-visual { margin-top: 24px; max-width: 520px; width: 100%; justify-self: center; }
  .steps { grid-template-columns: 1fr; }
  .step-art { height: 240px; }
  .panel { grid-template-columns: 1fr 1fr; }
  .faq-head { position: static; }
  .care-points { grid-template-columns: 1fr; }
  .foot-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .hero-wrap { padding: 6px; } .dark, .footer { margin-inline: 6px; }
  .hero { border-radius: 28px; padding-top: 108px; }
  .hero-grid { width: calc(100% - 32px); }
  .hero-cta .btn { flex: 1 1 100%; }
  .nav-actions .btn { display: none; }
  .hero-visual { min-height: 600px; }
  .phone { width: 280px; height: 580px; }
  .fc-share { left: -4px; bottom: 12%; width: 220px; }
  .fc-trend { display: none; }
  .fc-abha { right: -4px; top: -3%; bottom: auto; }
  .feat { min-height: 0; } .feat h3 { margin-top: 22px; }
  .grid-4, .panel, .sec-points { grid-template-columns: 1fr; }
  .feat.wide { grid-column: auto; }
  .prob { min-height: 0; } .mess { margin-top: 12px; }
  .care-visual { padding: 18px; }
  .city { padding: 8px 12px 8px 8px; }
  .qa-panel p { padding-right: 8px; }
  .log-row { flex-wrap: wrap; } .log-main { flex-basis: calc(100% - 50px); }
}

/* ==========================================================================
   Reduced motion: every animated element is switched off, no exceptions
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-glow, .eyebrow-chip .dot::after, .wi, .hero-in, .tl, .floaty, .spark-line, .spark circle,
  .marquee-track, .care-path path, .scanline, .chart.play .chart-line, .chart.play .chart-dots circle, .chart.play .chart-dots circle.last, .chart.play .chart-ripples circle,
  .panel.is-active .feat, .pill.swap, .a-tag.swap, .app.on .a-bigcheck, .a-log div.new { animation: none; }
  .wi { transform: none; }
  .spark-line, .chart-line { stroke-dashoffset: 0; }
  .spark circle, .chart-dots circle { opacity: 1; }
  .chart { transition: none; }
  .scanline { transform: translateY(60px); }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .reveal.done { transition: none; }
  .btn, .btn [data-lucide], .btn .lucide, .ico, .nav-inner, .nav-links a, .menu-btn span, .mobile-menu, .mobile-menu.open,
  .pf, .pf .av, .seg button, .seg-thumb, .tabs-overlay, .log-row, .btn-revoke, .plus, .plus::before, .plus::after,
  .qa-panel, .qa-panel p, .foot-links a, .foot-legal a, .tour-tabs button, .tour-tabs b, .tt-ico, .app, .app.on, .a-btn, .a-field,
  .a-chart circle, .a-reads button, .a-checks button, .a-checks b, .a-box, .a-box .lucide, .a-pills button, .a-chips button, .a-grant,
  .claim-list li, .c-box, .c-box .lucide, .claim-meter span, .claim-btn { transition: none; }
  .app { transform: none; }
}

/* ==========================================================================
   Mobile: compact layouts so the page reads in far fewer screens
   ========================================================================== */
@media (max-width: 600px) {
  :root { --gap: 56px; }
  .sec-head { margin-bottom: 28px; }
  .h2 { font-size: clamp(30px, 8.6vw, 36px); }
  .lead { font-size: 15.5px; }
  .eyebrow { margin-bottom: 12px; }

  /* hero: tighter copy, phone cropped with a fade instead of shown in full */
  .hero { padding-top: 96px; padding-bottom: 0; }
  .hero-title { font-size: clamp(36px, 10.4vw, 42px); }
  .hero-sub { margin-top: 18px; font-size: 16px; }
  .hero-cta { margin-top: 24px; gap: 10px; }
  .hero-cta .btn { height: 50px; }
  .trust-chips { margin-top: 22px; gap: 6px 14px; }
  .trust-chips li { font-size: 13px; }
  .hero-visual { min-height: 0; height: 430px; margin-top: 8px; overflow: hidden; align-items: start; -webkit-mask-image: linear-gradient(#000 62%, transparent); mask-image: linear-gradient(#000 62%, transparent); }
  .phone { width: 270px; height: 560px; }
  .fc-share { bottom: auto; top: 262px; left: -2px; width: 238px; }
  .fc-share .floaty { padding: 12px 14px; }
  .fc-abha { top: 14px; right: -2px; }
  .fc-abha .floaty { padding: 10px 12px 10px 10px; }

  /* compact card: icon on the left, title and text on the right */
  .prob, .point, .spoint, .right, .feat {
    display: grid; grid-template-columns: 40px 1fr; gap: 3px 14px; align-items: start;
    min-height: 0; padding: 18px 18px 20px;
  }
  .prob .ico, .point .ico, .spoint .ico, .feat .ico, .right > .lucide, .right > [data-lucide] { grid-row: 1 / span 2; margin: 0 !important; }
  .prob .ico, .point .ico, .spoint .ico, .feat .ico { width: 40px; height: 40px; border-radius: 12px; font-size: 18px; }
  .right > .lucide, .right > [data-lucide] { width: 40px; height: 40px; padding: 9px; border-radius: 12px; background: var(--brand-soft); font-size: 22px; }
  .prob h3, .point h3, .spoint h3, .feat h3, .right b { font-size: 17px; margin: 0; line-height: 1.3; padding-top: 9px; }
  .prob p, .point p, .spoint p, .feat p, .right p { font-size: 14.5px; margin: 0; }
  .prob .mess { display: none; }
  .feat.wide p { max-width: none; }
  .feat .extract { grid-column: 2; margin-top: 8px; }
  .point { padding: 0; }
  .care-points, .claim-points { gap: 22px; }
  .grid-4, .sec-points, .rights-grid, .panel { gap: 10px; }
  .marquee { margin-top: 32px; }
  #why .closing, #claims .closing { margin-top: 32px; font-size: 22px; }

  /* how it works */
  .steps { gap: 12px; }
  .step { padding: 10px 10px 22px; }
  .step-art { height: 200px; }
  .step-n { margin-top: 16px; font-size: 18px !important; }
  .step h3 { font-size: 22px; margin-bottom: 6px; }
  .step > p { font-size: 14.5px; }
  .paper { width: 128px; height: 150px; margin-top: -16px; }
  .chart-card, .share-card { padding: 12px; }

  /* families visual */
  .care-visual { padding: 14px; }
  .care-path { height: 60px; }
  .care-log { margin-top: 14px; gap: 6px; }
  .care-log li { padding: 10px 12px; }

  /* claims card */
  .claim-card { padding: 16px; }
  .claim-list li { padding: 8px 10px; font-size: 13.5px; }
  .claim-list .todo::after { display: none; }

  /* tour */
  .tour-stage { gap: 12px; }
  .aphone { width: 312px; height: 672px; }

  /* security + consent */
  .log-card { margin-top: 24px; }
  .footnote { padding: 14px 16px; font-size: 14px; align-items: flex-start; }
  .cprin li { padding: 18px 0; gap: 4px; grid-template-columns: 34px 1fr; }
  .cprin li > span { font-size: 20px; }
  .cprin h3 { font-size: 18px; } .cprin p { font-size: 14.5px; margin-top: 4px; }
  .rights { margin-top: 40px; } .rights-h { margin-bottom: 16px; }
  .dependants > div { padding: 16px; gap: 10px; }
  .dependants p { font-size: 14px; }

  /* pricing, faq, cta, footer */
  .plan { padding: 24px; }
  .plan ul { margin: 20px 0 24px; gap: 10px; }
  .plan li { font-size: 14.5px; }
  .qa button { padding: 18px 2px; font-size: 16.5px; }
  .qa-panel p { font-size: 15px; padding-bottom: 20px; }
  .cta { padding: 48px 20px; border-radius: 28px; }
  .cta .lead { margin: 16px 0 24px; }
  .btn-lg { height: 54px; padding: 0 26px; font-size: 16px; }
  .footer { padding-top: 48px; padding-bottom: 28px; }
  .foot-top { padding-bottom: 28px; }
  .foot-line { font-size: 24px; }
  .foot-bottom { padding-top: 22px; gap: 14px; }
  .foot-legal nav { gap: 6px 16px; }
}
