/* ============================================================
   DrillUp | Home design system
   Palette extracted from the DrillUp product proposal (PDF).
   Concept: warm paper + builder blocks. "Snap blocks into lessons."
   Display : Space Grotesk (structured / engineering)
   Body    : Nunito (friendly / education)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand (from proposal PDF) */
  --teal-deep: #0F6A72;   /* buttons / strong text on teal */
  --teal-700: #1F8E96;
  --teal-500: #3EC1C9;
  --teal-300: #7FD8DD;
  --teal-100: #E6F7F7;

  --green-700: #2F7A47;
  --green-600: #3B8551;
  --green-500: #54AE6C;
  --green-300: #9AD3A9;
  --green-100: #EBF5EC;

  --blue-700: #2A639B;
  --blue-500: #3F86C9;
  --blue-100: #E9F1FA;

  --gold-700: #8A6A12;
  --gold-500: #F3C34B;
  --gold-300: #F6D67C;
  --gold-100: #FCF2DC;

  --rose-700: #9C4338;
  --rose-500: #B4564F;
  --rose-100: #FDEBEB;

  /* Paper (warm neutrals from PDF) */
  --paper: #F7F6F2;
  --paper-2: #EFEEE9;
  --paper-3: #E5E3DC;
  --line: #DCDAD3;
  --line-strong: #B9B6AC;

  --card: #FFFFFF;
  --ink: #3A3A3A;        /* PDF text gray */
  --ink-2: #4A4B50;
  --muted: #71797F;      /* PDF secondary */

  /* Shape: block-ish, structured, not full-pill everywhere */
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 9px;
  --r-pill: 999px;

  /* Tinted block shadows (not pure black) */
  --sh-soft: 0 1px 2px rgba(23, 35, 38, 0.06), 0 18px 34px -22px rgba(15, 106, 117, 0.28);
  --sh-lift: 0 2px 4px rgba(23, 35, 38, 0.06), 0 26px 50px -24px rgba(15, 106, 117, 0.38);

  /* Fonts */
  --f-display: 'Space Grotesk', 'Nunito', system-ui, sans-serif;
  --f-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--teal-500); color: #fff; }

