/* ═══════════════════════════════════════════════
   STEAMORY Landing v2.1 — immersive dark cinema
   Full-screen cover-wall hero, floating pill nav,
   editorial numbered sections, asymmetric layouts,
   inverted green CTA band. Single green accent.
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0a0e0b;
  --bg-raise: #0e1410;
  --surface: #121a14;
  --surface-2: #16211a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.17);

  --text: #eef4ee;
  --muted: #a7b8ab;
  --muted-2: #7e937f;

  --accent: #5ee36a;
  --accent-hi: #8af59a;
  --accent-lo: #37c24c;
  --accent-soft: rgba(94, 227, 106, 0.12);
  --accent-line: rgba(94, 227, 106, 0.38);
  --accent-ink: #06130a;
  --accent-grad: linear-gradient(180deg, #b6f8c0 0%, #5ee36a 48%, #37c24c 100%);

  --font-display: 'Alexandria', 'IBM Plex Sans Arabic', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', 'Alexandria', sans-serif;

  --radius: 20px;
  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-deep:
    0 30px 70px -20px rgba(0, 0, 0, 0.75),
    0 12px 28px -12px rgba(0, 0, 0, 0.6);
  --shadow-card:
    0 24px 60px -24px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(235, 255, 240, 0.05);
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: 110px;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  counter-reset: sec;
}

/* film grain — breaks digital flatness */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  opacity: 0.035;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex: none;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-narrow { max-width: 900px; }

.section { padding-block: 120px 128px; }
.section-alt {
  background:
    radial-gradient(1000px 420px at 88% 0%, rgba(94, 227, 106, 0.045), transparent 65%),
    var(--bg-raise);
  border-block: 1px solid var(--line);
}

/* editorial numbered section heads: ghost index + offset gold rule */
.section-head { max-width: 680px; margin-bottom: 64px; position: relative; }
.section-head h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.22;
}
.section-head h2::before {
  counter-increment: sec;
  content: counter(sec, decimal-leading-zero);
  display: block;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(94, 227, 106, 0.4);
  margin-bottom: 10px;
  direction: ltr;
  text-align: start;
  font-variant-numeric: tabular-nums;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-grad);
  box-shadow: 0 0 14px rgba(94, 227, 106, 0.45);
  margin-top: 20px;
}
.section-head p { color: var(--muted); margin: 14px 0 0; max-width: 52ch; }

/* ─── Buttons: tactile, physical press ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.3s;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, #8ff59d 0%, #54dd68 55%, #3ecc52 100%);
  color: var(--accent-ink);
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.45),
    0 12px 26px -8px rgba(94, 227, 106, 0.35),
    inset 0 1px 1px rgba(235, 255, 240, 0.75),
    inset 0 -3px 6px rgba(10, 90, 30, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #a5f8b1 0%, #67e57a 55%, #4cd45f 100%);
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.4),
    0 18px 38px -8px rgba(94, 227, 106, 0.5),
    inset 0 1px 1px rgba(235, 255, 240, 0.85),
    inset 0 -3px 6px rgba(10, 90, 30, 0.3);
}
.btn-primary:active {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    inset 0 3px 7px rgba(8, 75, 25, 0.45);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(10, 14, 11, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--accent-line); color: var(--accent-hi); background: var(--accent-soft); }

.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-lg { padding: 17px 42px; font-size: 16px; }

/* ─── Promo bar ─── */
.promo-bar {
  background: linear-gradient(90deg, rgba(94, 227, 106, 0.16), rgba(94, 227, 106, 0.05));
  border-bottom: 1px solid var(--accent-line);
  position: relative;
  z-index: 110;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-block: 10px;
  font-size: 13.5px;
  font-weight: 600;
}
.promo-count {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-hi);
  font-variant-numeric: tabular-nums;
  direction: ltr;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  padding: 2px 10px;
}
.promo-link {
  color: var(--accent-hi);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.promo-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  padding: 4px;
}
.promo-close .icon { width: 15px; height: 15px; }
.promo-close:hover { color: var(--text); }

/* ─── Nav: floating glass pill ─── */
.nav {
  position: sticky;
  top: 14px;
  z-index: 100;
  pointer-events: none;
}
.nav .container { max-width: 1080px; }
.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
  padding-inline: 22px 12px;
  border-radius: 999px;
  background: rgba(13, 18, 14, 0.66);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid var(--line);
  box-shadow:
    0 18px 44px -18px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(235, 255, 240, 0.07);
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}
.nav.scrolled .nav-inner {
  border-color: var(--line-strong);
  background: rgba(13, 18, 14, 0.85);
}

