/* ============================================================
   Atmosphere by Tabbled — landing page (dark, premium-minimal)
   Sora headings · Manrope body · charcoal base · blush as accent/glow only
   ============================================================ */

:root{
  /* brand */
  --blush:#FF7FA6;
  --blush-deep:#f0517f;
  --blush-soft:#ffd9e4;
  --blush-glow:rgba(255,127,166,.20);

  /* dark surfaces */
  --charcoal:#0F1120;
  --bg:#0B0D18;            /* page base, a touch deeper than charcoal */
  --surface:#13162A;       /* cards / raised */
  --surface-2:#191D33;     /* hover / inputs */
  --panel:#0E1020;         /* alt section band */

  /* ink on dark */
  --fg:#F7F7F8;
  --fg-soft:rgba(247,247,248,.74);
  --fg-mute:rgba(247,247,248,.52);
  --fg-faint:rgba(247,247,248,.34);

  /* lines */
  --line:rgba(247,247,248,.10);
  --line-2:rgba(247,247,248,.16);

  /* type */
  --font-head:'Sora', system-ui, sans-serif;
  --font-body:'Manrope', system-ui, sans-serif;

  /* radii */
  --r-sm:10px;
  --r-md:14px;
  --r-lg:22px;
  --r-pill:999px;

  --ease:cubic-bezier(.22,.61,.36,1);
  --wrap:1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0; background:var(--bg); color:var(--fg);
  font-family:var(--font-body); font-size:17px; line-height:1.6;
  font-weight:400; letter-spacing:-.005em;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:28px; }
@media (max-width:640px){ .wrap{ padding-inline:20px; } }

section{ position:relative; padding:120px 0; scroll-margin-top:84px; }
@media (max-width:860px){ section{ padding:84px 0; } }

/* ---------- type ---------- */
h1,h2,h3,h4{ font-family:var(--font-head); font-weight:600; line-height:1.05;
  letter-spacing:-.03em; margin:0; color:var(--fg); }
h1{ font-size:clamp(40px,6vw,74px); font-weight:600; }
h2{ font-size:clamp(30px,3.8vw,50px); }
h3{ font-size:clamp(20px,1.6vw,24px); letter-spacing:-.02em; }
p{ margin:0; }
.lead{ font-size:clamp(17px,1.45vw,20px); color:var(--fg-soft); line-height:1.62; }

.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-body); font-weight:600; font-size:12.5px;
  letter-spacing:.16em; text-transform:uppercase; color:var(--blush);
}
.eyebrow::before{ content:""; width:7px; height:7px; border-radius:50%;
  background:var(--blush); box-shadow:0 0 12px var(--blush); }

.accent{ color:var(--blush); }