h1, h2, h3 {
  font-family: var(--f-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

/* ---------------- layout ---------------- */
.shell { max-width: 1160px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding: clamp(64px, 8vw, 104px) 0; }

.center { text-align: center; align-self: center; }

/* ---------------- typography helpers ---------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-100);
  border: 1px solid var(--teal-300);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-500); }

.h-display { font-size: clamp(2.1rem, 4.6vw, 3.3rem); line-height: 1.03; }
.lede { margin: 18px auto 0; max-width: 58ch; font-size: clamp(1.02rem, 1.4vw, 1.14rem); color: var(--ink-2); }

/* STUD marks — the signature "brick" detail */
.studs {
  display: flex;
  gap: 6px;
  padding-bottom: 14px;
}
.studs i {
  width: 12px; height: 12px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.16;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.14);
}

/* ---------------- navigation ---------------- */
.nav-wrap { position: sticky; top: 0; z-index: 50; padding-top: 2px; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 0 clamp(14px, 2.4vw, 28px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%;
  background: rgba(247, 246, 242, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  min-height: 66px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--teal-deep); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 3px 0 var(--teal-700), 0 4px 8px rgba(15,106,117,0.25);
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-name { font-family: var(--f-display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; }
.brand-name b { color: var(--teal-700); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none; color: var(--ink-2);
  font-weight: 700; font-size: 0.95rem;
  padding: 8px 13px; border-radius: var(--r-pill);
  transition: background .18s, color .18s;
}
.nav-links a:hover { background: #fff; color: var(--teal-deep); }
.nav-cta { margin-left: 4px; }
.nav-toggle {
  display: none;
  background: var(--card); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); color: var(--ink);
  width: 42px; height: 42px; cursor: pointer;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 4px 18px; border-bottom: 1px solid var(--line);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 14px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 700; color: var(--ink-2);
}
.nav-mobile a:hover { background: #fff; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.98rem; line-height: 1;
  padding: 14px 22px; border-radius: var(--r-md);
  text-decoration: none; cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--teal-deep); color: #fff;
  border-color: var(--teal-700);
  box-shadow: 0 3px 0 var(--teal-700), var(--sh-soft);
}
.btn-primary:hover { background: #0B5962; transform: translateY(-2px); box-shadow: 0 5px 0 var(--teal-700), var(--sh-lift); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 0 var(--teal-700); }

.btn-ghost {
  background: rgba(255,255,255,0.7); color: var(--ink);
  border-color: var(--line-strong); box-shadow: 0 3px 0 var(--line);
}
.btn-ghost:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-2px); box-shadow: 0 5px 0 var(--line), var(--sh-soft); }
.btn-ghost:active { transform: translateY(0); box-shadow: 0 2px 0 var(--line); }

.btn-gold {
  background: var(--gold-500); color: var(--gold-700);
  border-color: var(--gold-300); box-shadow: 0 3px 0 #d4a52d, var(--sh-soft);
  font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); background: #F7CB56; box-shadow: 0 5px 0 #d4a52d, var(--sh-lift); }

.btn-sm { padding: 9px 16px; font-size: 0.9rem; border-radius: var(--r-sm); }

/* ---------------- hero ---------------- */
.hero { position: relative; overflow: hidden; padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 7vw, 84px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { margin-top: 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--teal-deep);
  background: linear-gradient(transparent 62%, var(--teal-100) 62%);
  padding: 0 2px;
}
.hero .lead { margin-left: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; align-items: center; }
.hero-note { margin: 18px 0 0; font-size: 0.92rem; color: var(--muted); font-weight: 600; }
.hero-note strong { color: var(--ink-2); }

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

/* ---------- signature visual: the block tray ---------- */
.tray {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--sh-lift);
  padding: 18px;
  transform: rotate(0.5deg);
}
.tray::before {
  content: ""; position: absolute; inset: -6px; z-index: -4;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12px 10px, var(--teal-300) 3px, transparent 4px),
    radial-gradient(circle at 60px 10px, var(--green-300) 3px, transparent 4px),
    radial-gradient(circle at 108px 10px, var(--gold-300) 3px, transparent 4px);
  background-size: 54px 20px;
  opacity: 0.9;
}
.tray__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 4px 6px 14px; }
.tray__title { font-family: var(--f-display); font-weight: 600; font-size: 0.95rem; }
.tray__head .tag {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-700); background: var(--green-100); border-radius: var(--r-pill); padding: 3px 9px;
}
/* top-stud row on tray */
.tray__studs { display: flex; gap: 6px; padding: 0 8px 12px; }
.tray__studs i { width: 14px; height: 9px; border-radius: 3px 3px 2px 2px; background: var(--paper-2); box-shadow: inset 0 -2px 0 rgba(0,0,0,0.06); }

.brick-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 12px; }
.brick {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.9rem;
  color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 11px;
  box-shadow: 0 2px 0 var(--line);
}
.brick svg { width: 15px; height: 15px; }

/* the lesson plate that blocks snap into */
.plate {
  background: var(--paper-2);
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 14px;
}
.plate__label { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.plate__blocks {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.plate__block {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.85rem;
  border-radius: 9px; padding: 8px 11px; color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,0.14), 0 4px 10px rgba(0,0,0,0.08);
}
.plate__block svg { width: 14px; height: 14px; }
.pb-green { background: var(--green-600); }
.pb-teal { background: var(--teal-700); }
.pb-blue { background: var(--blue-500); }
.pb-gold { background: var(--gold-500); color: var(--gold-700); }
.pb-rose { background: var(--rose-500); }

.tray__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 6px 2px; }
.tray__foot .conn { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.tray__foot .mini-btn {
  font-family: var(--f-display); font-weight: 600; font-size: 0.82rem;
  color: #fff; background: var(--teal-deep); border-radius: 8px; padding: 8px 13px;
  box-shadow: 0 2px 0 var(--teal-700); white-space: nowrap;
}

/* floating mini cards around tray */
.float-flag {
  position: absolute; z-index: 3;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; box-shadow: var(--sh-lift);
  padding: 9px 12px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.78rem;
  display: flex; align-items: center; gap: 8px;
}
.float-flag .pill { width: 8px; height: 8px; border-radius: 50%; }
@media (max-width: 860px) { .float-flag { display: none; } }

/* ---------------- audience strip ---------------- */
.audience {
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 18px 0;
}
.audience__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 26px; }
.audience__label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.audience__item { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink-2); font-size: 0.98rem; }
.audience__item .ico {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  display: grid; place-items: center;
}
.audience__item .ico svg { width: 16px; height: 16px; }