.brand { display: flex; flex-direction: column; gap: 2px; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 1.5px;
  line-height: 1;
  direction: ltr;
}
.brand-word em { font-style: normal; color: var(--accent); }
.brand-tag {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--muted-2);
  direction: ltr;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--accent-hi); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-burger .icon { width: 20px; height: 20px; }
.nav-store-mobile { display: none; }

/* ─── Hero: full-screen tilted cover wall ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  margin-top: -92px; /* pull under the floating nav */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: 140px 110px;
}

.hero-wall {
  position: absolute;
  inset: -18%;
  display: flex;
  gap: 20px;
  justify-content: center;
  transform: rotate(-8deg);
  opacity: 0.5;
}
.wall-col {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.wall-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wall-track img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  filter: saturate(0.9) brightness(0.72);
}
@media (prefers-reduced-motion: no-preference) {
  .wall-track { animation: wallscroll var(--ws, 40s) linear infinite; }
  .wall-col-rev .wall-track { animation-direction: reverse; }
  @keyframes wallscroll {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
  }
}

/* vignette + gold breath over the wall */
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 55% at 50% 46%, rgba(10, 14, 11, 0.55) 0%, rgba(10, 14, 11, 0.88) 62%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(10, 14, 11, 0.6), transparent 30%, transparent 70%, var(--bg) 100%);
}
.hero-veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 420px at 50% 62%, rgba(94, 227, 106, 0.1), transparent 65%);
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-center h1 {
  font-size: clamp(38px, 6.4vw, 82px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -1px;
  max-width: 20ch;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
}
.mark {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  transform: translateZ(0);
  filter: drop-shadow(0 10px 28px rgba(94, 227, 106, 0.28));
}
@media (prefers-reduced-motion: no-preference) {
  .mark.shine {
    background-image: linear-gradient(105deg, #37c24c 0%, #5ee36a 38%, #eaffe9 50%, #5ee36a 62%, #37c24c 100%);
    background-size: 220% 100%;
    animation: shineslide 5.5s ease-in-out infinite;
  }
  @keyframes shineslide {
    0%, 60%, 100% { background-position: 110% 0; }
    25% { background-position: -10% 0; }
  }
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(15.5px, 1.6vw, 18.5px);
  max-width: 44ch;
  margin: 26px 0 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  background: rgba(13, 18, 14, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent-hi);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 26px;
  box-shadow:
    0 14px 30px -12px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(235, 255, 240, 0.14);
}
.hero-chip .icon { color: var(--accent); }

/* legacy hero elements (unused after wall hero) */
.hero-bg, .hero-dots, .aurora, .fan, .fan-card, .hero-grid, .hero-copy, .hero-visual { display: none; }

/* ─── Trust strip: glass bar overlapping the hero seam ─── */
.trust {
  position: relative;
  z-index: 3;
  padding-block: 0;
  margin-top: -64px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(165deg, rgba(22, 33, 26, 0.92), rgba(18, 27, 21, 0.92));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding-block: 26px;
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(235, 255, 240, 0.07);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 30px;
}
.trust-item + .trust-item { border-inline-start: 1px solid var(--line); }
.trust-item .icon { width: 27px; height: 27px; color: var(--accent); filter: drop-shadow(0 2px 8px rgba(94, 227, 106, 0.4)); }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
.trust-item span { display: block; color: var(--muted-2); font-size: 12.5px; line-height: 1.6; }

/* ─── Covers marquee: slim film-strip ─── */
.marquee {
  padding-block: 84px 56px;
  overflow: hidden;
  position: relative;
}
.marquee-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-row + .marquee-row { margin-top: 18px; }
.m-track {
  display: flex;
  width: max-content;
}
.m-group {
  display: flex;
  gap: 16px;
  padding-inline-end: 16px;
}
.m-tile {
  width: 112px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.m-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-tile:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--accent-line);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(94, 227, 106, 0.25);
}
.marquee-note {
  color: var(--muted-2);
  font-size: 13.5px;
  margin: 26px auto 0;
  text-align: center;
}
.marquee-note a {
  color: var(--accent-hi);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (prefers-reduced-motion: no-preference) {
  .m-track { animation: mscroll 55s linear infinite; }
  .m-track-reverse { animation-direction: reverse; }
  .marquee-row:hover .m-track { animation-play-state: paused; }
  @keyframes mscroll {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .m-track { transform: none; }
}

/* ─── Products: spotlight + asymmetric grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(155deg, var(--surface-2) 0%, var(--surface) 60%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 227, 106, 0.3);
  box-shadow:
    0 34px 80px -28px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(94, 227, 106, 0.12),
    inset 0 1px 0 rgba(235, 255, 240, 0.06);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 50%), rgba(148, 240, 158, 0.08), transparent 45%);
  mix-blend-mode: screen;
}
.card:hover::before { opacity: 1; }
.card-body { position: relative; z-index: 2; }

/* the first featured bundle becomes a full-width horizontal spotlight */
.card-featured:first-child {
  grid-column: 1 / -1;
  flex-direction: row-reverse;
  border-color: var(--accent-line);
  background:
    radial-gradient(700px 320px at 12% 0%, rgba(94, 227, 106, 0.09), transparent 65%),
    linear-gradient(155deg, var(--surface-2) 0%, var(--surface) 60%);
}
.card-featured:first-child .card-media {
  width: 44%;
  flex: none;
  aspect-ratio: auto;
  min-height: 380px;
}
.card-featured:first-child .card-media::after {
  background: linear-gradient(to left, transparent 55%, rgba(18, 27, 21, 0.95) 100%);
}
.card-featured:first-child .card-body {
  padding: 44px 46px;
  justify-content: center;
}
.card-featured:first-child h3 { font-size: clamp(24px, 2.6vw, 34px); }
.card-featured:first-child .price-now { font-size: clamp(38px, 4vw, 52px); }
.card-featured:first-child .buy-widget .btn { width: auto; padding-inline: 52px; }

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.04); }
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 11, 0.85), transparent 45%);
}

