/* Koriva — korivafamily.com. Fonts are served from this site: no request
   leaves for a third party, so a visitor's address reaches no one else. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/assets/fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/assets/fonts/inter-latin-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url('/assets/fonts/caveat-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url('/assets/fonts/caveat-latin-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #0B1F33;
  --navy-2: #102C44;
  --green: #0E9F78;
  --green-dark: #08785C;
  --green-ink: #0A7B5E;
  --mint: #E8F8F3;
  --light: #F7FAFC;
  --white: #FFFFFF;
  --text: #122033;
  --soft: #5B6B80;
  --border: #E4EAF0;
  --danger: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(11,31,51,.06), 0 4px 14px rgba(11,31,51,.05);
  --shadow-lg: 0 30px 80px rgba(11,31,51,.16);
  --hand: 'Caveat', 'Segoe Script', cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font: 400 17px/1.7 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 2000; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { top: 12px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 28px; border-radius: 12px;
  font-weight: 700; font-size: 16px; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 8px 24px rgba(14,159,120,.25); }
.btn-secondary { background: #fff; border-color: #D8E1E8; color: var(--navy); }
.btn-secondary:hover { box-shadow: var(--shadow-sm); }
.btn-small { height: 44px; padding: 0 22px; border-radius: 10px; font-weight: 600; font-size: 15px; }
.play { width: 26px; height: 26px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.play svg { width: 11px; height: 11px; fill: #fff; stroke: none; margin-left: 2px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228,234,240,.7);
}
.header-inner { height: 78px; display: flex; align-items: center; gap: 40px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; letter-spacing: -.5px; color: var(--navy); }
.logo svg { width: 30px; height: 34px; }
.nav { display: flex; gap: 32px; font-size: 15px; font-weight: 500; color: var(--navy); }
.nav a:hover { color: var(--green-dark); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang { position: relative; }
.lang summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px;
  height: 44px; padding: 0 12px; border-radius: 10px; font-weight: 600; font-size: 14px; color: var(--navy);
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover { background: var(--light); }
.lang summary .icon { width: 16px; height: 16px; }
.lang ul {
  position: absolute; right: 0; top: 50px; margin: 0; padding: 8px; list-style: none; min-width: 170px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg);
}
.lang li a { display: flex; justify-content: space-between; padding: 9px 12px; border-radius: 8px; font-size: 15px; }
.lang li a:hover, .lang li a[aria-current] { background: var(--mint); color: var(--green-ink); }
.menu-btn { display: none; background: none; border: 0; width: 44px; height: 44px; border-radius: 10px; color: var(--navy); cursor: pointer; }
.menu-btn:hover { background: var(--light); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #F8FCFB 0%, #FFFFFF 100%); }
.hero-grid { display: grid; grid-template-columns: .95fr 1.25fr; gap: 48px; align-items: center; min-height: 690px; padding-block: 40px 56px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: #EFFAF6; border: 1px solid #D2F1E6; color: var(--green-ink); font-size: 13px; font-weight: 600;
}
.badge .icon { width: 15px; height: 15px; }
.hero h1 { margin-top: 24px; font-size: 64px; line-height: 1.05; font-weight: 800; letter-spacing: -2px; color: var(--navy); }
.hero h1 span { color: var(--green); }
.hero-lead { margin-top: 24px; max-width: 610px; color: var(--soft); font-size: 18px; }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.trust { margin: 22px 0 0; padding: 0; list-style: none; display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; font-weight: 500; color: var(--navy); }
.trust li { display: flex; align-items: center; gap: 7px; }
.trust .icon { width: 17px; height: 17px; color: var(--green); stroke-width: 2.6; }

/* Hero stage: phone, dashboard and the family panel, layered. */
.stage { position: relative; height: 560px; }
.family-panel {
  position: absolute; right: -32px; top: -30px; bottom: -70px; width: 270px;
  border-radius: 28px; overflow: hidden; z-index: 1;
}
.family-panel svg { width: 100%; height: 100%; object-fit: cover; }
.family-panel .hand { position: absolute; right: 24px; text-align: right; color: #fff; font-family: var(--hand); line-height: 1.05; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.family-panel .hand-top { top: 22px; font-size: 28px; color: #fff8ee; }
.family-panel .hand-bottom { bottom: 20px; font-size: 30px; }
.dash {
  position: absolute; left: 165px; top: 96px; width: 450px; z-index: 2;
  background: var(--navy); border-radius: 26px; padding: 12px; box-shadow: var(--shadow-lg);
}
.dash-screen { background: #fff; border-radius: 16px; overflow: hidden; }
.dash-bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--navy); color: #fff; }
.dash-bar .logo { font-size: 16px; color: #fff; gap: 6px; }
.dash-bar .logo svg { width: 18px; height: 20px; }
.dash-search { margin-left: auto; width: 130px; height: 22px; border-radius: 8px; background: rgba(255,255,255,.12); }
.dash-body { padding: 14px; display: grid; gap: 12px; }
.dash-hello { display: flex; align-items: center; gap: 10px; }
.dash-hello strong { display: block; font-size: 15px; color: var(--navy); line-height: 1.2; }
.dash-hello small { font-size: 11px; color: var(--soft); }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.stat { border: 1px solid var(--border); border-radius: 12px; padding: 8px 10px; display: flex; align-items: center; gap: 8px; }
.stat b { font-size: 17px; color: var(--navy); line-height: 1; }
.stat span { display: block; font-size: 10px; color: var(--soft); line-height: 1.25; }
.stat i { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.stat i .icon { width: 15px; height: 15px; }
.dash-main { display: grid; grid-template-columns: 1.15fr 1fr; gap: 10px; }
.dash-map { border-radius: 12px; overflow: hidden; height: 196px; border: 1px solid var(--border); }
.dash-map svg { width: 100%; height: 100%; }
.feed { border: 1px solid var(--border); border-radius: 12px; padding: 10px; }
.feed h4 { font-size: 11.5px; color: var(--navy); margin-bottom: 6px; }
.feed-row { display: flex; gap: 8px; padding: 6px 0; border-top: 1px solid var(--border); }
.feed-row:first-of-type { border-top: 0; }
.feed-row i { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.feed-row i .icon { width: 12px; height: 12px; }
.feed-row b { display: block; font-size: 10.5px; line-height: 1.3; color: var(--navy); font-weight: 600; }
.feed-row small { font-size: 9.5px; color: var(--soft); }

.phone {
  position: absolute; left: -10px; top: 60px; width: 250px; z-index: 3;
  transform: rotate(-4deg); animation: float 6s ease-in-out infinite;
  background: #0d1117; border-radius: 42px; padding: 10px;
  box-shadow: 0 30px 60px rgba(11,31,51,.26), inset 0 0 0 2px #2a313b;
}
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.phone-screen { position: relative; background: #fff; border-radius: 33px; overflow: hidden; height: 470px; display: flex; flex-direction: column; }
.notch { position: absolute; left: 50%; top: 8px; translate: -50% 0; width: 84px; height: 22px; background: #0d1117; border-radius: 20px; z-index: 2; }
.status { display: flex; justify-content: space-between; padding: 10px 22px 0; font-size: 11px; font-weight: 600; color: var(--navy); height: 30px; }
.phone-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 16px 8px; }
.phone-head .logo { font-size: 15px; gap: 5px; }
.phone-head .logo svg { width: 15px; height: 17px; }
.phone-map { position: relative; height: 150px; margin: 0 12px; border-radius: 16px; overflow: hidden; }
.phone-map svg { width: 100%; height: 100%; }
.pin-card {
  position: absolute; right: 12px; top: 18px; display: flex; gap: 7px; align-items: center;
  background: #fff; border-radius: 12px; padding: 6px 9px; box-shadow: var(--shadow-sm); font-size: 9.5px; line-height: 1.25;
}
.pin-card b { display: block; font-size: 10.5px; color: var(--navy); }
.pin-card small { color: var(--soft); }
.family-list { padding: 10px 14px 0; flex: 1; }
.family-list h4 { font-size: 12px; color: var(--navy); display: flex; justify-content: space-between; margin-bottom: 4px; }
.member { display: flex; align-items: center; gap: 9px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.member:last-child { border-bottom: 0; }
.member b { display: block; font-size: 11px; color: var(--navy); line-height: 1.3; }
.member small { font-size: 9.5px; color: var(--soft); }
.member .ok { margin-left: auto; width: 16px; height: 16px; color: var(--green); }
.avatar { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px; flex: none; }
.av1 { background: linear-gradient(135deg, #F59E0B, #EF6C4A); }
.av2 { background: linear-gradient(135deg, #3B82F6, #1E5FC9); }
.av3 { background: linear-gradient(135deg, #0E9F78, #08785C); }
.av4 { background: linear-gradient(135deg, #6B7C93, #3E4E63); }
.tabbar { display: flex; justify-content: space-around; padding: 8px 6px 12px; border-top: 1px solid var(--border); color: #9AA7B6; }
.tabbar span { display: grid; justify-items: center; gap: 2px; font-size: 8px; }
.tabbar .icon { width: 16px; height: 16px; }
.tabbar .on { color: var(--green); }

/* ---------- Value strip ---------- */
.strip { border-block: 1px solid var(--border); background: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.strip-item { display: flex; align-items: center; gap: 14px; padding: 26px 18px; }
.strip-item + .strip-item { border-left: 1px solid var(--border); }
.strip-item i { width: 48px; height: 48px; border-radius: 50%; background: var(--mint); color: var(--green-dark); display: grid; place-items: center; flex: none; }
.strip-item b { display: block; font-size: 15px; color: var(--navy); line-height: 1.3; }
.strip-item span { font-size: 13px; color: var(--soft); line-height: 1.4; display: block; }

/* ---------- Section heads ---------- */
.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.head h2, .h2 { font-size: 38px; line-height: 1.15; font-weight: 750; letter-spacing: -1px; color: var(--navy); }
.head p, .lead { margin-top: 10px; color: var(--soft); max-width: 720px; }
.link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy); border-bottom: 1.5px solid currentColor; padding-bottom: 2px; white-space: nowrap; font-size: 15px; }
.link:hover { color: var(--green-dark); }
.link .icon { width: 16px; height: 16px; }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card { border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(11,31,51,.10); }
.card-art { height: 180px; border-radius: var(--radius); position: relative; overflow: hidden; display: grid; place-items: center; }
.card h3 { margin-top: 16px; font-size: 16px; line-height: 1.35; font-weight: 700; color: var(--navy); }
.card p { margin-top: 6px; font-size: 14px; line-height: 1.55; color: var(--soft); }
.card .where { margin-top: 10px; display: inline-block; font-size: 12px; line-height: 1.5; font-weight: 600; color: var(--green-ink); background: var(--mint); border-radius: 10px; padding: 3px 10px; }
.art-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-map .mini-phone { position: relative; width: 92px; height: 150px; border-radius: 18px; background: #0d1117; padding: 5px; transform: rotate(-8deg) translate(-18px, 14px); box-shadow: 0 16px 30px rgba(11,31,51,.3); }
.art-map .mini-phone div { width: 100%; height: 100%; border-radius: 14px; overflow: hidden; }
.art-map .mini-phone svg { position: static; }
.art-soft { background: linear-gradient(160deg, #DDF3EC, #F4FBF8); }
.art-warn { background: linear-gradient(160deg, #FDE4DE, #FFF3EE); }
.art-dark { background: linear-gradient(160deg, #1C2B3C, #0B1F33); color: #fff; }
.art-screen { background: linear-gradient(160deg, #E1F4F4, #F2FAFA); }
.art-elder { background: linear-gradient(160deg, #F3EBDD, #FBF7F0); }
.toast { width: 84%; background: rgba(255,255,255,.95); border-radius: 14px; padding: 10px 12px; box-shadow: 0 10px 28px rgba(11,31,51,.12); display: flex; gap: 10px; align-items: center; font-size: 12px; line-height: 1.35; }
.toast b { display: block; color: var(--navy); font-size: 12.5px; }
.toast small { color: var(--soft); }
.toast i { width: 30px; height: 30px; border-radius: 9px; background: var(--mint); color: var(--green-dark); display: grid; place-items: center; flex: none; }
.toast i .icon { width: 17px; height: 17px; }
.alert-big { text-align: center; }
.alert-big .tri { width: 52px; height: 52px; margin: 0 auto 10px; color: var(--danger); }
.alert-big b { display: block; font-size: 13px; color: var(--navy); }
.alert-big small { font-size: 11.5px; color: var(--soft); }
.call { text-align: center; }
.call .who { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.18); margin: 0 auto 8px; display: grid; place-items: center; }
.call b { display: block; font-size: 14px; letter-spacing: .3px; }
.call small { font-size: 11.5px; color: #FCA5A5; }
.call-btns { display: flex; justify-content: center; gap: 36px; margin-top: 14px; }
.call-btns span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; }
.call-btns .no { background: var(--danger); }
.call-btns .yes { background: #22C55E; }
.call-btns .icon { width: 18px; height: 18px; color: #fff; }
.apps { display: grid; gap: 10px; width: 84%; }
.apps-row { display: flex; gap: 10px; background: #fff; border-radius: 14px; padding: 10px; box-shadow: var(--shadow-sm); }
.apps-row span { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.apps-row .icon { width: 18px; height: 18px; }
.meter { background: #fff; border-radius: 14px; padding: 10px 12px; box-shadow: var(--shadow-sm); font-size: 11px; color: var(--soft); }
.meter b { font-size: 18px; color: var(--navy); }
.meter-bar { height: 6px; border-radius: 99px; background: var(--border); margin-top: 6px; overflow: hidden; }
.meter-bar div { height: 100%; width: 83%; background: var(--green); border-radius: 99px; }
.elder-face { position: absolute; top: 22px; left: 50%; translate: -50% 0; width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; font-size: 28px; font-weight: 700; color: #fff; background: linear-gradient(135deg, #C9A27A, #8C6A4C); border: 4px solid #fff; box-shadow: var(--shadow-sm); }
.art-elder .toast { position: absolute; bottom: 18px; }

/* ---------- How it works ---------- */
.how { background: #F8FBFD; }
.how-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 48px; align-items: center; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; }
.step { display: flex; gap: 16px; align-items: center; position: relative; }
.step-num { position: absolute; left: -6px; top: -12px; width: 26px; height: 26px; border-radius: 50%; background: var(--green-dark); color: #fff; font-size: 13px; font-weight: 700; display: grid; place-items: center; }
.step-icon { width: 76px; height: 76px; border-radius: 50%; background: #fff; border: 1px solid var(--border); color: var(--green-dark); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.step-icon .icon { width: 30px; height: 30px; }
.step b { display: block; font-size: 16px; color: var(--navy); line-height: 1.3; }
.step div span { display: block; font-size: 14px; color: var(--soft); line-height: 1.5; margin-top: 4px; }
.arrow { color: #B8C4D0; }

/* ---------- Daily brief ---------- */
.brief {
  border-radius: 30px; padding: 56px;
  background: linear-gradient(135deg, #F0FBF7 0%, #F8FCFB 50%, #EDF9F5 100%);
  display: grid; grid-template-columns: 1.05fr 1fr .75fr; gap: 40px; align-items: center; position: relative; overflow: hidden;
}
.brief .badge { background: #fff; }
.brief h2 { margin-top: 18px; }
.brief .lead { margin-top: 16px; }
.brief-note { margin-top: 18px; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--green-ink); font-weight: 500; line-height: 1.5; }
.brief-note .icon { width: 18px; height: 18px; margin-top: 2px; }
.brief-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 22px; }
.brief-card header { display: flex; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.brief-card header i { width: 38px; height: 38px; border-radius: 50%; background: var(--mint); color: var(--green-dark); display: grid; place-items: center; }
.brief-card header b { display: block; color: var(--navy); font-size: 16px; line-height: 1.3; }
.brief-card header small { color: var(--soft); font-size: 13px; }
.brief-row { display: flex; gap: 12px; padding: 12px 0; }
.brief-row + .brief-row { border-top: 1px solid var(--border); }
.brief-row i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: #fff; flex: none; }
.brief-row i .icon { width: 14px; height: 14px; stroke-width: 3; }
.brief-row b { display: block; font-size: 14px; color: var(--navy); line-height: 1.35; font-weight: 600; }
.brief-row small { font-size: 13px; color: var(--soft); }
.dot-green { background: var(--green); } .dot-red { background: var(--danger); } .dot-blue { background: var(--info); } .dot-orange { background: var(--warning); }
.quote { font-family: var(--hand); font-size: 32px; line-height: 1.15; color: var(--navy); position: relative; z-index: 1; }
.quote-sub { margin-top: 18px; font-size: 14px; color: var(--soft); position: relative; z-index: 1; }
.brief-quote { position: relative; }
.leaf { position: absolute; right: -40px; top: -150px; width: 150px; opacity: .5; }

/* ---------- Privacy ---------- */
.privacy { background: linear-gradient(180deg, #FFFFFF 0%, #F8FCFB 100%); }
.privacy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.p-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; background: #fff; transition: box-shadow .25s ease, transform .25s ease; }
.p-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11,31,51,.08); }
.p-card i { width: 48px; height: 48px; border-radius: 14px; background: var(--mint); color: var(--green-dark); display: grid; place-items: center; }
.p-card h3 { margin-top: 18px; font-size: 17px; color: var(--navy); line-height: 1.35; }
.p-card p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--soft); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; padding: 20px 0; font-weight: 600; font-size: 17px; color: var(--navy); line-height: 1.4; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { transition: transform .2s ease; color: var(--green-dark); }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq details p { padding: 0 0 22px; color: var(--soft); font-size: 16px; max-width: 720px; }

/* ---------- Download ---------- */
.download { padding: 0 0 96px; }
.cta {
  position: relative; overflow: hidden; border-radius: 28px; color: #fff; padding: 56px;
  background:
    radial-gradient(circle at 80% 40%, rgba(14,159,120,.25), transparent 35%),
    linear-gradient(135deg, #0B1F33 0%, #10364A 60%, #08785C 100%);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
}
.cta .badge { background: rgba(14,159,120,.18); border-color: rgba(14,159,120,.45); color: #A7F3D0; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; }
.cta h2 { margin-top: 16px; font-size: 38px; line-height: 1.15; font-weight: 750; letter-spacing: -1px; }
.cta p { margin-top: 12px; color: #C9D6E3; max-width: 520px; }
.stores { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.store { display: inline-flex; align-items: center; gap: 10px; height: 56px; padding: 0 18px; border-radius: 12px; background: #000; border: 1px solid #5d6b7a; color: #fff; min-width: 180px; }
.store svg { width: 26px; height: 26px; fill: #fff; }
.store small { display: block; font-size: 11px; line-height: 1.1; color: #cfd8e3; }
.store b { display: block; font-size: 18px; line-height: 1.1; font-weight: 600; }
.store[aria-disabled="true"] { opacity: .78; cursor: default; }
.soon { margin-top: 14px; font-size: 14px; color: #A7F3D0; position: relative; z-index: 1; }
.cta .hand { font-family: var(--hand); font-size: 30px; line-height: 1.1; color: #E6FFF5; transform: rotate(-3deg); margin: 0 0 18px; position: relative; z-index: 1; }
.cta .scene { position: absolute; right: 0; bottom: 0; width: 460px; height: 150px; opacity: .9; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 28px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; }
.footer .logo { font-size: 26px; }
.footer .tagline { margin-top: 8px; color: var(--soft); }
.footer h4 { font-size: 14px; color: var(--navy); margin-bottom: 10px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; color: var(--soft); }
.footer ul a:hover { color: var(--green-dark); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; color: var(--soft); font-size: 13px; flex-wrap: wrap; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .p-card { transition: none; }
}

/* ---------- Tablet ---------- */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 56px; gap: 56px; }
  .hero h1 { font-size: 52px; }
  .stage { max-width: 760px; width: 100%; margin: 0 auto; }
  .family-panel { right: 0; border-radius: 28px; width: 240px; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .strip-grid { grid-template-columns: repeat(5, minmax(220px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
  .strip-item { scroll-snap-align: start; }
  .how-grid { grid-template-columns: 1fr; }
  .brief { grid-template-columns: 1fr 1fr; }
  .brief-quote { grid-column: 1 / -1; }
  .privacy-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .nav, .header-actions .btn { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .header.open .nav {
    display: grid; gap: 0; position: absolute; left: 0; right: 0; top: 78px;
    background: #fff; border-bottom: 1px solid var(--border); padding: 8px 20px 18px; box-shadow: 0 20px 40px rgba(11,31,51,.08);
  }
  .header.open .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 17px; }
  .section { padding: 72px 0; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .arrow { display: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .header-inner { height: 68px; gap: 12px; }
  .header.open .nav { top: 68px; }
  .hero-grid { padding-block: 36px 44px; gap: 40px; }
  .hero h1 { font-size: 40px; line-height: 1.1; letter-spacing: -1.2px; }
  .hero-lead { font-size: 16.5px; }
  .hero-cta .btn { width: 100%; }
  .trust { gap: 10px 18px; }
  .stage { height: auto; display: grid; gap: 24px; justify-items: center; }
  .phone { order: 1; }
  .dash { order: 2; }
  .family-panel { order: 3; }
  .phone { position: relative; left: auto; top: auto; transform: none; width: 250px; }
  .dash { position: relative; left: auto; top: auto; width: 100%; max-width: 480px; }
  .dash-main { grid-template-columns: 1fr; }
  .dash-map { height: 150px; }
  .family-panel { position: relative; right: auto; top: auto; bottom: auto; width: 100%; height: 220px; border-radius: 24px; }
  .head { display: block; }
  .head .link { margin-top: 16px; }
  .head h2, .h2, .cta h2 { font-size: 30px; }
  .cards { grid-template-columns: 1fr; }
  .brief { grid-template-columns: 1fr; padding: 32px 22px; border-radius: 24px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .cta { padding: 36px 22px; border-radius: 24px; }
  .store { flex: 1; }
  .cta .scene { width: 300px; height: 100px; opacity: .5; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
