/* ============================================================
   ScreenTime Nanny — 2026 design system (v2)
   Warm, playful-premium. Teal + sun, big type, bento, motion.
   ============================================================ */

:root {
  --bg: #FBF7EF;
  --bg-2: #F5EFE3;
  --card: #FFFFFF;
  --ink: #142B33;
  --ink-2: #45606A;
  --ink-3: #7E939B;
  --teal: #0CA6AD;
  --teal-deep: #067C84;
  --teal-soft: #E0F4F5;
  --sun: #FFC53D;
  --sun-soft: #FFF3D6;
  --coral: #FF6B5E;
  --coral-soft: #FFE9E6;
  --mint: #1FB873;
  --mint-soft: #E2F6EC;
  --grape: #7C6BF2;
  --grape-soft: #ECE9FE;
  --line: rgba(20, 43, 51, 0.10);
  --line-strong: rgba(20, 43, 51, 0.16);
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(20, 43, 51, 0.05), 0 4px 12px rgba(20, 43, 51, 0.05);
  --shadow-md: 0 2px 4px rgba(20, 43, 51, 0.05), 0 12px 32px rgba(20, 43, 51, 0.09);
  --shadow-lg: 0 4px 8px rgba(20, 43, 51, 0.05), 0 24px 64px rgba(20, 43, 51, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 36px); }

/* Mesh background blobs */
.mesh {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(640px 420px at 12% -4%, rgba(12, 166, 173, 0.10), transparent 62%),
    radial-gradient(560px 400px at 92% 2%, rgba(255, 197, 61, 0.14), transparent 60%),
    radial-gradient(720px 520px at 50% 110%, rgba(12, 166, 173, 0.07), transparent 62%);
}

/* Type ------------------------------------------------------ */
h1, h2, h3 { line-height: 1.06; letter-spacing: -0.028em; font-weight: 700; }
.d1 { font-size: clamp(42px, 6.4vw, 78px); }
.d2 { font-size: clamp(30px, 4vw, 48px); }
.d3 { font-size: clamp(20px, 2.2vw, 25px); letter-spacing: -0.015em; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); line-height: 1.65; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2.5px; border-radius: 2px; background: var(--sun); }

/* Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: 999px; border: 0;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn-dark {
  background: var(--ink); color: #fff;
  box-shadow: 0 10px 26px rgba(20, 43, 51, 0.24);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(20, 43, 51, 0.3); }
.btn-teal {
  background: linear-gradient(135deg, #10B5BC, var(--teal-deep)); color: #fff;
  box-shadow: 0 10px 26px rgba(8, 124, 132, 0.32);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(8, 124, 132, 0.4); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* Store badges ---------------------------------------------- */
.badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 12px 20px; border-radius: 16px;
  background: var(--ink); color: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 8px 22px rgba(20, 43, 51, 0.2);
}
.store-badge:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 14px 30px rgba(20, 43, 51, 0.28); }
.store-badge svg { width: 26px; height: 26px; flex: 0 0 auto; }
.store-badge .s { font-size: 11px; opacity: 0.75; display: block; line-height: 1.2; }
.store-badge .b { font-size: 17px; font-weight: 600; display: block; line-height: 1.2; letter-spacing: -0.01em; }
.store-badge.soon { background: #fff; color: var(--ink); border: 1.5px solid var(--line-strong); box-shadow: none; }
.store-badge.soon .s { opacity: 0.55; }

/* Nav ------------------------------------------------------- */
.nav {
  position: sticky; top: 14px; z-index: 100;
  margin: 14px auto 0;
}
.nav-pill {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(20, 43, 51, 0.08);
  box-shadow: 0 10px 32px rgba(20, 43, 51, 0.08);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 10px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(20, 43, 51, 0.06); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav .btn { padding: 11px 20px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); padding: 8px; }

/* Hero ------------------------------------------------------ */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(30px, 4vw, 56px); }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.hero h1 .hl {
  position: relative; white-space: nowrap;
  background: linear-gradient(120deg, var(--teal), var(--teal-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .hl::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: 0.04em;
  height: 0.22em; z-index: -1; border-radius: 999px;
  background: var(--sun-soft);
}
.hero .lede { margin: 22px 0 30px; max-width: 54ch; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; color: var(--ink-3); font-size: 14.5px; }
.hero-proof .fam { display: flex; }
.hero-proof .fam span {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2.5px solid var(--bg); margin-left: -8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13.5px;
}
.hero-proof .fam span:first-child { margin-left: 0; }

/* Phone + floating chips */
.hero-art { position: relative; display: flex; justify-content: center; }
.phone {
  width: min(320px, 78vw); aspect-ratio: 320 / 660;
  border-radius: 52px; padding: 11px;
  background: linear-gradient(165deg, #3A4A52, #14232A 45%, #23343C);
  box-shadow:
    0 2px 3px rgba(255, 255, 255, 0.28) inset,
    0 -2px 5px rgba(0, 0, 0, 0.5) inset,
    0 40px 90px rgba(20, 43, 51, 0.34);
  position: relative; z-index: 2;
  transform: rotate(2.2deg);
}
.phone-screen { width: 100%; height: 100%; border-radius: 42px; overflow: hidden; background: #EDF2F4; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone .island {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 27px; border-radius: 16px; background: #000; z-index: 4;
}
.hero-blob {
  position: absolute; inset: auto; left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 460px; height: 460px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(12, 166, 173, 0.16), rgba(255, 197, 61, 0.10) 55%, transparent 72%);
  filter: blur(6px);
}
.fchip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 15px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: 14px; font-weight: 600; white-space: nowrap;
  animation: float 5.5s ease-in-out infinite;
}
.fchip .ic {
  width: 28px; height: 28px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; flex: 0 0 auto;
}
.fchip small { display: block; font-size: 11.5px; font-weight: 700; line-height: 1.1; }
.fchip .earn { color: var(--mint); }
.fchip .cost { color: var(--coral); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Ticker ---------------------------------------------------- */
.ticker-wrap {
  overflow: hidden; padding: 6px 0 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker { display: flex; gap: 12px; width: max-content; animation: tick 36s linear infinite; }
.ticker:hover { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }
.tchip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 14.5px; font-weight: 600; white-space: nowrap;
}
.tchip .em { font-size: 17px; }
.tchip b.earn { color: var(--mint); font-weight: 700; }
.tchip b.cost { color: var(--coral); font-weight: 700; }

/* Trust strip ----------------------------------------------- */
.trust { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; padding: 34px 0 0; }
.trust span { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-2); font-size: 15px; font-weight: 500; }
.trust svg { color: var(--teal); flex: 0 0 auto; }

/* Sections -------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 110px) 0 0; }
.sec-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head .lede { margin-top: 16px; }

/* How it works ---------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px 30px; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .n {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800; margin-bottom: 18px;
}
.step:nth-child(1) .n { background: var(--teal-soft); color: var(--teal-deep); }
.step:nth-child(2) .n { background: var(--sun-soft); color: #A9760A; }
.step:nth-child(3) .n { background: var(--coral-soft); color: #D2453A; }
.step:nth-child(4) .n { background: var(--grape-soft); color: #5C4BD8; }
.step h3 { margin-bottom: 9px; }
.step p { color: var(--ink-2); font-size: 15.5px; }

/* Bento ----------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bcell {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex; flex-direction: column; gap: 10px;
}
.bcell:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bcell h3 { letter-spacing: -0.02em; }
.bcell p { color: var(--ink-2); font-size: 15.5px; max-width: 46ch; }
.bcell .art { margin-top: auto; padding-top: 18px; }
.b-lg { grid-column: span 3; }
.b-md { grid-column: span 2; }
.b-sm { grid-column: span 2; }
.bcell .cellic {
  width: 46px; height: 46px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; flex: 0 0 auto;
}

/* Mini visuals inside bento */
.mini-rows { display: flex; flex-direction: column; gap: 9px; }
.mini-row {
  display: flex; align-items: center; gap: 11px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px; font-size: 14.5px; font-weight: 600;
}
.mini-row .ic {
  width: 30px; height: 30px; border-radius: 9px; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px;
}
.mini-row .rate { margin-left: auto; font-weight: 700; font-size: 13.5px; }
.mini-row .rate.earn { color: var(--mint); }
.mini-row .rate.cost { color: var(--coral); }
.mini-bars { display: flex; align-items: flex-end; gap: 8px; height: 86px; }
.mini-bars i {
  flex: 1; border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--teal), var(--teal-deep));
  opacity: 0.45; min-height: 18%;
  animation: grow 1.2s var(--ease) both;
}
.mini-bars i:nth-child(6) { opacity: 1; }
@keyframes grow { from { transform: scaleY(0); transform-origin: bottom; } }
.quest-demo {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 16px; padding: 13px 16px;
}
.quest-demo .st {
  width: 34px; height: 34px; border-radius: 11px; background: var(--sun-soft);
  color: #A9760A; display: inline-flex; align-items: center; justify-content: center;
}
.quest-demo .tx b { display: block; font-size: 14.5px; letter-spacing: -0.01em; }
.quest-demo .tx small { color: var(--mint); font-weight: 700; font-size: 12.5px; }
.quest-demo .done {
  margin-left: auto; padding: 8px 14px; border-radius: 999px; border: 0;
  background: linear-gradient(135deg, #10B5BC, var(--teal-deep)); color: #fff;
  font-size: 13px; font-weight: 700;
}
.shield-demo {
  display: flex; align-items: center; gap: 13px;
  background: linear-gradient(135deg, #17313A, #0E2229);
  color: #fff; border-radius: 16px; padding: 15px 18px;
}
.shield-demo .lk {
  width: 38px; height: 38px; border-radius: 12px; background: rgba(255, 255, 255, 0.12);
  display: inline-flex; align-items: center; justify-content: center;
}
.shield-demo b { display: block; font-size: 14.5px; }
.shield-demo small { opacity: 0.62; font-size: 12.5px; }

/* App Store gallery ----------------------------------------- */
.shots-rail {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px 4px 22px;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 96%, transparent);
}
.shots-rail::-webkit-scrollbar { display: none; }
.shot-card {
  flex: 0 0 min(300px, 74vw); scroll-snap-align: start;
  border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: var(--card);
}
.shot-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shot-card img { width: 100%; height: auto; display: block; }

/* Two spaces ------------------------------------------------ */
.spaces-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 15px; margin-top: 28px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; color: var(--ink-2); }
.checklist li strong { color: var(--ink); }
.checklist .ck {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 9px; margin-top: 1px;
  background: var(--mint-soft); color: var(--mint);
  display: inline-flex; align-items: center; justify-content: center;
}