.badge-off {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 2;
  background: var(--accent-grad);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 6px 18px -4px rgba(94, 227, 106, 0.5), inset 0 1px 0 rgba(240, 255, 244, 0.7);
}
.badge-inline {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}
.card-body h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; }

.card-perks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.card-perks li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.card-perks .icon { color: var(--accent); margin-top: 4px; width: 18px; height: 18px; }

.card-desc { color: var(--muted); font-size: 14px; margin: 10px 0 0; }

.card-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}
.price-now {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  filter: drop-shadow(0 4px 14px rgba(94, 227, 106, 0.25));
}
.price-now small { font-size: 15px; font-weight: 700; }
.price-was {
  color: var(--muted-2);
  font-size: 15px;
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.buy-widget { margin-top: 18px; }
.btn-buy {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.btn-buy .icon { width: 19px; height: 19px; }

@media (prefers-reduced-motion: no-preference) {
  .btn-buy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(240, 255, 244, 0.5) 50%, transparent 60%);
    transform: translateX(-120%);
    animation: sweep 4.5s ease-in-out infinite;
  }
  @keyframes sweep {
    0%, 70%, 100% { transform: translateX(-120%); }
    30% { transform: translateX(120%); }
  }
}

.card-compact { flex-direction: row; }

.card-compact:nth-child(odd):last-child { grid-column: 1 / -1; }
.card-compact:nth-child(odd):last-child .card-media-side { width: 30%; }
.card-media-side {
  width: 40%;
  flex: none;
  overflow: hidden;
}
.card-media-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-note {
  text-align: center;
  color: var(--muted);
  margin: 44px 0 0;
  font-size: 14.5px;
}
.products-note a {
  color: var(--accent-hi);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ─── Bundles comparison ─── */
.cmp-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.cmp-table {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.2fr;
  min-width: 680px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cmp-cell {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.cmp-cell:nth-child(-n+3) { border-top: none; }
.cmp-corner { background: var(--bg-raise); }
.cmp-label {
  background: var(--bg-raise);
  font-weight: 700;
  color: var(--muted-2);
  font-size: 13px;
}
.cmp-headcell {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16.5px;
  color: var(--text);
  padding-block: 22px;
}
.cmp-best {
  background: linear-gradient(180deg, rgba(94, 227, 106, 0.09), rgba(94, 227, 106, 0.04));
  border-inline: 1px solid var(--accent-line);
  color: var(--text);
}
.cmp-tag {
  display: inline-block;
  width: fit-content;
  background: var(--accent-grad);
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 6px;
  box-shadow: inset 0 1px 0 rgba(240, 255, 244, 0.6);
}
.cmp-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--accent-hi);
  font-variant-numeric: tabular-nums;
}
.cmp-price small { font-size: 13px; }
.cmp-was {
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.cmp-table .btn { align-self: flex-start; }

/* ─── Library search ─── */
.lib-box { max-width: 760px; }
.lib-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 18px 26px;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35);
}
.lib-input:focus-within {
  border-color: var(--accent-line);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 0 4px rgba(94, 227, 106, 0.12);
}
.lib-input .icon { width: 20px; height: 20px; color: var(--muted-2); flex: none; }
.lib-input input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
}
.lib-input input::placeholder { color: var(--muted-2); }
.lib-input input::-webkit-search-cancel-button { -webkit-appearance: none; }

