/* ==========================================================================
   PARSANA — Premium Wellness-Tech Landing
   Tokens, base, components
   ========================================================================== */

:root {
  --orange: #E84E1B;
  --orange-soft: #FF6132;
  --orange-rgb: 232, 78, 27;
  --teal: #1BA6B2;
  --teal-soft: #2BD0DE;
  --black: #0B0B0B;
  --ink: #0B0B0B;
  --white: #FFFFFF;
  --sky: #DFF6FF;

  --ink-60: rgba(11,11,11,0.6);
  --ink-40: rgba(11,11,11,0.4);
  --ink-12: rgba(11,11,11,0.12);
  --ink-08: rgba(11,11,11,0.08);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-12: rgba(255,255,255,0.12);
  --white-08: rgba(255,255,255,0.08);
  --white-04: rgba(255,255,255,0.04);

  --font-display: "Clash Display", "Satoshi", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --nav-h: 80px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html, body { margin: 0; padding: 0; background: var(--white); color: var(--ink); font-family: var(--font-body); font-weight: 400; }
body { overflow-x: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection            { background: var(--orange); color: #fff; }
:focus                 { outline: 2px solid var(--orange); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible         { outline: 2px solid var(--orange); outline-offset: 3px; }
input, select, textarea, button { accent-color: var(--orange); }
::-webkit-scrollbar              { width: 6px; height: 6px; }
::-webkit-scrollbar-track        { background: transparent; }
::-webkit-scrollbar-thumb        { background: rgba(11,11,11,0.12); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover  { background: var(--orange); }

/* ===== Type ===== */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}
.eyebrow.center::after {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}

/* ===== Container ===== */
.container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .container { padding: 0 24px; } }
@media (max-width: 480px) { .container { padding: 0 20px; } }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .55s var(--ease-out), backdrop-filter .55s var(--ease-out), border-color .55s var(--ease-out);
  border-bottom: 1px solid transparent;
  color: var(--white);
}
.nav.solid {
  background: rgba(11,11,11,0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--white-08);
}
.nav.inverse { color: var(--ink); }
.nav.inverse.solid {
  background: rgba(255,255,255,0.82);
  border-bottom-color: var(--ink-08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 32px; height: 32px; object-fit: contain; transition: filter .3s var(--ease-out); }
.nav__brand-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  opacity: 0.78;
  transition: opacity .3s var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 6px; }
.nav__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  transition: background-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav__icon:hover { background: rgba(255,255,255,0.10); }
.nav.inverse .nav__icon:hover { background: rgba(11,11,11,0.06); }
.nav__icon svg { width: 18px; height: 18px; }
.nav__cart-count {
  position: absolute; transform: translate(11px,-10px);
  background: var(--orange); color: #fff;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  padding: 2px 5px; border-radius: 999px; min-width: 16px; text-align: center;
}

.nav__cta {
  margin-left: 10px;
  height: 40px; padding: 0 18px;
  border-radius: 999px;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav__cta:hover { background: var(--orange-soft); }
.nav__cta svg { width: 12px; height: 12px; transition: transform .3s var(--ease-out); }
.nav__cta:hover svg { transform: translateX(3px); }

@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav { height: 64px; }
  :root { --nav-h: 64px; }
}
@media (max-width: 640px) {
  .nav__cta { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background: #000;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 20% 50%, rgba(0,0,0,0.55), rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
}

.hero__inner {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; align-items: center;
}
.hero__content { max-width: 560px; }

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-70);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  border: 1px solid var(--white-30);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.04);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-soft);
  box-shadow: 0 0 12px var(--teal-soft);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__headline {
  margin: 28px 0 22px;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero__headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
}
.hero__headline .word > span {
  display: inline-block;
  color: #fff;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}
.hero.in .hero__headline .word > span { transform: translateY(0); opacity: 1; }
.hero.in .hero__headline .word:nth-child(1) > span { transition-delay: .15s; }
.hero.in .hero__headline .word:nth-child(2) > span { transition-delay: .25s; }
.hero.in .hero__headline .word:nth-child(3) > span { transition-delay: .35s; }
.hero.in .hero__headline .word:nth-child(4) > span { transition-delay: .45s; }
.hero.in .hero__headline .word:nth-child(5) > span { transition-delay: .55s; }
.hero.in .hero__headline .word:nth-child(6) > span { transition-delay: .65s; }

.hero__sub {
  font-size: clamp(15px, 1.15vw, 18px);
  max-width: 480px;
  color: var(--white-70);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out) .9s, transform .9s var(--ease-out) .9s;
}
.hero.in .hero__sub { opacity: 1; transform: translateY(0); }

.hero__ctas {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s var(--ease-out) 1.05s, transform .9s var(--ease-out) 1.05s;
}
.hero.in .hero__ctas { opacity: 1; transform: translateY(0); }

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 28px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 600; letter-spacing: -0.005em;
  transition: transform .3s var(--ease-out), background-color .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 14px; height: 14px; transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 14px 40px -16px rgba(232,78,27,0.7); }
.btn--primary::before {
  content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-soft) 60%, var(--orange) 100%);
  background-size: 200% 100%; background-position: 0 0;
  transition: background-position .6s var(--ease-out);
}
.btn--primary:hover::before { background-position: 100% 0; }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid var(--white-30); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--white-50); }
.btn--ghost-dark { background: transparent; color: var(--ink); border: 1px solid var(--ink-12); }
.btn--ghost-dark:hover { background: rgba(11,11,11,0.04); border-color: var(--ink-40); }