/* Testimonials ---------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote .stars { color: var(--sun); font-size: 16px; letter-spacing: 3px; }
.quote blockquote { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); }
.quote blockquote strong { color: var(--ink); }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}
.quote .who b { display: block; font-size: 15px; letter-spacing: -0.01em; }
.quote .who small { color: var(--ink-3); font-size: 13px; }

/* Pricing --------------------------------------------------- */
.ptoggle {
  display: inline-flex; gap: 4px; padding: 5px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-sm); margin-top: 26px;
}
.ptoggle button {
  padding: 10px 22px; border-radius: 999px; border: 0; background: transparent;
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  transition: all 0.2s;
}
.ptoggle button.on { background: var(--ink); color: #fff; }
.ptoggle .save {
  font-size: 11.5px; font-weight: 800; color: var(--teal-deep);
  background: var(--teal-soft); border-radius: 999px; padding: 2px 8px; margin-left: 6px;
}
.ptoggle button.on .save { background: rgba(255, 255, 255, 0.16); color: var(--sun); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 18px; justify-content: center; margin-top: 34px; }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 32px; text-align: left; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0; position: relative;
}
.plan.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 12px 44px rgba(12, 166, 173, 0.16);
}
.plan .ribbon {
  position: absolute; top: -13px; left: 30px;
  background: linear-gradient(135deg, #10B5BC, var(--teal-deep)); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.plan .pname { font-weight: 700; font-size: 17px; }
.plan .pprice { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 4px; }
.plan .amt { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; }
.plan .per { color: var(--ink-3); font-weight: 500; }
.plan .pnote { color: var(--ink-3); font-size: 14px; margin-bottom: 20px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 0 0 26px; }
.plan li { display: flex; gap: 10px; align-items: center; font-size: 15.5px; color: var(--ink-2); }
.plan li svg { color: var(--mint); flex: 0 0 auto; }
.plan .btn { margin-top: auto; width: 100%; }

/* FAQ ------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 21px 24px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .pm {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--line);
  position: relative; transition: transform 0.3s var(--ease), background 0.2s;
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--ink-2); border-radius: 2px;
}
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; transition: transform 0.3s; }
.faq-item.open .pm { transform: rotate(90deg); background: var(--teal-soft); border-color: transparent; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--ink-2); font-size: 15.5px; }

/* CTA band -------------------------------------------------- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  border-radius: 36px; padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 64px);
  background: linear-gradient(150deg, #0F3C43, #0A2930 55%, #123840);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.cta::before {
  width: 480px; height: 480px; left: -160px; bottom: -260px;
  background: radial-gradient(circle, rgba(12, 166, 173, 0.35), transparent 70%);
}
.cta::after {
  width: 420px; height: 420px; right: -140px; top: -230px;
  background: radial-gradient(circle, rgba(255, 197, 61, 0.28), transparent 70%);
}
.cta .mascot {
  width: 88px; height: 88px; border-radius: 26px; margin: 0 auto 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: float 5s ease-in-out infinite;
}
.cta h2 { color: #fff; max-width: 17ch; margin: 0 auto 14px; }
.cta .lede { color: rgba(255, 255, 255, 0.72); max-width: 46ch; margin: 0 auto 30px; }
.cta .badges { justify-content: center; position: relative; z-index: 2; }
.cta .store-badge { background: #fff; color: var(--ink); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); }
.cta .store-badge.soon { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
.cta small { display: block; margin-top: 22px; color: rgba(255, 255, 255, 0.5); font-size: 13.5px; position: relative; z-index: 2; }

/* Footer ---------------------------------------------------- */
.foot { margin-top: clamp(56px, 8vw, 100px); border-top: 1px solid var(--line); padding: 52px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot p { color: var(--ink-2); font-size: 15px; margin: 14px 0 20px; max-width: 30ch; }
.foot h4 {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
.foot-col a { display: block; color: var(--ink-2); font-size: 15px; padding: 5px 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--teal-deep); }
.soc { display: flex; gap: 10px; }
.soc a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 13px;
  background: var(--card); border: 1px solid var(--line); color: var(--ink-2);
  transition: all 0.22s;
  box-shadow: var(--shadow-sm);
}
.soc a:hover { color: var(--teal-deep); border-color: var(--teal); transform: translateY(-2px); }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--ink-3); font-size: 13.5px;
}