.lib-summary { color: var(--accent-hi); font-size: 13.5px; margin: 14px 8px 0; font-weight: 600; }
.lib-results {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}
.lib-results:not(:empty) { border: 1px solid var(--line); background: var(--surface); }
.lib-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 20px;
  font-size: 14px;
}
.lib-row + .lib-row { border-top: 1px solid var(--line); }
.lib-name { font-weight: 600; text-align: left; }
.lib-meta { display: flex; align-items: center; gap: 12px; flex: none; }
.lib-price { color: var(--muted-2); font-size: 12.5px; font-variant-numeric: tabular-nums; }
.lib-bundle {
  background: var(--accent-soft);
  color: var(--accent-hi);
  border: 1px solid var(--accent-line);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.lib-check { width: 17px; height: 17px; color: var(--accent); }
.lib-more { color: var(--muted-2); font-size: 12.5px; justify-content: center; }
.lib-empty {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  padding: 18px 24px;
}
.lib-empty p { margin: 0; color: var(--muted); font-size: 14px; }
.lib-cta { margin-top: 18px; }

@media (max-width: 640px) {
  .lib-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .lib-name { text-align: right; }
}

/* ─── Testimonials: horizontal snap rail ─── */
.testi-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 52px;
}
.testi-score {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow-card);
}
.score-top { display: flex; align-items: center; gap: 12px; }
.score-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}
.score-stars { display: flex; gap: 2px; color: var(--accent); filter: drop-shadow(0 2px 6px rgba(94, 227, 106, 0.4)); }
.score-stars .icon { width: 17px; height: 17px; }
.score-count { color: var(--muted); font-size: 13px; }
.testi-score a {
  color: var(--accent-hi);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* auto-scrolling rail: duplicated groups loop seamlessly, pause on hover */
.testi-grid {
  overflow: hidden;
  margin-inline: -24px;
  padding-inline: 24px;
  padding-bottom: 8px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.t-track {
  display: flex;
  width: max-content;
}
.t-group {
  display: flex;
  gap: 20px;
  padding-inline-end: 20px;
}
@media (prefers-reduced-motion: no-preference) {
  .t-track { animation: tscroll 70s linear infinite; }
  .testi-grid:hover .t-track { animation-play-state: paused; }
  @keyframes tscroll {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .testi-grid { overflow-x: auto; }
}

.t-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  box-shadow: inset 0 1px 0 rgba(235, 255, 240, 0.04);
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 227, 106, 0.28);
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.8);
}
.t-stars { display: flex; gap: 2px; color: var(--accent); }
.t-stars .icon { width: 15px; height: 15px; }
.t-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.9;
}
.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
  padding-top: 6px;
}
.t-card figcaption strong { font-family: var(--font-display); font-size: 13.5px; color: var(--text); }
.t-city { color: var(--muted-2); }
.t-src {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-hi);
  font-size: 12px;
  font-weight: 600;
  margin-inline-start: auto;
}
.t-src .icon { width: 14px; height: 14px; }