.hero__proof {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  color: var(--white-70); font-size: 13px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s var(--ease-out) 1.2s, transform .9s var(--ease-out) 1.2s;
}
.hero.in .hero__proof { opacity: 1; transform: translateY(0); }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; }
.hero__proof strong { color: #fff; font-weight: 600; }

/* Scroll hint */
.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--white-70);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
}
.hero__scroll-track {
  width: 1px; height: 44px;
  background: var(--white-30);
  position: relative; overflow: hidden;
}
.hero__scroll-track::after {
  content: "";
  position: absolute; top: -40%; left: 0; width: 100%; height: 40%;
  background: linear-gradient(180deg, transparent, var(--white));
  animation: scrollDot 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollDot {
  0% { top: -40%; }
  100% { top: 140%; }
}

/* Cinematic side accents */
.hero__hud {
  position: absolute; z-index: 3;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white-50);
  display: flex; gap: 22px; align-items: center;
}
.hero__hud.tl { top: calc(var(--nav-h) + 28px); right: 40px; }
.hero__hud.br { bottom: 28px; right: 40px; }
.hero__hud span { display: inline-flex; align-items: center; gap: 8px; }
.hero__hud .tick { width: 8px; height: 1px; background: var(--white-50); }
.hero__hud .live { color: var(--teal-soft); }
.hero__hud .live::before { content: ""; width: 6px; height: 6px; background: var(--teal-soft); border-radius: 50%; box-shadow: 0 0 10px var(--teal-soft); display: inline-block; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--ink-08);
  padding: 56px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust__item {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 4px;
}
.trust__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.trust__num em { font-style: normal; color: var(--orange); }
.trust__label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-60);
}
.trust__icon {
  width: 26px; height: 26px; color: var(--teal);
  opacity: .9;
}
@media (max-width: 980px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 640px) {
  .trust { padding: 40px 0; }
  .trust__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   WHY PARSANA
   ========================================================================== */
.why-parsana {
  background: var(--sky);
  color: var(--ink);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.why-parsana::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 10% 20%, rgba(232,78,27,0.06), transparent 70%),
    radial-gradient(35% 45% at 90% 80%, rgba(27,166,178,0.08), transparent 70%);
}
.why-parsana__head {
  position: relative;
  text-align: center;
  margin-bottom: 64px;
}
.why-parsana__head .eyebrow { color: var(--orange); }
.why-parsana__head h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 20px auto 0;
  max-width: 760px;
  color: var(--teal);
}
.why-parsana__head h2 em { font-style: normal; color: var(--teal); }

.why-parsana__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-parsana__card {
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .55s var(--ease-out), border-color .4s var(--ease-out), box-shadow .55s var(--ease-out);
}
.why-parsana__card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,78,27,0.18);
  box-shadow: 0 24px 60px -32px rgba(232,78,27,0.22);
}
.why-parsana__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(232,78,27,0.08);
  border: 1px solid rgba(232,78,27,0.12);
}
.why-parsana__icon svg { width: 22px; height: 22px; }
.why-parsana__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.why-parsana__card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.why-parsana__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0;
}

@media (max-width: 980px) {
  .why-parsana { padding: 100px 0; }
  .why-parsana__grid { grid-template-columns: 1fr; gap: 14px; }
  .why-parsana__head { margin-bottom: 48px; }
}
@media (max-width: 640px) {
  .why-parsana { padding: 80px 0; }
  .why-parsana__card { padding: 28px 24px 32px; }
}

/* ==========================================================================
   BODY LOCKS (sticky scroll storytelling)
   ========================================================================== */
.locks {
  background: var(--black);
  color: var(--white);
  position: relative;
}
.locks__intro {
  padding: 140px 0 80px;
  text-align: center;
}
.locks__intro .eyebrow { color: var(--orange); }
.locks__intro h2 {
  font-size: clamp(40px, 5.2vw, 76px);
  margin: 20px auto 0; max-width: 900px;
  color: var(--white);
}
.locks__intro h2 em { font-style: normal; color: var(--teal-soft); }

.locks__pin {
  position: relative;
  /* 5 locks * 100vh */
  height: 500vh;
}
.locks__sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
  max-width: 1360px;
  margin: 0 auto;
}

.locks__left {
  position: relative;
  padding-left: 80px;
}
.locks__progress {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px;
  width: 56px;
}
.locks__progress button {
  display: flex; align-items: center; gap: 14px;
  color: var(--white-30);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  padding: 0; text-align: left;
  transition: color .4s var(--ease-out);
}
.locks__progress button .bar {
  width: 28px; height: 1px; background: var(--white-30);
  position: relative; overflow: hidden;
  transition: width .5s var(--ease-out), background-color .5s var(--ease-out);
}
.locks__progress button .bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--orange);
  transform-origin: left; transform: scaleX(0);
  transition: transform .5s var(--ease-out);
}
.locks__progress button.active { color: var(--white); }
.locks__progress button.active .bar { width: 56px; background: var(--white-30); }
.locks__progress button.active .bar::after { transform: scaleX(1); }
.locks__progress button.done .bar::after { transform: scaleX(1); }