/* Doc pages (privacy / support) ----------------------------- */
.doc { max-width: 780px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) 24px 0; }
.doc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); padding: clamp(28px, 4.5vw, 56px);
}
.doc h1 { font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 8px; }
.doc .updated { color: var(--ink-3); font-size: 14.5px; margin-bottom: 30px; }
.doc h2 { font-size: clamp(23px, 2.6vw, 30px); margin: 40px 0 12px; }
.doc h3 { font-size: 18.5px; margin: 26px 0 8px; }
.doc p, .doc li { color: var(--ink-2); font-size: 16.5px; line-height: 1.72; }
.doc ul { padding-left: 24px; margin: 10px 0; }
.doc a.inline { color: var(--teal-deep); font-weight: 600; }
.doc .toc {
  background: var(--teal-soft); border: 1px solid rgba(12, 166, 173, 0.2);
  border-radius: var(--r-md); padding: 20px 24px; margin-bottom: 30px;
}
.doc .toc h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 10px; }
.doc .toc a { display: inline-block; color: var(--ink-2); font-size: 14.5px; padding: 3px 10px 3px 0; font-weight: 500; }
.doc .toc a:hover { color: var(--teal-deep); }
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 26px 0 10px; }
.help-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 20px;
}
.help-card h3 { margin: 12px 0 6px; font-size: 17px; }
.help-card p { font-size: 14px; line-height: 1.55; }
.help-card .hic {
  width: 40px; height: 40px; border-radius: 13px;
  background: var(--teal-soft); color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-card {
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--teal-soft), var(--sun-soft));
  border: 1px solid rgba(12, 166, 173, 0.2);
  border-radius: var(--r-lg); padding: 30px 32px; margin-top: 40px;
}
.contact-card h3 { margin-bottom: 5px; }
.contact-card p { font-size: 15px; }

/* Reveal ---------------------------------------------------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .ticker { animation: none; }
  .fchip, .cta .mascot { animation: none; }
  html { scroll-behavior: auto; }
}

/* Responsive ------------------------------------------------ */
@media (max-width: 1020px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-lg, .b-md, .b-sm { grid-column: span 1; }
  .quotes { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-grid, .spaces-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; margin-bottom: 6px; }
  .spaces-grid .hero-art { order: 0; }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; padding: 12px;
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(18px);
    border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav { position: sticky; }
  .nav-pill { position: relative; }
  .plans { grid-template-columns: 1fr; }
  .fchip { display: none; }
  .phone { transform: none; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .d1 { font-size: clamp(38px, 10vw, 46px); }
}