/* ---------------- stats ---------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--sh-soft); }
.stat { background: var(--card); padding: clamp(22px, 3vw, 34px) 20px; text-align: center; }
.stat .num { font-family: var(--f-display); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; line-height: 1; }
.stat .num.t { color: var(--teal-700); }
.stat .num.g { color: var(--green-600); }
.stat .num.bl { color: var(--blue-500); }
.stat .num.gd { color: var(--gold-700); }
.stat .lbl { margin-top: 9px; font-size: 0.86rem; font-weight: 700; color: var(--muted); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.1; }
.h2-display { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.h2a {
  color: var(--teal-deep);
  text-decoration: underline; text-decoration-thickness: 6px; text-underline-offset: 5px;
}
.wotd-band .h2a { color: var(--gold-300); text-decoration-color: rgba(243,195,75,0.45); }
.lead { margin: 18px 0 0; max-width: 58ch; font-size: clamp(1.02rem, 1.4vw, 1.14rem); color: var(--ink-2); text-align: left; }
.lede { margin-top: 14px; color: var(--ink-2); font-size: 1.05rem; }
.text-soft { color: var(--muted); }
.font-display { font-family: var(--f-display); }
.font-playful { font-style: normal; font-weight: 700; }

/* ---------------- section head ---------------- */
.sec-head { max-width: 640px; margin: 0 auto clamp(38px, 5vw, 54px); }
.sec-head .lede { margin-top: 14px; color: var(--ink-2); font-size: 1.05rem; }

/* ---------------- studios (bento) ---------------- */
.studios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.studio {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(20px, 2.6vw, 28px);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--sh-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.studio:hover { transform: translateY(-5px); box-shadow: var(--sh-lift); border-color: var(--studio-line, var(--line-strong)); }
.studio .studs { color: var(--studio-tint, var(--line)); }
.studio__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.studio__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--studio-bg, var(--teal-100)); color: var(--studio-tint, var(--teal-700)); }
.studio__icon svg { width: 23px; height: 23px; }
.studio__phase { font-family: var(--f-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); }
.studio h3 { font-size: 1.18rem; }
.studio p { margin: 0; font-size: 0.94rem; color: var(--ink-2); }
.studio ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.studio ul li {
  font-size: 0.76rem; font-weight: 700;
  background: var(--studio-soft, var(--teal-100)); color: var(--studio-tint, var(--teal-700));
  border-radius: var(--r-pill); padding: 4px 10px;
}
.studio .go { margin-top: auto; font-family: var(--f-display); font-weight: 600; font-size: 0.88rem; color: var(--studio-tint, var(--teal-700)); text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }

/* color variants */
.st-teal  { --studio-tint: var(--teal-700); --studio-soft: var(--teal-100); --studio-line: var(--teal-300); }
.st-green { --studio-tint: var(--green-600); --studio-soft: var(--green-100); --studio-line: var(--green-300); }
.st-blue  { --studio-tint: var(--blue-700); --studio-soft: var(--blue-100); --studio-line: #8FBBE0; }
.st-gold  { --studio-tint: var(--gold-700); --studio-soft: var(--gold-100); --studio-line: var(--gold-300); }
.st-rose  { --studio-tint: var(--rose-700); --studio-soft: var(--rose-100); --studio-line: #E3B3AD; }
@media (max-width: 900px) { .studios { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .studios { grid-template-columns: 1fr; } }

/* ---------------- builder (split) ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.split__copy h2 em { font-style: normal; color: var(--teal-deep); text-decoration: underline; text-decoration-color: var(--gold-300); text-underline-offset: 5px; text-decoration-thickness: 6px; }
.split__copy p { margin: 18px 0 22px; color: var(--ink-2); font-size: 1.05rem; }
.builder-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.builder-list li { display: flex; gap: 14px; align-items: flex-start; }
.builder-list .n {
  width: 30px; height: 30px; border-radius: 8px; flex: 0 0 30px;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 0.9rem;
  background: var(--teal-100); color: var(--teal-deep);
}
.builder-list small { display: block; color: var(--muted); font-weight: 600; font-size: 0.9rem; }

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

/* ---------------- pillars ---------------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(22px, 2.8vw, 30px);
  box-shadow: var(--sh-soft);
}
.pillar .studs i { background: var(--paper-3); }
.pillar .p-ico { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; }
.pillar .p-ico svg { width: 21px; height: 21px; }
.pillar h3 { font-size: 1.14rem; }
.pillar p { margin: 10px 0 0; color: var(--ink-2); font-size: 0.96rem; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* ---------------- word of the day / quote band ---------------- */
.wotd-band { background: var(--teal-deep); color: #fff; }
.wotd-band .eyebrow { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: var(--teal-300); }
.wotd-band .eyebrow .dot { background: var(--teal-300); }
.wotd-band h2 { color: #fff; }
.wotd-band .h2w { color: #cfeff0; }
.wotd-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
#wotd .clay {
  background: #fff; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px; padding: 26px;
}
#wotd .chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 800;
  border-radius: var(--r-pill); padding: 4px 11px;
  background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-2);
}
#wotd .chip-indigo { background: var(--teal-100); border-color: var(--teal-300); color: var(--teal-700); }
#wotd .chip-amber { background: var(--gold-100); color: var(--gold-700); border: 1px solid var(--gold-300); }
#wotd .btn-clay { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 600; border-radius: var(--r-sm); padding: 10px 16px; font-size: 0.9rem; text-decoration: none; }
#wotd .btn-primary { background: var(--teal-deep); color: #fff; }
#wotd .btn-white { background: #fff; color: var(--ink); border: 1px solid var(--line-strong); }
#wotd .btn-cta { background: var(--teal-deep); color: #fff; border: 1px solid var(--teal-700); }
#wotd .say-btn { display: inline-flex; align-items: center; gap: 7px; }
#wotd .note-amber { background: var(--gold-100); border: 1px solid var(--gold-300); border-radius: var(--r-sm); color: var(--gold-700); padding: 10px 14px; }
@media (max-width: 860px) { .wotd-inner { grid-template-columns: 1fr; } }

/* ---------------- teachers band ---------------- */
.teachers {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(24px, 5vw, 54px);
}
.teachers ul { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.teachers ul li { display: flex; gap: 10px; align-items: center; font-weight: 700; color: var(--ink-2); }
.teachers ul li svg { width: 18px; height: 18px; color: var(--teal-700); flex: 0 0 auto; }
@media (max-width: 820px) { .teachers { grid-template-columns: 1fr; } .teachers ul { grid-template-columns: 1fr; } }

/* ---------------- final CTA ---------------- */
.cta-final {
  position: relative; overflow: hidden;
  background: var(--teal-700);
  border-radius: 22px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center; color: #fff;
  box-shadow: var(--sh-lift);
}
.cta-final::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22px 90px, rgba(255,255,255,0.5) 3px, transparent 4px);
  background-size: 26px 26px;
  opacity: 0.5; pointer-events: none;
}
.cta-final .eyebrow { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: var(--teal-300); }
.cta-final h2 { color: #fff; max-width: 640px; margin: 18px auto 0; }
.cta-final p { color: #d5f1f2; max-width: 46ch; margin: 16px auto 0; }
.cta-final form { max-width: 460px; margin: 28px auto 0; text-align: left; }
.cta-final label { font-family: var(--f-display); font-weight: 600; font-size: 0.9rem; color: #fff; }
.cta-final .row { display: flex; gap: 10px; margin-top: 10px; }
.cta-final input {
  flex: 1; padding: 14px 16px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.96);
  color: var(--ink); font: inherit; font-weight: 600;
}
.cta-final input:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 2px; }
.cta-final .btn { border-radius: var(--r-md); }
.cta-final .count { margin-top: 16px; color: #d5f1f2; font-size: 0.95rem; }
.cta-final .count strong { color: #fff; }
.store-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.store-chips span {
  font-size: 0.82rem; font-weight: 700; color: #d5f1f2;
  border: 1px solid rgba(255,255,255,0.3); padding: 7px 13px; border-radius: var(--r-pill);
}

/* ---------------- footer ---------------- */
.footer { border-top: 1px solid var(--line); margin-top: clamp(48px, 7vw, 90px); background: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: clamp(40px, 5vw, 60px) 0; }
.footer__brand { max-width: 260px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; margin-top: 14px; }
.footer h4 { font-family: var(--f-display); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { text-decoration: none; color: var(--ink-2); font-size: 0.95rem; font-weight: 600; }
.footer ul a:hover { color: var(--teal-deep); }
.footer__bottom { border-top: 1px solid var(--line); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; color: var(--muted); font-size: 0.88rem; font-weight: 600; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------------- reveal ---------------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.rv.in { opacity: 1; transform: none; }
.rv-1 { transition-delay: .08s; }
.rv-2 { transition-delay: .16s; }
.rv-3 { transition-delay: .24s; }

:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 3px; }
.skip { position: absolute; left: -9999px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}