.locks__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--orange);
}
.locks__panel {
  position: absolute; inset: auto 0 auto 80px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  pointer-events: none;
  width: calc(100% - 80px);
}
.locks__panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.locks__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: 14px 0 22px;
  color: var(--white);
}
.locks__panel h3 em { font-style: normal; color: var(--orange); }
.locks__panel p {
  color: var(--white-70);
  font-size: 17px; line-height: 1.55;
  max-width: 460px;
}
.locks__panel .reflex {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-soft);
}
.locks__panel .reflex::before {
  content: ""; width: 18px; height: 1px; background: var(--teal-soft);
}

.locks__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%; max-width: 540px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #131313, #0d0d0d);
  border: 1px solid var(--white-08);
}
.locks__visual .slot {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1s var(--ease-out), transform 1.4s var(--ease-out);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 24px;
}
.locks__visual .slot.active { opacity: 1; transform: scale(1); }
.locks__visual .slot::before {
  /* radial accent that shifts per lock */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 50% at var(--x, 50%) var(--y, 50%), rgba(232,78,27,0.25), rgba(0,0,0,0) 70%);
}
.locks__visual .slot::after {
  /* subtle line grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.locks__visual .slot .tag {
  position: relative; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-50);
}
.locks__visual .slot .count {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--white);
}
.locks__visual .reticle {
  position: absolute; z-index: 2;
  width: 96px; height: 96px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  top: var(--ry, 50%); left: var(--rx, 50%);
  transform: translate(-50%,-50%);
  box-shadow: 0 0 0 1px rgba(232,78,27,0.15), inset 0 0 40px rgba(232,78,27,0.25);
}
.locks__visual .reticle::before, .locks__visual .reticle::after {
  content: ""; position: absolute; background: var(--orange);
}
.locks__visual .reticle::before { top: 50%; left: -8px; right: -8px; height: 1px; }
.locks__visual .reticle::after { left: 50%; top: -8px; bottom: -8px; width: 1px; }

.locks__visual--photos {
  background: #0a0a0a;
  aspect-ratio: 4 / 5;
}
.locks__visual--photos .slot {
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}
.locks__visual--photos .slot::before,
.locks__visual--photos .slot::after {
  display: none;
}
.locks__visual--photos .slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.locks__outro {
  padding: 140px 0 160px;
  text-align: center;
}
.locks__outro h3 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500; letter-spacing: -0.025em; line-height: 1;
  margin: 0 0 18px;
  color: var(--white);
}
.locks__outro h3 em { font-style: normal; color: var(--orange); }
.locks__outro p {
  color: var(--white-70);
  max-width: 560px; margin: 0 auto;
  font-size: 17px; line-height: 1.55;
}

@media (max-width: 980px) {
  .locks__pin { height: auto; }
  .locks__sticky { position: relative; height: auto; grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
  .locks__left { padding-left: 0; min-height: 520px; }
  .locks__progress { position: relative; flex-direction: row; width: 100%; transform: none; top: 0; }
  .locks__panel { position: relative; inset: auto; width: 100%; }
}
@media (max-width: 640px) {
  .locks__intro { padding: 80px 0 60px; }
  .locks__outro { padding: 80px 0 100px; }
  .locks__sticky { padding: 30px 20px; gap: 30px; }
  .locks__panel h3 { font-size: clamp(36px, 10vw, 48px); }
  .locks__progress button { font-size: 9px; }
  .locks__progress button .bar { width: 20px; }
  .locks__progress button.active .bar { width: 40px; }
}

/* ==========================================================================
   THE SOLUTION / UNLOCKS (sticky scroll storytelling)
   ========================================================================== */
.unlocks {
  background: var(--white);
  color: var(--ink);
  position: relative;
}
.unlocks__intro {
  padding: 140px 0 80px;
  text-align: center;
}
.unlocks__intro .eyebrow { color: var(--orange); }
.unlocks__intro h2 {
  font-size: clamp(40px, 5.2vw, 76px);
  margin: 20px auto 0;
  max-width: 900px;
  color: var(--teal);
}
.unlocks__intro h2 em { font-style: normal; color: var(--teal); }
.unlocks__intro p {
  color: var(--ink-60);
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 17px;
  line-height: 1.55;
}

.unlocks__pin {
  position: relative;
  height: 500vh;
}
.unlocks__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
  max-width: 1360px;
  margin: 0 auto;
}

.unlocks__right {
  position: relative;
  padding-right: 80px;
}
.unlocks__progress {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 56px;
}
.unlocks__progress button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-direction: row-reverse;
  color: rgba(11, 11, 11, 0.25);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 0;
  text-align: right;
  transition: color .4s var(--ease-out);
}
.unlocks__progress button .bar {
  width: 28px;
  height: 1px;
  background: rgba(11, 11, 11, 0.15);
  position: relative;
  overflow: hidden;
  transition: width .5s var(--ease-out), background-color .5s var(--ease-out);
}
.unlocks__progress button .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .5s var(--ease-out);
}
.unlocks__progress button.active { color: var(--ink); }
.unlocks__progress button.active .bar { width: 56px; background: rgba(11, 11, 11, 0.12); }
.unlocks__progress button.active .bar::after { transform: scaleX(1); }
.unlocks__progress button.done .bar::after { transform: scaleX(1); }