.head{ max-width:640px; }
.head .eyebrow{ margin-bottom:20px; }
.head h2{ margin-bottom:0; }
.head .lead{ margin-top:20px; }
.head.center{ margin-inline:auto; text-align:center; }
.head.center .eyebrow{ justify-content:center; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--font-body); font-weight:600; font-size:15.5px; letter-spacing:-.01em;
  padding:14px 24px; border-radius:var(--r-pill); cursor:pointer; border:1px solid transparent;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
  white-space:nowrap;
}
.btn-primary{ background:var(--blush); color:#1a0a12; box-shadow:0 8px 30px rgba(255,127,166,.30); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 44px rgba(255,127,166,.46); }
.btn-ghost{ background:transparent; color:var(--fg); border-color:var(--line-2); }
.btn-ghost:hover{ border-color:var(--fg); transform:translateY(-2px); }
.btn-sm{ padding:10px 18px; font-size:14.5px; }
.btn .arw{ transition:transform .25s var(--ease); }
.btn.arrow:hover .arw{ transform:translateX(4px); }

/* ---------- nav (centered floating glass island) ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:80;
  display:flex; justify-content:center;
  padding:16px 20px;
}
.nav-in{
  width:100%; max-width:1080px; height:62px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:0 12px 0 18px;
  background:rgba(19,22,42,.5); border:1px solid var(--line-2); border-radius:var(--r-pill);
  backdrop-filter:blur(20px) saturate(1.4); -webkit-backdrop-filter:blur(20px) saturate(1.4);
  box-shadow:0 12px 40px rgba(0,0,0,.34);
  transition:background .35s, box-shadow .35s;
}
.nav.scrolled .nav-in{ background:rgba(11,13,24,.66); box-shadow:0 14px 46px rgba(0,0,0,.46); }
.brand{ display:inline-flex; align-items:center; gap:12px; }
.brand-logo{ width:38px; height:38px; flex:none; border-radius:10px; object-fit:cover;
  box-shadow:0 4px 16px rgba(255,127,166,.30); }
.brand .name{ font-family:var(--font-head); font-weight:600; font-size:17px; letter-spacing:-.02em;
  line-height:1.05; display:flex; flex-direction:column; }
.brand .name .sub{ font-family:var(--font-body); font-weight:500; font-size:11px;
  letter-spacing:.04em; color:var(--fg-mute); }

.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:15px; font-weight:500; color:var(--fg-soft); transition:color .2s; white-space:nowrap; }
.nav-links a:hover{ color:var(--fg); }
.nav-cta{ display:flex; align-items:center; gap:12px; }

.lang{ display:inline-flex; align-items:center; gap:2px; padding:3px;
  border:1px solid var(--line-2); border-radius:var(--r-pill); background:rgba(247,247,248,.05); }
.lang button{ font-size:12.5px; font-weight:600; letter-spacing:.03em; color:var(--fg-mute);
  background:transparent; border:0; cursor:pointer; padding:6px 11px; border-radius:var(--r-pill);
  line-height:1; transition:color .2s, background .2s; }
.lang button:hover{ color:var(--fg); }
.lang button.on{ color:#1a0a12; background:var(--blush); }

.nav-burger{ display:none; }
@media (max-width:920px){
  .nav-links{ display:none; }
  .nav-cta .btn-text{ display:none; }
}

/* ---------- hero ---------- */
.hero{ padding-top:150px; padding-bottom:120px; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; }
@media (max-width:960px){ .hero-grid{ grid-template-columns:1fr; gap:52px; text-align:center; } }

.hero h1{ font-size:clamp(42px,6.4vw,78px); line-height:1.0; letter-spacing:-.035em; }
.hero .sub{ margin-top:26px; max-width:30ch; font-size:clamp(17px,1.5vw,20.5px); color:var(--fg-soft); }
@media (max-width:960px){ .hero .sub{ margin-inline:auto; } }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-top:36px; }
@media (max-width:960px){ .hero-ctas{ justify-content:center; } }
.hero-micro{ display:inline-flex; align-items:center; gap:9px; margin-top:30px;
  font-size:13.5px; color:var(--fg-mute); }
.hero-micro .pulse{ width:8px; height:8px; border-radius:50%; background:var(--blush);
  box-shadow:0 0 0 0 rgba(255,127,166,.6); animation:pulse 2.4s infinite; }
@media (max-width:960px){ .hero-micro{ justify-content:center; } }

/* hero soundwave (rings/disc removed — wide, glowing equalizer) */
.hero-visual{ position:relative; display:grid; place-items:center; min-height:440px; }
.badge{ position:relative; width:min(520px,100%); aspect-ratio:1.35; display:grid; place-items:center; }
.badge .glow{ position:absolute; inset:-6%; border-radius:50%; z-index:0;
  background:radial-gradient(circle at 50% 50%, var(--blush-glow) 0%, transparent 64%);
  filter:blur(20px); animation:breathe 7s ease-in-out infinite; }
.badge canvas{ position:relative; z-index:2; width:100%; height:58%; }
.badge .nowplaying{ position:absolute; z-index:4; bottom:2%; left:50%; transform:translateX(-50%);
  display:inline-flex; align-items:center; gap:8px; white-space:nowrap;
  background:rgba(11,13,24,.8); border:1px solid var(--line-2); border-radius:var(--r-pill);
  padding:8px 14px; font-size:12.5px; color:var(--fg-soft); backdrop-filter:blur(8px); }
.badge .nowplaying b{ width:7px; height:7px; border-radius:50%; background:var(--blush);
  box-shadow:0 0 10px var(--blush); }
.badge .nowplaying .np-name{ color:var(--fg); font-weight:600; }