/* ─── Steps: panels with giant ghost numerals ─── */
.steps-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  counter-reset: step;
}
.steps-row::before { display: none; }
.step {
  counter-increment: step;
  position: relative;
  background: linear-gradient(165deg, var(--surface-2), var(--surface) 75%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.step:hover { transform: translateY(-4px); border-color: var(--accent-line); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px;
  inset-inline-end: 6px;
  font-family: var(--font-display);
  font-size: 118px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(94, 227, 106, 0.22);
  direction: ltr;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}
.step-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(235, 255, 240, 0.1);
}
.step-icon .icon { width: 26px; height: 26px; filter: drop-shadow(0 2px 8px rgba(94, 227, 106, 0.45)); }
.step-num { display: none; }
.step h3 { font-size: 19px; font-weight: 800; }
.step p { color: var(--muted); font-size: 14.5px; margin: 10px 0 0; }

/* ─── Value / compare: connected slash banner + tilted visual ─── */
.value-compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 80px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare-box {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: var(--surface);
  padding: 30px 38px;
  min-width: 220px;
}
.compare-label {
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 600;
}
.compare-old {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 27px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(94, 227, 106, 0.55);
  text-decoration-thickness: 2px;
  font-variant-numeric: tabular-nums;
}
.compare-arrow {
  align-self: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-grad);
  color: var(--accent-ink);
  margin-inline: -26px;
  z-index: 2;
  box-shadow: 0 10px 26px -8px rgba(94, 227, 106, 0.6), inset 0 1px 0 rgba(240, 255, 244, 0.7);
}
.compare-arrow .icon { width: 22px; height: 22px; }
.compare-now {
  background:
    radial-gradient(340px 150px at 50% 0%, rgba(94, 227, 106, 0.14), transparent 70%),
    var(--surface-2);
  border-inline-start: 1px solid var(--accent-line);
}
.compare-new {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  filter: drop-shadow(0 4px 16px rgba(94, 227, 106, 0.3));
}

.value-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.value-copy h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; letter-spacing: -0.4px; }
.value-copy > p { color: var(--muted); margin: 18px 0 0; max-width: 58ch; }

.value-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.value-list .icon {
  color: var(--accent);
  width: 21px;
  height: 21px;
  margin-top: 4px;
  filter: drop-shadow(0 2px 6px rgba(94, 227, 106, 0.4));
}
.value-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--accent-line);
  box-shadow: var(--shadow-deep);
  transform: rotate(-2.5deg);
  transition: transform 0.4s var(--ease);
}
.value-visual:hover { transform: rotate(0deg) scale(1.015); }
.value-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(235, 255, 240, 0.08) 0%, transparent 40%);
}
.value-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ─── FAQ: two-column grid ─── */
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.faq-list details {
  background: linear-gradient(160deg, var(--surface-2), var(--surface) 75%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-list details:hover { border-color: var(--line-strong); }
.faq-list details[open] {
  border-color: var(--accent-line);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.75);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon {
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-list details[open] summary .icon {
  transform: rotate(180deg);
}
.faq-list details p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.9;
}

/* ─── Final CTA: inverted gold band ─── */
.cta.section { padding-block: 120px; }
.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(240, 255, 244, 0.35), transparent 60%),
    linear-gradient(165deg, #8af59a 0%, #5ee36a 45%, #37c24c 100%);
  border: none;
  border-radius: 30px;
  padding: 84px 32px;
  color: var(--accent-ink);
  box-shadow:
    0 40px 100px -30px rgba(94, 227, 106, 0.45),
    var(--shadow-deep);
}
.cta-panel > * { position: relative; z-index: 1; }
.aurora-cta { display: none; }
.cta-panel h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #06130a;
}
.cta-panel p { color: rgba(4, 19, 9, 0.75); margin: 14px auto 34px; max-width: 40ch; font-weight: 500; }