.unlocks__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange);
}
.unlocks__panel {
  position: absolute;
  inset: auto 80px auto 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  pointer-events: none;
  width: calc(100% - 80px);
}
.unlocks__panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.unlocks__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: 14px 0 22px;
  color: var(--teal);
}
.unlocks__panel h3 em { font-style: normal; color: var(--orange); }
.unlocks__panel p {
  color: var(--ink-60);
  font-size: 17px;
  line-height: 1.55;
  max-width: 460px;
}
.unlocks__panel .reflex {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.unlocks__panel .reflex::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal);
}

.unlocks__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 540px;
  margin-right: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #f8f6f3, #f0ece6);
  border: 1px solid rgba(11, 11, 11, 0.08);
}
.unlocks__visual .slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s var(--ease-out), transform 1.4s var(--ease-out);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
}
.unlocks__visual .slot.active { opacity: 1; transform: scale(1); }
.unlocks__visual .slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at var(--x, 50%) var(--y, 50%), rgba(232,78,27,0.18), rgba(255,255,255,0) 70%);
}
.unlocks__visual .slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11,11,11,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,11,11,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.unlocks__visual .slot .tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.45);
}
.unlocks__visual .slot .count {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.unlocks__visual .reticle {
  position: absolute;
  z-index: 2;
  width: 96px;
  height: 96px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  top: var(--ry, 50%);
  left: var(--rx, 50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(232,78,27,0.12), inset 0 0 40px rgba(232,78,27,0.15);
}
.unlocks__visual .reticle::before,
.unlocks__visual .reticle::after {
  content: "";
  position: absolute;
  background: var(--orange);
}
.unlocks__visual .reticle::before { top: 50%; left: -8px; right: -8px; height: 1px; }
.unlocks__visual .reticle::after { left: 50%; top: -8px; bottom: -8px; width: 1px; }

.unlocks__visual--photos {
  background: linear-gradient(180deg, #f8f6f3, #f0ece6);
}
.unlocks__visual--photos .slot {
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}
.unlocks__visual--photos .slot::before,
.unlocks__visual--photos .slot::after {
  display: none;
}
.unlocks__visual--photos .slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 980px) {
  .unlocks__pin { height: auto; }
  .unlocks__sticky {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }
  .unlocks__right { padding-right: 0; min-height: 520px; }
  .unlocks__progress {
    position: relative;
    flex-direction: row;
    width: 100%;
    transform: none;
    top: 0;
    right: auto;
    justify-content: center;
  }
  .unlocks__progress button { flex-direction: row; justify-content: center; }
  .unlocks__panel { position: relative; inset: auto; width: 100%; }
}
@media (max-width: 640px) {
  .unlocks__intro { padding: 80px 0 60px; }
  .unlocks__sticky { padding: 30px 20px; gap: 30px; }
  .unlocks__panel h3 { font-size: clamp(36px, 10vw, 48px); }
  .unlocks__progress button { font-size: 9px; }
  .unlocks__progress button .bar { width: 20px; }
  .unlocks__progress button.active .bar { width: 40px; }
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.science {
  background: var(--sky);
  color: var(--ink);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.science__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.science h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 18px 0 24px;
  max-width: 520px;
  color: var(--teal);
}
.science h2 em { font-style: normal; color: var(--teal); }
.science p.lead {
  font-size: 17px; line-height: 1.6; color: var(--ink-60);
  max-width: 460px;
}
.science__features {
  list-style: none; padding: 0;
  margin: 36px 0 32px;
  display: grid; gap: 2px;
  border-top: 1px solid rgba(11,11,11,0.12);
}
.science__features li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11,11,11,0.12);
  font-size: 15.5px; font-weight: 500;
  cursor: default;
  transition: color .25s var(--ease-out), padding-left .25s var(--ease-out);
}
.science__features li.active,
.science__features li:focus-visible {
  color: var(--teal);
  padding-left: 8px;
}
.science__features li:focus-visible { outline: none; }
.science__features .badge {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 8px;
}
.science__features .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}