@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(255,127,166,.5);} 70%{ box-shadow:0 0 0 9px rgba(255,127,166,0);} 100%{ box-shadow:0 0 0 0 rgba(255,127,166,0);} }
@keyframes breathe{ 0%,100%{ transform:scale(1); opacity:.85;} 50%{ transform:scale(1.07); opacity:1;} }
@media (prefers-reduced-motion:reduce){ .badge .glow{ animation:none; } }

/* abstract phone-photo placeholder (real photo to be provided) */
.phone-motif{ display:grid; place-items:center; }
.photo-ph{ width:min(264px,76%); aspect-ratio:4/5; border-radius:var(--r-lg);
  border:1.5px dashed var(--line-2); background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,127,166,.06), transparent 60%), var(--surface);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px;
  color:var(--fg-mute); text-align:center; }
.photo-ph .ph-cap{ font-size:13.5px; line-height:1.4; letter-spacing:.01em; }

/* ---------- the habit (dark, deeper panel) ---------- */
.habit{ background:var(--panel); }
.habit-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:64px; align-items:center; }
@media (max-width:960px){ .habit-grid{ grid-template-columns:1fr; gap:44px; } }
.habit h2{ margin-top:20px; }
.habit .lead{ margin-top:22px; max-width:46ch; }
.pull{ margin-top:34px; padding-left:22px; border-left:2px solid var(--blush);
  font-family:var(--font-head); font-weight:500; font-size:clamp(22px,2.4vw,30px);
  line-height:1.2; letter-spacing:-.02em; color:var(--fg); }

/* abstract muted-phone motif (NOT a streaming UI) */
.phone-motif{ position:relative; display:grid; place-items:center; }
.phone{ width:min(248px,72%); aspect-ratio:9/18.5; border-radius:34px; position:relative;
  background:linear-gradient(165deg,#15182b,#0d0f1d); border:1px solid var(--line-2);
  box-shadow:0 40px 90px rgba(0,0,0,.55); padding:20px 16px; display:flex; flex-direction:column; }
.phone::before{ content:""; position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width:52px; height:5px; border-radius:99px; background:var(--line-2); }
.phone .scr{ margin-top:26px; flex:1; border-radius:20px; background:rgba(247,247,248,.03);
  border:1px solid var(--line); display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:18px; padding:18px; filter:grayscale(1); opacity:.9; }
.phone .pdisc{ width:84px; height:84px; border-radius:50%;
  background:radial-gradient(circle at 38% 34%, rgba(247,247,248,.16), rgba(247,247,248,.05));
  border:1px solid var(--line-2); }
.phone .pbars{ display:flex; align-items:flex-end; gap:4px; height:30px; }
.phone .pbars i{ width:4px; border-radius:2px; background:var(--fg-faint); }
.phone .pline{ width:70%; height:8px; border-radius:4px; background:var(--line-2); }
.phone .pline.s{ width:46%; }
.phone .ptag{ position:absolute; top:34%; right:-14px; background:var(--surface);
  border:1px solid var(--line-2); border-radius:var(--r-pill); font-size:11px; color:var(--fg-mute);
  padding:7px 12px; box-shadow:0 12px 30px rgba(0,0,0,.4); }
.phone .ptag.b{ top:auto; bottom:30%; left:-14px; right:auto; }

/* ---------- how it works ---------- */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:60px; }
@media (max-width:860px){ .steps{ grid-template-columns:1fr; gap:18px; } }
.step{ position:relative; padding:34px 30px; border-radius:var(--r-lg);
  background:var(--surface); border:1px solid var(--line); overflow:hidden;
  transition:transform .3s var(--ease), border-color .3s, background .3s; }
.step:hover{ transform:translateY(-4px); border-color:var(--line-2); background:var(--surface-2); }
.step .num{ font-family:var(--font-head); font-weight:600; font-size:14px; letter-spacing:.06em;
  color:var(--blush); }
.step .ic{ width:46px; height:46px; border-radius:13px; display:grid; place-items:center;
  background:rgba(255,127,166,.10); border:1px solid rgba(255,127,166,.22); color:var(--blush);
  margin:18px 0 20px; }