/* invert the primary button inside the gold band */
.cta-panel .btn-primary {
  background: linear-gradient(180deg, #0c2513 0%, #06130a 100%);
  color: var(--accent-hi);
  box-shadow:
    0 14px 34px -10px rgba(4, 17, 8, 0.55),
    inset 0 1px 1px rgba(235, 255, 240, 0.18),
    inset 0 -3px 6px rgba(0, 0, 0, 0.55);
}
.cta-panel .btn-primary:hover {
  background: linear-gradient(180deg, #123018 0%, #0a1f10 100%);
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px -12px rgba(4, 17, 8, 0.65),
    inset 0 1px 1px rgba(235, 255, 240, 0.22),
    inset 0 -3px 6px rgba(0, 0, 0, 0.5);
}

.pay-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(4, 17, 8, 0.22);
  border: 1px solid rgba(4, 17, 8, 0.28);
  border-radius: 10px;
  padding: 8px 14px;
}
.pay-chip img { height: 20px; width: auto; }
.pay-chip.pay-mono img { filter: brightness(0) invert(1); opacity: 0.92; }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-raise);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-block: 68px 44px;
}
.footer-brand .brand-word { font-size: 26px; }
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 34ch;
  margin: 14px 0 0;
}
.footer h4 {
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s;
  width: fit-content;
}
.footer-links a:hover { color: var(--accent-hi); }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, transform 0.25s, background 0.25s;
}
.social-row a:hover {
  color: var(--accent-hi);
  border-color: var(--accent-line);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.social-row .icon { width: 20px; height: 20px; }
.footer-note { color: var(--muted-2); font-size: 12.5px; margin: 16px 0 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 12.5px;
}

/* ─── Floating WhatsApp ─── */
.wa-float {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2ee06c 0%, #1fb455 100%);
  color: #06130a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 34px -10px rgba(37, 211, 102, 0.55),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  transition: transform 0.3s var(--ease);
}
.wa-float .icon { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
@media (prefers-reduced-motion: no-preference) {
  .wa-float { animation: wapulse 2.6s ease-out infinite; }
  @keyframes wapulse {
    0% { box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.35); }
    70% { box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.55), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0); }
  }
}

/* ─── Mobile sticky buy bar ─── */
.sticky-buy {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 95;
  display: none;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 14, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.sticky-cta { flex: 1; }
.sticky-wa { padding-inline: 16px; }
.sticky-wa .icon { width: 21px; height: 21px; }

@media (max-width: 767px) {
  .sticky-buy:not([hidden]) { display: flex; }

  .wa-float { display: none; }
}

/* ─── Reveal on scroll ─── */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease) var(--d, 0s), transform 0.8s var(--ease) var(--d, 0s);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
}

/* ─── Responsive ─── */
@media (max-width: 1023px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(13, 18, 14, 0.97);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px 24px 24px;
    display: none;
    box-shadow: var(--shadow-deep);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a:not(.btn) {
    padding: 10px 0;
    font-size: 16px;
    width: 100%;
  }
  .nav-store-mobile { display: inline-flex; margin-top: 14px; }
  .nav-store-desktop { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-block: 150px 130px; }
  .hero-wall { inset: -30% -60%; }

  .trust { margin-top: -50px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 22px 0; padding-block: 22px; }
  .trust-item { padding-inline: 22px; }
  .trust-item:nth-child(3) { border-inline-start: none; }

  .product-grid { grid-template-columns: 1fr; }
  .card-featured:first-child { flex-direction: column; }
  .card-featured:first-child .card-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .card-featured:first-child .card-media::after {
    background: linear-gradient(to top, rgba(10, 14, 11, 0.85), transparent 45%);
  }
  .card-featured:first-child .card-body { padding: 28px; }
  .card-featured:first-child .buy-widget .btn { width: 100%; }

  .value-grid { grid-template-columns: 1fr; gap: 56px; }
  .value-visual { max-width: 360px; transform: rotate(-1.5deg); }

  .faq-list { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding-block: 76px; }
  .section-head { margin-bottom: 44px; }
  .section-head h2::before { font-size: 40px; }

  .hero { padding-block: 130px 110px; }
  .hero-wall { gap: 12px; }
  .wall-track { gap: 12px; }
  .hero-sub { font-size: 15.5px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; }

  .trust { margin-top: -40px; }
  .trust-row { grid-template-columns: 1fr; gap: 16px; padding-block: 20px; }
  .trust-item { border-inline-start: none !important; padding-inline: 22px; }

  .m-tile { width: 92px; }
  .m-group { gap: 12px; padding-inline-end: 12px; }
  .marquee { padding-block: 56px 36px; }

  .t-card { flex-basis: 300px; }
  .testi-head { margin-bottom: 36px; }

  .value-compare { margin-bottom: 56px; }
  .compare-box { flex-basis: 100%; padding: 24px 28px; }
  .compare-arrow { margin-block: -26px; margin-inline: auto; transform: rotate(90deg); }
  .compare-now { border-inline-start: none; border-top: 1px solid var(--accent-line); }

  .card-compact { flex-direction: column; }
  .card-media-side {
    width: 100% !important;
    aspect-ratio: 16 / 9;
  }
  .card-body { padding: 22px; }

  .steps-row { grid-template-columns: 1fr; gap: 20px; }
  .step p { max-width: none; }

  .cta.section { padding-block: 76px; }
  .cta-panel { padding: 56px 24px; border-radius: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