.science__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(27,166,178,0.12), rgba(27,166,178,0) 70%),
    #e8f6fb;
  overflow: hidden;
  border: 1px solid rgba(27,166,178,0.25);
}
.science__visual--plate {
  background: linear-gradient(180deg, #eef9fc 0%, #dceff6 100%);
  overflow: visible;
}
.science__plate-wrap {
  position: absolute;
  inset: 56px 24px 56px;
  overflow: visible;
}
.science__plate-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(11, 11, 11, 0.12));
}
.science__plate-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.science__plate-lines line {
  stroke: rgba(27, 166, 178, 0.35);
  stroke-width: 0.35;
  stroke-dasharray: 1.2 0.8;
  vector-effect: non-scaling-stroke;
  transition: stroke .25s var(--ease-out), stroke-width .25s var(--ease-out);
}
.science__plate-lines line.active {
  stroke: var(--orange);
  stroke-width: 0.55;
  stroke-dasharray: none;
}
.science__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 3;
}
.science__marker-dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 78, 27, 0.22);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.science__marker-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(232, 78, 27, 0.45);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.science__marker.active .science__marker-dot,
.science__marker:hover .science__marker-dot,
.science__marker:focus-visible .science__marker-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 5px rgba(232, 78, 27, 0.28);
}
.science__marker.active .science__marker-ring,
.science__marker:hover .science__marker-ring,
.science__marker:focus-visible .science__marker-ring {
  opacity: 1;
  transform: scale(1);
}
.science__marker:focus-visible { outline: none; }
.science__callout {
  position: absolute;
  transform: translate(-50%, -50%);
  max-width: 158px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 166, 178, 0.22);
  box-shadow: 0 8px 24px rgba(11, 11, 11, 0.08);
  z-index: 2;
  pointer-events: none;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.science__callout.active {
  border-color: rgba(232, 78, 27, 0.45);
  box-shadow: 0 12px 32px rgba(11, 11, 11, 0.12);
  transform: translate(-50%, -50%) scale(1.03);
  pointer-events: auto;
  max-width: 180px;
}
.science__callout-badge {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3px;
}
.science__callout.active .science__callout-badge { color: var(--orange); }
.science__callout-title {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.science__callout-body {
  margin: 6px 0 0;
  font-size: 10px;
  line-height: 1.45;
  color: var(--ink-60);
}
.science__visual .rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.science__visual .rings span {
  position: absolute;
  border: 1px solid rgba(11,11,11,0.18);
  border-radius: 50%;
}
.science__visual .rings span:nth-child(1) { width: 30%; height: 30%; }
.science__visual .rings span:nth-child(2) { width: 50%; height: 50%; border-color: rgba(11,11,11,0.14); }
.science__visual .rings span:nth-child(3) { width: 72%; height: 72%; border-color: rgba(11,11,11,0.10); }
.science__visual .rings span:nth-child(4) { width: 96%; height: 96%; border-color: rgba(11,11,11,0.06); }
.science__visual .pin {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,78,27,0.18);
}
.science__visual .pin.t { top: 18%; left: 50%; transform: translateX(-50%); }
.science__visual .pin.l { top: 50%; left: 18%; transform: translateY(-50%); }
.science__visual .pin.r { top: 50%; right: 18%; transform: translateY(-50%); }
.science__visual .pin.b { bottom: 18%; left: 50%; transform: translateX(-50%); background: var(--teal); box-shadow: 0 0 0 4px rgba(27,166,178,0.18); }
.science__visual .pin.c { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 14px; height: 14px; background: var(--ink); }
.science__visual .label {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
}
.science__visual .ref {
  position: absolute; bottom: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-60);
}

@media (max-width: 980px) {
  .science { padding: 100px 0; }
  .science__grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 640px) {
  .science { padding: 60px 0; }
  .science__grid { gap: 40px; }
  .science__features { margin: 28px 0 24px; }
  .science__plate-wrap { inset: 44px 10px 44px; }
  .science__callout { max-width: 118px; padding: 6px 8px; }
  .science__callout.active { max-width: 140px; }
  .science__callout-title { font-size: 10px; }
  .science__callout-body { font-size: 9px; }
}

/* ==========================================================================
   PRODUCT
   ========================================================================== */
.product {
  background: var(--black);
  color: var(--white);
  padding: 160px 0 140px;
  position: relative; overflow: hidden;
}
.product__head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.product__head h2 {
  font-size: clamp(44px, 5.6vw, 84px);
  margin: 22px 0 18px;
  color: var(--white);
}
.product__head p { color: var(--white-70); font-size: 17px; line-height: 1.55; }

.product__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1100px; margin: 0 auto;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(40% 60% at 50% 60%, rgba(232,78,27,0.20), rgba(232,78,27,0) 70%),
    radial-gradient(70% 80% at 50% 100%, rgba(27,166,178,0.18), rgba(27,166,178,0) 70%),
    #0e0e0e;
  border: 1px solid var(--white-08);
  overflow: hidden;
}
.product__stage::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}
.product__stage .corner {
  position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--white-30);
}
.product__stage .corner.tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; }
.product__stage .corner.tr { top: 18px; right: 18px; border-left: 0; border-bottom: 0; }
.product__stage .corner.bl { bottom: 18px; left: 18px; border-right: 0; border-top: 0; }
.product__stage .corner.br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; }
.product__stage .tag {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-50);
}
.product__stage .spec {
  position: absolute; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white-50);
}
.product__stage .spec.s1 { bottom: 28px; left: 32px; color: var(--orange); }
.product__stage .spec.s2 { bottom: 28px; right: 32px; color: var(--teal-soft); }

.product__features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 80px auto 0;
  max-width: 1100px;
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
}
.product__features li {
  list-style: none;
  padding: 28px 24px;
  border-right: 1px solid var(--white-08);
  display: flex; flex-direction: column; gap: 8px;
}
.product__features li:last-child { border-right: 0; }
.product__features .k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
}
.product__features .v {
  font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
}

.product__ctaRow {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  margin-top: 56px;
}
.product__perks {
  display: flex; gap: 32px; color: var(--white-70); font-size: 13.5px;
}
.product__perks span { display: inline-flex; align-items: center; gap: 8px; }
.product__perks svg { width: 14px; height: 14px; color: var(--teal-soft); }

@media (max-width: 980px) {
  .product__features { grid-template-columns: repeat(2, 1fr); border-right: 1px solid var(--white-08); border-left: 1px solid var(--white-08); }
  .product__features li:nth-child(2n) { border-right: 0; }
  .product__features li { border-bottom: 1px solid var(--white-08); }
}
@media (max-width: 640px) {
  .product { padding: 80px 0 70px; }
  .product__head { margin-bottom: 50px; }
  .product__stage { aspect-ratio: 1; }
  .product__features { grid-template-columns: 1fr; }
  .product__features li { border-right: 0; padding: 20px 16px; }
  .product__perks { flex-direction: column; gap: 16px; text-align: center; }
  .product__perks span { justify-content: center; }
}