.step h3{ margin-bottom:10px; }
.step p{ color:var(--fg-soft); font-size:15.5px; }
.step .line{ position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--blush);
  transition:width .5s var(--ease); }
.step:hover .line{ width:100%; }

/* ---------- benefits ---------- */
.bcards{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:58px; }
@media (max-width:760px){ .bcards{ grid-template-columns:1fr; } }
.bcard{ padding:34px 32px; border-radius:var(--r-lg); background:var(--surface);
  border:1px solid var(--line); transition:transform .3s var(--ease), border-color .3s; }
.bcard:hover{ transform:translateY(-4px); border-color:rgba(255,127,166,.32); }
.bcard .bn{ font-family:var(--font-head); font-weight:600; font-size:13px; color:var(--fg-faint);
  letter-spacing:.05em; }
.bcard .ic{ width:48px; height:48px; border-radius:13px; display:grid; place-items:center;
  background:rgba(255,127,166,.10); border:1px solid rgba(255,127,166,.22); color:var(--blush);
  margin:14px 0 20px; }
.bcard h3{ margin-bottom:10px; }
.bcard p{ color:var(--fg-soft); font-size:15.5px; }

/* ---------- made for you ---------- */
.made-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media (max-width:960px){ .made-grid{ grid-template-columns:1fr; gap:42px; } }
.made .lead{ margin-top:22px; max-width:44ch; }
.made-demo{ border-radius:var(--r-lg); background:var(--surface); border:1px solid var(--line);
  padding:26px; box-shadow:0 30px 70px rgba(0,0,0,.4); }
.made-demo .mlabel{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--fg-mute); }
.made-demo .mprompt{ margin-top:14px; padding:16px 18px; border-radius:var(--r-md);
  background:var(--bg); border:1px solid var(--line-2); color:var(--fg); font-size:16px; }
.made-demo .mprompt .cur{ display:inline-block; width:2px; height:18px; background:var(--blush);
  vertical-align:-3px; margin-left:2px; animation:blink 1.1s steps(1) infinite; }
@keyframes blink{ 50%{ opacity:0; } }
.made-demo .mchips{ display:flex; flex-wrap:wrap; gap:9px; margin-top:18px; }
.made-demo .mchip{ font-size:13px; padding:8px 13px; border-radius:var(--r-pill);
  background:var(--surface-2); border:1px solid var(--line-2); color:var(--fg-soft); }
.made-demo .mchip.on{ background:rgba(255,127,166,.12); border-color:rgba(255,127,166,.4); color:var(--blush); }
.made-demo .mset{ margin-top:20px; display:flex; align-items:center; gap:14px;
  padding-top:18px; border-top:1px solid var(--line); }
.made-demo .mwave{ display:flex; align-items:flex-end; gap:3px; height:30px; }
.made-demo .mwave i{ width:3.5px; border-radius:2px; background:linear-gradient(180deg,var(--blush-soft),var(--blush)); }
.made-demo .mset .mtxt b{ color:var(--fg); font-weight:600; }
.made-demo .mset .mtxt span{ display:block; color:var(--fg-mute); font-size:13px; }