/* ==========================================================================
   SHOP BY CONCERN
   ========================================================================== */
.concern {
  background: var(--white);
  color: var(--ink);
  padding: 160px 0;
}
.concern__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 64px;
}
.concern__head h2 {
  font-size: clamp(40px, 4.8vw, 68px);
  margin: 16px 0 0;
  max-width: 700px;
  color: var(--teal);
}
.concern__head h2 em { color: var(--orange); font-style: normal; }
.concern__head .link {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.concern__head .link svg { width: 12px; height: 12px; transition: transform .3s var(--ease-out); }
.concern__head .link:hover svg { transform: translateX(4px); }

.concern__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.concern__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f5f7f9;
  border: 1px solid var(--ink-08);
  transition: transform .6s var(--ease-out), border-color .4s var(--ease-out);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.concern__card:hover { transform: translateY(-6px); border-color: var(--ink-12); }
.concern__card .img {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(80% 100% at 50% 100%, rgba(27,166,178,0.18), transparent 70%),
    linear-gradient(135deg, #eaeef2, #f6f8fa);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--ink-08);
}
.concern__card .img::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(11,11,11,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,11,11,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.concern__card .img .pulse {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid var(--orange);
  opacity: 0;
  transition: opacity .4s var(--ease-out), transform .8s var(--ease-out);
}
.concern__card:hover .img .pulse { opacity: 1; transform: translate(-50%,-50%) scale(1.4); }
.concern__card .img .badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-60);
  display: inline-flex; align-items: center; gap: 8px;
}
.concern__card .img .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.concern__card .img .num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--ink-40);
}
.concern__card .body { padding: 24px 24px 28px; }
.concern__card h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500; letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.concern__card p { color: var(--ink-60); font-size: 14.5px; line-height: 1.5; margin: 0; }
.concern__card .arrow {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: -0.005em;
  color: var(--ink);
}
.concern__card .arrow svg { width: 12px; height: 12px; transition: transform .3s var(--ease-out); }
.concern__card:hover .arrow svg { transform: translateX(4px); }

@media (max-width: 980px) {
  .concern { padding: 100px 0; }
  .concern__grid { grid-template-columns: 1fr; }
  .concern__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .concern { padding: 60px 0; }
  .concern__head { margin-bottom: 40px; }
  .concern__card .body { padding: 20px; }
}

/* ==========================================================================
   ELIXIR AI
   ========================================================================== */
.elixir {
  background: #050a0c;
  color: var(--white);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.elixir::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 80% 30%, rgba(27,166,178,0.30), transparent 60%),
    radial-gradient(40% 60% at 10% 80%, rgba(27,166,178,0.18), transparent 70%);
  pointer-events: none;
}
.elixir::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.elixir__grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.elixir h2 {
  font-size: clamp(48px, 6vw, 88px);
  margin: 20px 0 22px;
  color: var(--white);
}
.elixir h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-soft), #fff 60%, var(--teal-soft));
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% 0; } }
.elixir p.lead { color: var(--white-70); font-size: 17px; line-height: 1.55; max-width: 460px; }

.elixir__features {
  list-style: none; padding: 0;
  margin: 40px 0 32px;
  display: grid; gap: 0;
}
.elixir__features li {
  padding: 16px 0;
  border-top: 1px solid var(--white-12);
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--white-70);
}
.elixir__features li:last-child { border-bottom: 1px solid var(--white-12); }
.elixir__features li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-soft);
  box-shadow: 0 0 12px var(--teal-soft);
}

.elixir__chat {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--white-12);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.elixir__chat::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(43,208,222,0.55), transparent 30%, transparent 70%, rgba(43,208,222,0.4));
  z-index: -1;
  filter: blur(8px);
  opacity: .6;
}
.elixir__chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--white-08);
  background: rgba(255,255,255,0.02);
}
.elixir__chat-head .av {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.elixir__chat-head .av svg {
  width: 18px; height: 18px; color: #021016;
}
.elixir__chat-head .title { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.elixir__chat-head .sub { font-size: 11px; color: var(--white-50); font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; }
.elixir__chat-head .stat { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-soft); }
.elixir__chat-head .stat::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-soft); box-shadow: 0 0 10px var(--teal-soft); }

.elixir__chat-body {
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 380px;
}
.bubble {
  max-width: 80%;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14.5px; line-height: 1.5;
}
.bubble.user {
  align-self: flex-end;
  background: var(--teal);
  color: #021016;
  border-bottom-right-radius: 6px;
}
.bubble.ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--white-08);
  color: var(--white);
  border-bottom-left-radius: 6px;
}
.bubble.ai .src {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--teal-soft); text-transform: uppercase;
}
.typing {
  align-self: flex-start;
  display: inline-flex; gap: 6px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--white-08);
  border-radius: 16px; border-bottom-left-radius: 6px;
}
.typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--white-70);
  animation: bob 1.4s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes bob { 0%,100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(-4px); opacity: 1; } }

.elixir__chat-input {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 16px;
  border-top: 1px solid var(--white-08);
  background: rgba(255,255,255,0.02);
}
.elixir__chat-input .field {
  flex: 1; height: 40px;
  background: transparent;
  font-family: var(--font-body); font-size: 14px;
  color: var(--white-50);
  display: flex; align-items: center;
}
.elixir__chat-input .send {
  width: 36px; height: 36px; border-radius: 999px; background: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; color: #021016;
}
.elixir__chat-input .send svg { width: 14px; height: 14px; }

@media (max-width: 980px) {
  .elixir { padding: 100px 0; }
  .elixir__grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 640px) {
  .elixir { padding: 60px 0; }
  .elixir__grid { gap: 40px; }
  .elixir__features { margin: 30px 0 24px; }
  .elixir__chat-body { min-height: 300px; padding: 20px 16px; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi {
  background: var(--black);
  color: var(--white);
  padding: 140px 0 160px;
  border-top: 1px solid var(--white-08);
}
.testi__head { text-align: center; margin-bottom: 72px; }
.testi__head h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 16px 0 14px;
  color: var(--white);
}
.testi__head h2 em { color: var(--orange); font-style: normal; }
.testi__head p { color: var(--white-70); font-size: 16px; }

.testi__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.testi__card {
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease-out);
}
.testi__card:hover { transform: translateY(-4px); border-color: var(--white-12); }
.testi__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.2;
  color: var(--white);
}
.testi__quote::before { content: "\201C"; color: var(--orange); margin-right: 4px; }
.testi__meta { margin-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--white-70); }
.testi__meta .stars { color: var(--orange); letter-spacing: 2px; font-size: 12px; }

.testi__cta { text-align: center; margin-top: 56px; }

@media (max-width: 980px) {
  .testi__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .testi { padding: 70px 0 80px; }
  .testi__head { margin-bottom: 50px; }
  .testi__card { padding: 24px 20px; min-height: 240px; }
  .testi__cta { margin-top: 40px; }
}

/* ==========================================================================
   TESTIMONIALS PAGE
   ========================================================================== */
.reviews-hero {
  position: relative;
  padding: calc(var(--nav-h) + 88px) 0 88px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.reviews-hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 70% at 15% 40%, rgba(232,78,27,0.14), transparent 65%),
    radial-gradient(40% 60% at 85% 60%, rgba(27,166,178,0.12), transparent 65%);
}
.reviews-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.reviews-hero h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  margin: 20px 0 18px;
  color: var(--white);
}
.reviews-hero h1 em { font-style: normal; color: var(--orange); }
.reviews-hero p {
  color: var(--white-70);
  font-size: 17px;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}
.reviews-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--white-08);
}
.reviews-hero__stats div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
}
.reviews-hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
}
.reviews-hero__stats span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-50);
}

.reviews-main {
  background: var(--white);
  color: var(--ink);
  padding: 100px 0 120px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.reviews-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-08);
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
  transition: transform .5s var(--ease-out), border-color .4s var(--ease-out), box-shadow .5s var(--ease-out);
}
.reviews-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,78,27,0.16);
  box-shadow: 0 28px 64px -36px rgba(232,78,27,0.28);
}
.reviews-card--featured {
  grid-column: span 2;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(232,78,27,0.06), transparent 55%),
    linear-gradient(180deg, #fff 0%, #faf8f6 100%);
}
.reviews-card__stars {
  color: var(--orange);
  letter-spacing: 3px;
  font-size: 14px;
  line-height: 1;
}
.reviews-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.reviews-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0;
  flex: 1;
}
.reviews-card__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid var(--ink-08);
}
.reviews-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.reviews-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.reviews-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}
.reviews-card__verified svg {
  width: 13px;
  height: 13px;
  stroke: var(--teal);
}

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-card--featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .reviews-hero { padding: calc(var(--nav-h) + 64px) 0 64px; }
  .reviews-hero__stats { gap: 28px; margin-top: 36px; padding-top: 28px; }
  .reviews-main { padding: 72px 0 88px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-card--featured { grid-column: span 1; }
  .reviews-card { padding: 24px 22px 22px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: var(--white);
  color: var(--ink);
  padding: 160px 0;
}
.faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq__title h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 16px 0 18px;
  letter-spacing: -0.025em;
  color: var(--teal);
}
.faq__title h2 em { color: var(--orange); font-style: normal; }
.faq__title p { color: var(--ink-60); font-size: 16px; max-width: 360px; line-height: 1.55; }

.faq__list { border-top: 1px solid var(--ink-12); }
.faq__item { border-bottom: 1px solid var(--ink-12); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .3s var(--ease-out);
}
.faq__q:hover { color: var(--orange); }
.faq__icon {
  width: 24px; height: 24px; position: relative; flex-shrink: 0;
  margin-left: 16px;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: currentColor; top: 50%; left: 50%;
  transition: transform .4s var(--ease-out);
}
.faq__icon::before { width: 14px; height: 1.5px; transform: translate(-50%,-50%); }
.faq__icon::after { width: 1.5px; height: 14px; transform: translate(-50%,-50%); }
.faq__item.open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-out);
}
.faq__a-inner {
  padding: 0 0 26px;
  max-width: 640px;
  color: var(--ink-60);
  font-size: 15.5px; line-height: 1.6;
}
.faq__a-inner p + p,
.faq__a-inner p + ul,
.faq__a-inner p + ol,
.faq__a-inner ul + p,
.faq__a-inner ol + p { margin-top: 12px; }
.faq__a-inner ul,
.faq__a-inner ol { padding-left: 1.25rem; margin-top: 8px; }
.faq__a-inner ul { list-style: disc; }
.faq__a-inner ol { list-style: decimal; }
.faq__a-inner li + li { margin-top: 6px; }
.faq__a-inner strong { color: var(--teal); font-weight: 600; }
.faq__a-inner .faq__timeline { list-style: none; padding-left: 0; }
.faq__a-inner .faq__timeline li + li { margin-top: 10px; }
.faq__a-inner .faq__note { margin-top: 12px; color: var(--ink-40); font-size: 14px; }
.faq__steps { display: flex; flex-direction: column; gap: 16px; }
.faq__step-label { font-weight: 600; color: var(--teal); margin-bottom: 6px; }