/* ---------- value / legal (white framed panel) ---------- */
.value-frame{
  /* flip local tokens to light so children render dark-on-white */
  --fg:#0F1120; --fg-soft:rgba(15,17,32,.72); --fg-mute:rgba(15,17,32,.52); --fg-faint:rgba(15,17,32,.34);
  --surface:#ffffff; --surface-2:#f1f1f4; --panel:#f7f7f8;
  --line:rgba(15,17,32,.10); --line-2:rgba(15,17,32,.16);
  background:#ffffff; color:#0F1120;
  border:1px solid rgba(15,17,32,.08); border-radius:var(--r-lg);
  padding:clamp(34px,4vw,64px);
  box-shadow:0 30px 80px rgba(0,0,0,.4);
}
.value-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:960px){ .value-grid{ grid-template-columns:1fr; gap:40px; } }
.value-frame .value-copy h2{ color:#0F1120; }
.value .lead{ margin-top:22px; }
.vcompare{ display:grid; gap:16px; }
.vcol{ border-radius:var(--r-lg); padding:26px 26px; border:1px solid var(--line); background:var(--surface); }
.vcol.bad{ background:var(--panel); }
.vcol.good{ border-color:rgba(255,127,166,.34); background:linear-gradient(180deg, rgba(255,127,166,.06), var(--surface)); }
.vcol .vh{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:600;
  font-size:17px; }
.vcol .vh .dot{ width:9px; height:9px; border-radius:50%; }
.vcol.bad .vh .dot{ background:var(--fg-faint); }
.vcol.good .vh .dot{ background:var(--blush); box-shadow:0 0 10px var(--blush); }
.vcol p{ margin-top:10px; color:var(--fg-soft); font-size:15px; }
.disclaimer{ margin-top:26px; font-size:13px; line-height:1.6; color:var(--fg-mute); max-width:60ch; }

/* ---------- memberships ---------- */
.mcards{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:58px; align-items:stretch; }
@media (max-width:1040px){ .mcards{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .mcards{ grid-template-columns:1fr; } }
.mcard{ position:relative; display:flex; flex-direction:column; padding:30px 26px;
  border-radius:var(--r-lg); background:var(--surface); border:1px solid var(--line);
  transition:transform .3s var(--ease), border-color .3s; }
.mcard:hover{ transform:translateY(-5px); border-color:var(--line-2); }
.mcard.popular{ border-color:rgba(255,127,166,.45); background:linear-gradient(180deg, rgba(255,127,166,.07), var(--surface)); box-shadow:0 24px 60px rgba(255,127,166,.12); }
.mcard .flag{ position:absolute; top:-11px; left:26px; background:var(--blush); color:#1a0a12;
  font-size:11.5px; font-weight:700; letter-spacing:.04em; padding:5px 12px; border-radius:var(--r-pill);
  box-shadow:0 6px 18px rgba(255,127,166,.4); }
.mcard .mname{ font-family:var(--font-head); font-weight:600; font-size:22px; letter-spacing:-.02em; }
.mcard .mtag{ margin-top:7px; font-size:12.5px; letter-spacing:.04em; color:var(--fg-mute);
  text-transform:uppercase; }
.mcard .mdesc{ margin-top:18px; color:var(--fg-soft); font-size:15px; flex:1; }
.mcard .mlink{ margin-top:22px; display:inline-flex; align-items:center; gap:8px; font-weight:600;
  font-size:14.5px; color:var(--fg); }
.mcard.popular .mlink{ color:var(--blush); }
.mcard .mlink .arw{ transition:transform .25s var(--ease); }
.mcard:hover .mlink .arw{ transform:translateX(4px); }

/* ---------- reference ---------- */
.case-card{ display:grid; grid-template-columns:1.05fr .95fr; gap:0; margin-top:54px;
  border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line); background:var(--surface); }
@media (max-width:860px){ .case-card{ grid-template-columns:1fr; } }
.case-l{ padding:44px; }
.case-l .clabel{ display:inline-flex; align-items:center; gap:9px; font-size:12.5px;
  letter-spacing:.06em; color:var(--fg-mute); }
.case-l .clabel .prog{ background:rgba(255,127,166,.14); border:1px solid rgba(255,127,166,.3);
  color:var(--blush); padding:4px 10px; border-radius:var(--r-pill); font-weight:600; letter-spacing:.02em; }
.case-l h3{ margin:18px 0 0; font-size:clamp(22px,2.4vw,30px); }
.case-l .quote{ margin-top:22px; font-size:17px; color:var(--fg-soft); line-height:1.6; font-style:italic; }
.case-r{ background:var(--panel); border-left:1px solid var(--line); padding:44px; display:flex;
  flex-direction:column; justify-content:center; gap:18px; }
.ba{ display:flex; gap:16px; align-items:stretch; }
.ba .bacol{ flex:1; padding:18px; border-radius:var(--r-md); background:var(--surface); border:1px solid var(--line); }
.ba .bacol.after{ border-color:rgba(255,127,166,.3); }
.ba .bak{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--fg-mute); }
.ba .bav{ margin-top:8px; font-size:14.5px; color:var(--fg); line-height:1.45; }
.ba .arrow-mid{ display:grid; place-items:center; color:var(--fg-faint); }
@media (max-width:520px){ .ba{ flex-direction:column; } .ba .arrow-mid{ transform:rotate(90deg); } }