.faq__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding: 4px;
  border-radius: 999px;
  background: var(--cream, #f8f6f3);
  border: 1px solid var(--ink-12);
}
.faq__tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.faq__tab:hover { color: var(--ink); }
.faq__tab.active {
  background: var(--orange);
  color: var(--white);
}
.faq__cta {
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-60);
}
.faq__cta a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.faq__cta a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .faq { padding: 100px 0; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .faq { padding: 60px 0; }
  .faq__grid { gap: 30px; }
  .faq__q { padding: 20px 0; font-size: clamp(17px, 4vw, 20px); }
  .faq__a-inner { padding: 0 0 20px; }
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final {
  background: var(--black);
  color: var(--white);
  padding: 180px 0 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(232,78,27,0.25), transparent 60%),
    radial-gradient(40% 30% at 80% 0%, rgba(27,166,178,0.18), transparent 60%);
  pointer-events: none;
}
.final h2 {
  position: relative;
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 500; letter-spacing: -0.03em; line-height: 0.95;
  margin: 16px auto 22px;
  max-width: 1100px;
  color: var(--white);
}
.final h2 em { color: var(--orange); font-style: normal; }
.final p { position: relative; color: var(--white-70); font-size: 18px; max-width: 560px; margin: 0 auto 40px; }
.final .btn { position: relative; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
  background: #000;
  color: var(--white);
  padding: 100px 0 36px;
  border-top: 1px solid var(--white-08);
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--white-08);
}
.foot__brand .logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.foot__brand .logo img { width: 36px; height: 36px; object-fit: contain; }
.foot__brand .logo span { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.foot__brand p { color: var(--white-70); font-size: 14.5px; line-height: 1.55; max-width: 340px; }

.foot__col h4 {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-50); margin: 0 0 22px;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.foot__col a { color: var(--white); font-size: 14.5px; opacity: 0.85; transition: opacity .3s var(--ease-out); display: inline-flex; align-items: center; gap: 8px; }
.foot__col a:hover { opacity: 1; color: var(--orange-soft); }

.foot__bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  color: var(--white-50); font-size: 12.5px;
  flex-wrap: wrap; gap: 20px;
}
.foot__bot .links { display: flex; gap: 22px; }
.foot__social { display: flex; gap: 8px; }
.foot__social a {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--white-12);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.foot__social a:hover { border-color: var(--orange); background: rgba(232,78,27,0.12); }
.foot__social svg { width: 14px; height: 14px; }

@media (max-width: 980px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .foot { padding: 60px 0 28px; }
  .foot__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 50px; }
  .foot__bot { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Hero mobile */
@media (max-width: 640px) {
  .hero { min-height: 600px; }
  .hero__content { max-width: 100%; }
  .hero__headline {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.06;
    margin: 20px 0 16px;
    letter-spacing: -0.025em;
  }
  .hero__headline .word { margin-right: 0.2em; }
  .hero__sub { font-size: 15px; max-width: 100%; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__proof { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__hud { font-size: 9px; gap: 12px; }
  .hero__hud.tl { right: 20px; top: calc(var(--nav-h) + 16px); }
  .hero__hud.br { right: 20px; bottom: 16px; }
}
@media (max-width: 390px) {
  .hero__headline {
    font-size: clamp(24px, 7.5vw, 34px);
    line-height: 1.08;
  }
}

/* Final CTA mobile */
@media (max-width: 640px) {
  .final { padding: 100px 0 120px; }
  .final .btn { width: 100%; justify-content: center; }
}

/* Press pills mobile */
@media (max-width: 640px) {
  .press-pill { font-size: 10px; padding: 6px 12px; }
}

/* ==========================================================================
   Reveal helpers
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"].in { transition-delay: .08s; }
[data-reveal-delay="2"].in { transition-delay: .16s; }
[data-reveal-delay="3"].in { transition-delay: .24s; }
[data-reveal-delay="4"].in { transition-delay: .32s; }
[data-reveal-delay="5"].in { transition-delay: .40s; }

/* Line mask reveal */
.line-mask { display: inline-block; overflow: hidden; vertical-align: bottom; }
.line-mask > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
[data-reveal].in .line-mask > span,
.in .line-mask > span { transform: translateY(0); }
.line-mask-delay-1 > span { transition-delay: .1s; }
.line-mask-delay-2 > span { transition-delay: .2s; }
.line-mask-delay-3 > span { transition-delay: .3s; }

/* Subtle marquee not used but utility */
.divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--ink-12), transparent);
}

/* Legacy content pages (how-to-use, science, learn) — always show content */
.parsana-legacy-page .reveal {
  opacity: 1;
  transform: none;
}