/* ---------- final CTA / form ---------- */
.cta{ background:var(--panel); }
.cta-grid{ display:grid; grid-template-columns:.92fr 1.08fr; gap:60px; align-items:start; }
@media (max-width:960px){ .cta-grid{ grid-template-columns:1fr; gap:40px; } }
.cta .lead{ margin-top:22px; max-width:40ch; }
.cta-form{ border-radius:var(--r-lg); background:var(--surface); border:1px solid var(--line);
  padding:34px; box-shadow:0 30px 80px rgba(0,0,0,.45); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:560px){ .field-row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.field label{ font-size:13px; font-weight:600; color:var(--fg-soft); }
.field label .opt{ color:var(--fg-faint); font-weight:500; }
.field input, .field select, .field textarea{
  font-family:var(--font-body); font-size:15px; color:var(--fg);
  background:var(--bg); border:1px solid var(--line-2); border-radius:var(--r-md);
  padding:13px 15px; outline:none; transition:border-color .2s, box-shadow .2s; width:100%;
}
.field textarea{ resize:vertical; min-height:88px; }
.field select{ appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F7F7F8' stroke-opacity='0.5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; padding-right:42px; }
.field input::placeholder, .field textarea::placeholder{ color:var(--fg-faint); }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--blush); box-shadow:0 0 0 3px rgba(255,127,166,.18); }
.cta-form .btn-primary{ width:100%; margin-top:6px; }
.cta-form .btn-primary[disabled]{ opacity:.6; cursor:default; }
.form-error{ margin:0 0 14px; padding:11px 14px; font-size:13.5px; line-height:1.5;
  color:#ffb4b4; background:rgba(255,86,86,.10); border:1px solid rgba(255,86,86,.32);
  border-radius:var(--r-md); text-align:center; }
.form-note{ margin-top:14px; font-size:13px; color:var(--fg-mute); text-align:center; }

.form-success{ text-align:center; padding:26px 10px; }
.form-success .chk{ width:62px; height:62px; border-radius:50%; margin:0 auto 22px;
  display:grid; place-items:center; background:rgba(255,127,166,.12); border:1px solid rgba(255,127,166,.34);
  color:var(--blush); }
.form-success h3{ font-size:24px; margin-bottom:12px; }
.form-success p{ color:var(--fg-soft); max-width:34ch; margin-inline:auto; }

/* ---------- footer ---------- */
.foot{ border-top:1px solid var(--line); padding:74px 0 40px; }
.foot-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; }
@media (max-width:860px){ .foot-grid{ grid-template-columns:1fr 1fr; gap:34px; } }
@media (max-width:520px){ .foot-grid{ grid-template-columns:1fr; } }
.foot .brand{ margin-bottom:18px; }
.foot .ftag{ color:var(--fg-mute); font-size:14.5px; line-height:1.6; max-width:34ch; }
.foot .fcol h4{ font-family:var(--font-body); font-weight:700; font-size:13px; letter-spacing:.05em;
  text-transform:uppercase; color:var(--fg-mute); margin-bottom:16px; }
.foot .fcol a{ display:block; font-size:15px; color:var(--fg-soft); padding:6px 0; transition:color .2s; }
.foot .fcol a:hover{ color:var(--blush); }
.foot-bottom{ margin-top:54px; padding-top:24px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:13.5px; color:var(--fg-mute); }

/* ---------- reveal on scroll ----------
   Elements animate in as they enter the viewport (JS adds .in via
   IntersectionObserver). Hidden state only applies when JS is active
   (.js-reveal on <html>), so content is never lost without JS. */
.js-reveal .reveal{ opacity:0; transform:translateY(30px);
  transition:opacity .8s var(--ease), transform .8s var(--ease); }
.js-reveal .reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.10s; }
.reveal.d2{ transition-delay:.20s; }
.reveal.d3{ transition-delay:.30s; }
.reveal.d4{ transition-delay:.40s; }
@media (prefers-reduced-motion:reduce){
  .js-reveal .reveal{ opacity:1; transform:none; transition:none; }
}
