/* ============================================================
   Nataša Rakić — Landing page
   Mobile-first. Color discipline:
   - Orange (--cta) ........ ONLY on buttons
   - Red (--urgency) ....... ONLY countdown + "cena raste"
   - Yellow (--accent) ..... highlight words on DARK sections
   - Magenta (--mag) ....... numbers + highlights (works light/dark)
   ============================================================ */

:root {
  /* Base */
  --bg-dark: #0E0E10;
  --bg-light: #FFFFFF;
  --card-dark: #1C1C20;

  /* Brand accents (highlights only) */
  --accent-yellow: #E8FF3A;
  --accent-magenta: #FF1E8E;

  /* CTA — buttons only */
  --cta: #FF6A00;
  --cta-hover: #FF8A33;

  /* Urgency — countdown + "cena raste" only */
  --urgency: #FF2D2D;

  /* Neutrals */
  --text-dark: #0E0E10;
  --text-light: #FFFFFF;
  --text-muted: #6B6B70;
  --text-muted-dark: #9A9AA2; /* muted text on dark bg (accessible) */
  --line: #E5E5E5;
  --line-dark: rgba(255, 255, 255, 0.10);

  /* Fonts */
  --font-display: 'Anton', 'Inter', Arial, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Caveat', cursive;

  --header-h: 104px;
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1160px;
  --maxw-narrow: 760px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;            /* 17px — never below this on mobile */
  line-height: 1.6;
  color: var(--text-light);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
s { color: var(--text-muted); }

/* ---------- Typography ---------- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 8.5vw, 4.5rem); }          /* 36 → 72 */
h2 { font-size: clamp(1.75rem, 6vw, 3rem); line-height: 1.18; } /* 28 → 48; roomy enough for Ž/Š/Č carons */
h3 { font-family: var(--font-body); font-weight: 700; font-size: clamp(1.25rem, 3.5vw, 1.6rem); line-height: 1.25; margin: 0 0 0.5em; }
p  { margin: 0 0 1rem; max-width: 68ch; }

/* Highlights */
.hl      { color: var(--accent-yellow); }
.hl-mag  { color: var(--accent-magenta); }
.u-red   { color: var(--urgency); }
.muted   { color: var(--text-muted-dark); font-weight: 400; }

/* Accent script font */
.signature {
  font-family: var(--font-accent);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--accent-magenta);
  font-weight: 700;
  margin-top: 0.25rem;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: var(--maxw-narrow); }
.centered { text-align: center; }
p.centered { margin-left: auto; margin-right: auto; }

.section { padding: 64px 0; position: relative; }
.section--dark  { background: var(--bg-dark);  color: var(--text-light); }
.section--light { background: var(--bg-light); color: var(--text-dark); }
.section--light p { color: #2A2A2E; }
.section--light .muted { color: var(--text-muted); }

section[id] { scroll-margin-top: var(--header-h); }

/* Subtle radial glow on dark sections for depth */
.section--dark::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(80% 60% at 50% -10%, rgba(232, 255, 58, 0.05), transparent 60%);
}

/* ============================================================
   BUTTONS (the ONLY place orange appears)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 52px;
  padding: 15px 28px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.25s cubic-bezier(.16,1,.3,1), background-color 0.25s ease, box-shadow 0.7s ease;
}
.btn--cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(255, 106, 0, 0.7);
}
.btn--cta:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(255, 106, 0, 0.8); }
.btn--cta:active { transform: translateY(0); }

/* Liquid animated-gradient nav button (ported from 21st.dev "button-1"
   liquid effect to vanilla CSS, brand colors). Moving blurred magenta/
   orange/yellow blobs over a dark pill; label turns yellow on hover. */
.liquid-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  border-radius: 999px;
  background: #0E0E10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px -10px rgba(255, 30, 142, 0.5);
  transition: color 0.3s ease, box-shadow 0.35s ease, transform 0.3s ease, border-color 0.3s ease;
}
.liquid-btn:hover, .liquid-btn:focus-visible {
  color: var(--accent-yellow);
  transform: translateY(-2px);
  border-color: rgba(232, 255, 58, 0.4);
  box-shadow: 0 16px 32px -10px rgba(255, 30, 142, 0.7);
}
.liquid-btn__label { position: relative; z-index: 2; }
.liquid-btn__blobs { position: absolute; inset: -60%; z-index: 0; filter: blur(13px); opacity: 0.92; transition: opacity 0.35s ease; }
.liquid-btn:hover .liquid-btn__blobs { opacity: 1; }
.liquid-btn__blobs span {
  position: absolute; width: 75%; height: 220%; border-radius: 45%;
  mix-blend-mode: screen;
}
.liquid-btn__blobs span:nth-child(1) { background: radial-gradient(circle, #FF1E8E, transparent 62%); left: -12%; top: -55%; animation: liquid-a 7s ease-in-out infinite; }
.liquid-btn__blobs span:nth-child(2) { background: radial-gradient(circle, #FF6A00, transparent 62%); left: 28%;  top: -45%; animation: liquid-b 9s ease-in-out infinite; }
.liquid-btn__blobs span:nth-child(3) { background: radial-gradient(circle, #E8FF3A, transparent 62%); left: 55%;  top: -55%; animation: liquid-c 8s ease-in-out infinite; }
@keyframes liquid-a { 0%, 100% { transform: translate(0, 0) scale(1); }    50% { transform: translate(45%, 18%) scale(1.4); } }
@keyframes liquid-b { 0%, 100% { transform: translate(0, 0) scale(1.1); }  50% { transform: translate(-32%, 14%) scale(0.8); } }
@keyframes liquid-c { 0%, 100% { transform: translate(0, 0) scale(0.9); }  50% { transform: translate(-26%, 22%) scale(1.35); } }
@media (prefers-reduced-motion: reduce) {
  .liquid-btn__blobs span { animation: none; }
  .liquid-btn { transition: color 0.3s ease; }
}
.btn--lg { min-height: 60px; padding: 19px 36px; font-size: 1.15rem; }
.btn--block { display: flex; width: 100%; }
:focus-visible { outline: 3px solid var(--accent-yellow); outline-offset: 3px; border-radius: 4px; }

.micro { font-size: 0.875rem; color: var(--text-muted-dark); margin: 0.7rem 0 0; }
.section--light .micro { color: var(--text-muted); }

/* ============================================================
   STICKY HEADER (announcement + nav)
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }

.announce {
  position: relative;
  overflow: hidden;
  background: #0a0507;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.95rem;
}
/* Animated urgency sheen — ported from the rainbow Banner's flow() effect,
   adapted to brand colors (red + magenta). A moving repeating gradient,
   masked to a soft top-center glow. Respects prefers-reduced-motion (global rule). */
.announce::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(70deg,
    rgba(255, 45, 45, 0.42) 0%,
    rgba(255, 30, 142, 0.42) 9%,
    transparent 18%,
    rgba(255, 30, 142, 0.42) 27%,
    transparent 36%,
    rgba(255, 45, 45, 0.42) 45%,
    transparent 50%);
  background-size: 200% 100%;
  filter: saturate(1.7);
  -webkit-mask-image: linear-gradient(to bottom, #fff, transparent), radial-gradient(circle at top center, #fff, transparent);
  mask-image: linear-gradient(to bottom, #fff, transparent), radial-gradient(circle at top center, #fff, transparent);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  animation: announce-flow 20s linear infinite;
  pointer-events: none;
}
@keyframes announce-flow {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}
.announce__inner {
  position: relative;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 10px 18px; flex-wrap: wrap;
  padding: 14px 20px;
  text-align: center;
}
.announce__text { color: #fff; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.55); }
.announce__text strong { font-weight: 700; }
.announce__count { font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: 0.02em; white-space: nowrap; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.55); }
/* Brighter red so the urgency text stays legible over the animated gradient (banner only) */
.announce .u-red { color: #FF5A5A; }

.nav { background: rgba(14, 14, 16, 0.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-dark); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.nav__logo { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.02em; text-transform: uppercase; display: inline-flex; align-items: baseline; gap: 9px; }
.nav__logo__tag { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-magenta); line-height: 1; align-self: center; }
@media (max-width: 380px) { .nav__logo__tag { display: none; } }
/* Tubelight navbar — glass pill with a glowing "lamp" that springs to the active link */
.nav__links {
  display: none;
  position: relative;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 5px;
  list-style: none;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}
.nav__links li { list-style: none; }
.nav__links a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-muted-dark);
  transition: color 0.3s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a.is-active { color: var(--accent-yellow); }

.tube-lamp {
  position: absolute;
  top: 5px; left: 0;
  width: 0; height: 0;
  border-radius: 999px;
  background: rgba(232, 255, 58, 0.08);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.35, 0.5, 1), width 0.45s cubic-bezier(0.34, 1.35, 0.5, 1);
}
.tube-lamp::before { /* the glowing tube bar above the active item */
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 60%; max-width: 44px; height: 4px;
  background: var(--accent-yellow);
  border-radius: 999px;
  box-shadow:
    0 0 12px 2px rgba(232, 255, 58, 0.75),
    0 0 26px 6px rgba(232, 255, 58, 0.35),
    0 0 34px 10px rgba(255, 30, 142, 0.30);
}
.nav__cta { display: none; min-height: 44px; padding: 10px 22px; font-size: 0.95rem; }

/* Hamburger */
.nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 0 11px; background: transparent; border: 1px solid var(--line-dark); border-radius: 12px; }
.nav__toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: flex; flex-direction: column; gap: 4px; padding: 14px 20px 22px; background: var(--bg-dark); border-bottom: 1px solid var(--line-dark); }
.nav__mobile[hidden] { display: none; } /* author rule must beat base .nav__mobile to honor the hidden attribute */
.nav__mobile a { padding: 12px 4px; font-size: 1.125rem; font-weight: 500; color: #fff; }
.nav__mobile .btn { margin-top: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 48px; position: relative; isolation: isolate; }
.hero > .container { position: relative; z-index: 2; }
/* WebGL light-rays canvas layer (behind hero content, above section bg) */
.hero__rays { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__rays canvas { display: block; width: 100%; height: 100%; }
.hero__grid { display: grid; gap: 36px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 18px 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 26px -18px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  font-size: 0.9rem; font-weight: 500; line-height: 1.4;
  color: #EDEDED;
  max-width: 100%;
}
/* Pulsing "live" dot */
.pill__dot {
  position: relative;
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-magenta);
  box-shadow: 0 0 10px 1px rgba(255, 30, 142, 0.85);
}
.pill__dot::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--accent-magenta);
  animation: pill-pulse 1.8s ease-out infinite;
}
@keyframes pill-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
/* Section eyebrows styled as the hero pill (uppercase mini-label + pulse dot) */
.pill--eyebrow {
  margin-bottom: 16px;
  padding: 7px 16px 7px 13px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
}
.pill--eyebrow .pill__dot { width: 8px; height: 8px; }
/* Light-section variant (newsletter): dark text on a soft light glass pill */
.pill--light {
  border-color: rgba(14, 14, 16, 0.12);
  background: linear-gradient(180deg, rgba(14, 14, 16, 0.05), rgba(14, 14, 16, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 26px -18px rgba(14, 14, 16, 0.35);
  color: #2A2A2E;
}
.hero h1 { margin-bottom: 22px; }
/* SplitText hero-title load animation (ported from React Bits "SplitText") */
.hero__title.split-ready { overflow: hidden; }
.hero__title .split-word { display: inline-block; white-space: nowrap; }
.hero__title.split-ready .split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.hero__title.split-in .split-char { opacity: 1; transform: none; }
.lede { font-size: clamp(1.0625rem, 2.2vw, 1.25rem); color: #D3D3D8; max-width: 60ch; }
.hero__cta { margin: 28px 0 8px; }
.hero__cta .btn { width: 100%; }

/* ============================================================
   SHINY CTA — hero button (ported from the shiny-button component,
   brand colors: orange fill + animated yellow/white shine).
   Pure CSS; uses @property for the rotating conic-gradient border. */
@property --gradient-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gradient-angle-offset { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gradient-percent { syntax: "<percentage>"; initial-value: 5%; inherits: false; }
@property --gradient-shine { syntax: "<color>"; initial-value: #ffffff; inherits: false; }

.shiny-cta {
  --shiny-cta-bg: #FF6A00;
  --shiny-cta-bg-subtle: #c9560a;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: #E8FF3A;
  --shiny-cta-highlight-subtle: #F4FF9B;
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1.1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
    conic-gradient(
      from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-cta-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)
    ) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle), 0 12px 28px -10px rgba(255, 106, 0, 0.7);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine;
}
.shiny-cta::before, .shiny-cta::after, .shiny-cta span::before {
  content: ""; pointer-events: none; position: absolute;
  inset-inline-start: 50%; inset-block-start: 50%;
  translate: -50% -50%; z-index: -1;
}
.shiny-cta:active { translate: 0 1px; }
/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size); height: var(--size);
  background: radial-gradient(circle at var(--position) var(--position), #fff calc(var(--position) / 4), transparent 0) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
  border-radius: inherit;
  opacity: 0.22;
  z-index: -1;
}
/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--shiny-cta-highlight), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.5;
}
.shiny-cta span { z-index: 1; display: inline-flex; align-items: center; }
/* Arrow shows ONLY on hover: bigger, slides + fades in. No transform on the
   arrow (transform would create a stacking context that hid the button glow
   behind it = the "orange square"); we animate max-width/opacity instead. */
.shiny-cta__arrow {
  display: inline-flex; align-items: center; overflow: hidden;
  max-width: 0; margin-left: 0; opacity: 0;
  transition: max-width 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              margin-left 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
}
.shiny-cta__arrow svg { width: 1.5em; height: 1.5em; flex: 0 0 auto; display: block; }
.shiny-cta:is(:hover, :focus-visible) .shiny-cta__arrow { max-width: 1.6em; margin-left: 0.5em; opacity: 1; }
.shiny-cta span::before {
  --size: calc(100% + 1rem);
  width: var(--size); height: var(--size);
  box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
  opacity: 0;
  transition: opacity var(--transition);
  animation: calc(var(--duration) * 1.5) breathe linear infinite;
}
.shiny-cta, .shiny-cta::before, .shiny-cta::after {
  animation: var(--animation) var(--duration), var(--animation) calc(var(--duration) / 0.4) reverse paused;
  animation-composition: add;
}
.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
}
.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after { animation-play-state: running; }
.shiny-cta:is(:hover, :focus-visible) span::before { opacity: 1; }
/* Block variant (price section): same shiny CTA, no arrow, drop shadow + hover lift */
.shiny-cta--block {
  display: flex;
  width: 100%;
  transition: translate 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.7s ease;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle),
              0 14px 30px -10px rgba(255, 106, 0, 0.6),
              0 10px 24px -12px rgba(0, 0, 0, 0.5);
}
.shiny-cta--block:is(:hover, :focus-visible) {
  translate: 0 -4px;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle),
              0 24px 46px -12px rgba(255, 106, 0, 0.85),
              0 14px 30px -12px rgba(0, 0, 0, 0.55);
}
.shiny-cta--block:active { translate: 0 -1px; }
@media (prefers-reduced-motion: reduce) {
  .shiny-cta--block { transition: box-shadow 0.7s ease; }
}

@keyframes gradient-angle { to { --gradient-angle: 360deg; } }
@keyframes shimmer { to { rotate: 360deg; } }
@keyframes breathe { from, to { scale: 1; } 50% { scale: 1.2; } }

.stat-row { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-dark); list-style: none; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-size: clamp(1.75rem, 6vw, 2.4rem); color: var(--accent-magenta); line-height: 1; font-variant-numeric: tabular-nums; transition: text-shadow 0.6s ease, transform 0.6s ease; }
/* While the number is counting up, give it a live magenta glow + tiny pop */
.stat__num--counting { text-shadow: 0 0 22px rgba(255, 30, 142, 0.65); transform: scale(1.06); }
.stat__lbl { font-size: 0.85rem; color: var(--text-muted-dark); margin-top: 4px; }

/* Media placeholders */
.media-ph {
  width: 100%;
  display: grid; place-items: center;
  text-align: center;
  border: 2px dashed rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,30,142,0.08), rgba(232,255,58,0.05)),
    var(--card-dark);
  color: var(--text-muted-dark);
  font-size: 0.95rem; font-weight: 500;
  padding: 24px;
}
.media-ph--portrait { aspect-ratio: 4 / 5; }
/* Hero photo */
.hero__media { max-width: 380px; margin-inline: auto; }
.hero__photo {
  display: block;
  width: 100%;
  height: auto;                 /* keep the photo's natural ratio — no crop */
  max-height: 70vh;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85),
              0 0 60px -28px rgba(255, 30, 142, 0.55);
}
.media-ph--light { background: linear-gradient(135deg, rgba(255,30,142,0.06), rgba(14,14,16,0.03)), #F4F4F5; border-color: rgba(14,14,16,0.18); color: var(--text-muted); }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem__lines { list-style: none; margin: 30px 0; padding: 0; display: grid; gap: 12px; }
.problem-card {
  position: relative;
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease;
}
/* left gradient bar grows on hover */
.problem-card::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 3px; height: 0;
  transform: translateY(-50%);
  background: linear-gradient(var(--accent-yellow), var(--accent-magenta));
  border-radius: 0 3px 3px 0;
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-card__num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.14);
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.28);
  transition: color 0.4s ease, -webkit-text-stroke-color 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.5, 1), text-shadow 0.4s ease;
}
.problem-card p {
  margin: 0; max-width: none;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  color: #E2E2E6;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-card:hover { transform: translateY(-4px); border-color: rgba(255, 30, 142, 0.35); background: rgba(255, 255, 255, 0.045); }
.problem-card:hover::before { height: 62%; }
.problem-card:hover .problem-card__num {
  color: var(--accent-magenta);
  -webkit-text-stroke-color: transparent;
  transform: scale(1.12);
  text-shadow: 0 0 22px rgba(255, 30, 142, 0.55);
}
.problem-card:hover p { transform: translateX(6px); }

.problem__close { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 700; line-height: 1.5; max-width: 34ch; }
.problem__close .u-accent { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.break-mobile { display: none; }
.only-mobile { display: none; }
.hide-mobile { display: inline; }
@media (max-width: 600px) {
  .break-mobile { display: block; }
  .only-mobile { display: inline; }
  .hide-mobile { display: none; }
}

/* ============================================================
   STORY (light)
   ============================================================ */
.story__grid { display: grid; gap: 32px; }
.story__copy h2 { color: var(--text-dark); }
.story__media .media-ph { position: sticky; top: var(--header-h); }
.story__media .ba { position: sticky; top: var(--header-h); }

/* Before/After comparison slider (drag to reveal "danas") */
.ba {
  --pos: 85%;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 64px -28px rgba(14, 14, 16, 0.45);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.ba:focus-visible { outline: 3px solid var(--accent-magenta); outline-offset: 3px; }
.ba__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none; -webkit-user-drag: none;
}
/* per-image framing so the head sits at a similar height in both */
.ba__img--before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); object-position: center 6%; }
.ba__img--after  { object-position: center 8%; }
.ba__tag {
  position: absolute; top: 14px; z-index: 3;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(14, 14, 16, 0.62); color: #fff; backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; transform: translateX(-50%); z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(14, 14, 16, 0.12), 0 0 18px rgba(255, 30, 142, 0.5);
  pointer-events: none;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-magenta); color: #fff;
  box-shadow: 0 8px 20px -4px rgba(255, 30, 142, 0.65);
}
.ba__knob svg { width: 22px; height: 22px; display: block; }
/* gentle hint nudge until first interaction */
.ba:not(.ba--touched) .ba__handle { animation: ba-hint 2.4s ease-in-out infinite; }
@keyframes ba-hint {
  0%, 100% { margin-left: 0; }
  50% { margin-left: -14px; }
}
@media (prefers-reduced-motion: reduce) {
  .ba:not(.ba--touched) .ba__handle { animation: none; }
}

/* ============================================================
   3 GREŠKE
   ============================================================ */
.mistakes { isolation: isolate; overflow: hidden; }
.mistakes > .container { position: relative; z-index: 1; }
/* Interactive dot-grid background (ported from React Bits "DotGrid" → vanilla canvas) */
.mistakes__dots { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55; }
.mistakes__dots canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.mistakes h2 { margin-bottom: 40px; }
.mistakes__grid { display: grid; gap: 20px; }
.mistake-card {
  background: linear-gradient(160deg, rgba(38, 30, 40, 0.85), rgba(20, 18, 24, 0.85));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 30px 26px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease, box-shadow 0.7s ease, background 0.4s ease;
}
/* top sheen line that sweeps in on hover */
.mistake-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-magenta), var(--accent-yellow), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
/* soft radial glow that fades in on hover */
.mistake-card::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 50% at 18% 0%, rgba(255, 30, 142, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.mistake-card > * { position: relative; z-index: 1; }
.mistake-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 30, 142, 0.45);
  box-shadow: 0 18px 44px -18px rgba(255, 30, 142, 0.45), 0 6px 18px -10px rgba(0, 0, 0, 0.6);
}
.mistake-card:hover::before { transform: scaleX(1); }
.mistake-card:hover::after { opacity: 1; }

.mistake-card__num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.9;
  margin-bottom: 14px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-magenta);
  text-stroke: 1.5px var(--accent-magenta);
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.4s ease, text-shadow 0.4s ease, -webkit-text-stroke-color 0.4s ease;
}
.mistake-card:hover .mistake-card__num {
  color: var(--accent-magenta);
  -webkit-text-stroke-color: transparent;
  transform: scale(1.18) translateX(2px);
  text-shadow: 0 0 26px rgba(255, 30, 142, 0.7);
}
.mistake-card h3 { color: #fff; transition: transform 0.4s ease; }
.mistake-card:hover h3 { transform: translateX(4px); }
.mistake-card p { color: #C7C7CD; font-size: 1rem; }
.mistake-card p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .mistake-card, .mistake-card__num, .mistake-card h3,
  .mistake-card::before, .mistake-card::after { transition: none; }
}

/* ============================================================
   VIDEO TESTIMONIAL CARDS (visually distinct)
   ============================================================ */
.vsection { padding: 48px 0; }
/* Two-up testimonial layout: side-by-side on desktop, stacked on mobile */
.vcard-duo { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 920px; margin: 0 auto; align-items: stretch; }
.vcard-duo .vcard { display: flex; flex-direction: column; height: 100%; }
.vcard-duo .vcard__video { width: 100%; } /* flex column + auto margins would otherwise shrink it to content */
.vcard-duo .vcard:nth-child(2) { transition-delay: 0.12s; } /* stagger the second card's reveal */
@media (min-width: 760px) {
  .vcard-duo { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@property --vc-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.vcard {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 30, 142, 0.12), transparent 60%),
    linear-gradient(165deg, #1F1825 0%, #141218 72%);
  border-radius: var(--radius-lg);
  padding: 26px 22px 28px;
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8),
              0 0 42px -22px rgba(255, 30, 142, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease;
}
/* animated brand-color gradient ring (rotates slowly) */
.vcard::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.6px;
  background: conic-gradient(from var(--vc-angle),
    var(--accent-magenta), var(--accent-yellow), var(--cta), var(--accent-magenta));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  animation: vc-spin 9s linear infinite;
}
@keyframes vc-spin { to { --vc-angle: 360deg; } }
/* soft inner glow in the top-left, gives depth at rest */
.vcard::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(70% 50% at 15% 0%, rgba(232, 255, 58, 0.08), transparent 60%);
  pointer-events: none; z-index: 0;
}
.vcard > * { position: relative; z-index: 1; }
/* Subtle interactive white dot-grid; brightens near the cursor on hover */
.vcard__dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit; overflow: hidden;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 1px, transparent 1.6px);
  background-size: 20px 20px;
  opacity: 0.13;
  transition: opacity 0.4s ease;
}
.vcard__dots::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.95) 1px, transparent 1.6px);
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-mask: radial-gradient(110px circle at var(--mx, 50%) var(--my, 50%), #000 0%, transparent 62%);
          mask: radial-gradient(110px circle at var(--mx, 50%) var(--my, 50%), #000 0%, transparent 62%);
}
.vcard:hover .vcard__dots { opacity: 0.18; }
.vcard:hover .vcard__dots::before { opacity: 0.55; }
@media (prefers-reduced-motion: reduce) { .vcard__dots, .vcard__dots::before { transition: none; } }
.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 70px -30px rgba(0, 0, 0, 0.85),
              0 0 60px -16px rgba(255, 30, 142, 0.7),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/* battery/readability: hold the ring still on touch + reduced motion */
@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .vcard::before { animation: none; background: linear-gradient(135deg, var(--accent-magenta), var(--accent-yellow)); }
  .vcard { transition: none; }
}
.vcard__badge {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-yellow);
  background: rgba(232,255,58,0.10);
  border: 1px solid rgba(232,255,58,0.25);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.vcard__trigger {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 3.4vw, 1.6rem);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
  text-transform: none;
  max-width: 36ch;
}
.vcard__video {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 340px; margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  border: 2px dashed rgba(255,255,255,0.18);
  background: linear-gradient(160deg, rgba(255,30,142,0.10), rgba(14,14,16,0.4)), #121215;
  color: var(--text-muted-dark);
  overflow: hidden; /* clip the lazily-loaded iframe to the rounded frame */
}
/* Lazily-loaded video embed (facade pattern) fills the frame */
.vcard__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: inherit; }
.vcard__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; background: #000; z-index: 3; }
.vcard__video[data-video] { cursor: pointer; border-style: solid; border-color: var(--line-dark); }
.vcard__video[data-video]:focus-visible { outline: 3px solid var(--accent-magenta); outline-offset: 3px; }
/* Poster thumbnail (a real frame from the video) */
.vcard__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; z-index: 0; }
.vcard__video[data-video]::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; border-radius: inherit;
  background: linear-gradient(180deg, rgba(14, 14, 16, 0.12), rgba(14, 14, 16, 0.5));
}
.vcard__video[data-video] .vcard__play { position: relative; z-index: 2; }
.vcard__video[data-video] .vcard__phlabel { z-index: 2; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.vcard__video--playing::after { display: none; }
.vcard__video--wide { aspect-ratio: 16 / 9; max-width: 100%; }
.vcard__phlabel { position: absolute; bottom: 14px; font-size: 0.85rem; }
.vcard__play {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; color: #0E0E10;
  border: none; font-size: 1.4rem; line-height: 1; padding-left: 4px;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.25s ease;
}
.vcard__play:hover { transform: scale(1.08); }
.vcard__caption { text-align: center; }
.vcard__caption p { color: #D3D3D8; font-size: 1rem; max-width: none; }
.vcard__caption p:last-child { margin-bottom: 0; }
.vcard__quote { font-style: italic; color: #fff; }
.vcard__result { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent-magenta); margin: 6px 0; }
.vcard--inline { margin-top: 22px; }
.vcard--inline .vcard__caption p { color: #C7C7CD; }

/* ============================================================
   STEPS (light)
   ============================================================ */
.steps { position: relative; isolation: isolate; overflow: hidden; }
/* Gradient grid background (ported from the 21st.dev "gradient-blur-bg", brand colors) */
.steps__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(14, 14, 16, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 14, 16, 0.05) 1px, transparent 1px),
    radial-gradient(circle 620px at 100% 0%, rgba(255, 30, 142, 0.13), transparent),
    radial-gradient(circle 520px at 0% 100%, rgba(232, 255, 58, 0.16), transparent);
  background-size: 64px 52px, 64px 52px, 100% 100%, 100% 100%;
  -webkit-mask-image: radial-gradient(130% 100% at 50% 0%, #000 55%, transparent 100%);
          mask-image: radial-gradient(130% 100% at 50% 0%, #000 55%, transparent 100%);
}
.steps > .container { position: relative; z-index: 1; }
.steps h2 { color: var(--text-dark); margin-bottom: 16px; }
.steps__intro { color: var(--text-muted); font-size: 1.0625rem; max-width: 60ch; margin-bottom: 16px; }
.steps__sub { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.2rem, 3.6vw, 1.7rem); color: var(--text-dark); line-height: 1.18; margin: 0 auto 36px; }
.steps__grid { display: grid; gap: 22px; counter-reset: step; }
.step {
  background: linear-gradient(180deg, #FFFFFF, #FAFAFB);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px -16px rgba(14, 14, 16, 0.3);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease, box-shadow 0.7s ease;
}
/* top accent bar that sweeps in on hover */
.step::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-magenta), var(--accent-yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 30, 142, 0.35);
  box-shadow: 0 22px 50px -24px rgba(255, 30, 142, 0.45), 0 8px 20px -14px rgba(14, 14, 16, 0.25);
}
.step:hover::before { transform: scaleX(1); }
.step__num {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-magenta), #C9107A);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -8px rgba(255, 30, 142, 0.6);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.step:hover .step__num {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 14px 30px -6px rgba(255, 30, 142, 0.78);
}
.step h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-dark); font-size: 1.5rem; transition: transform 0.4s ease; }
.step:hover h3 { transform: translateX(4px); }
.step p { color: #3A3A40; margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .step, .step__num, .step h3, .step::before { transition: none; }
}

/* ============================================================
   CHALLENGE (dark) — checklist
   ============================================================ */
.challenge h2 { margin-bottom: 28px; }
.checklist { display: grid; gap: 14px; max-width: 60ch; margin: 0 auto 28px; }
.checklist li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(150deg, rgba(34, 30, 38, 0.9), rgba(20, 19, 24, 0.9));
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  font-size: 1.0625rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease, box-shadow 0.7s ease;
}
/* glow that sweeps from the left on hover */
.checklist li::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 80% at 0% 50%, rgba(232, 255, 58, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.checklist li:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 255, 58, 0.4);
  box-shadow: 0 16px 40px -20px rgba(232, 255, 58, 0.35), 0 6px 16px -10px rgba(0, 0, 0, 0.6);
}
.checklist li:hover::before { opacity: 1; }

/* icon badge: outlined by default, fills with brand yellow on hover */
.checklist__ic {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1.5px solid rgba(232, 255, 58, 0.55);
  background: rgba(232, 255, 58, 0.06);
  color: var(--accent-yellow);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.4s ease, border-color 0.4s ease,
              color 0.4s ease, box-shadow 0.4s ease;
}
.checklist__ic svg { width: 22px; height: 22px; display: block; }
.checklist li:hover .checklist__ic {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: #0E0E10;
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 24px rgba(232, 255, 58, 0.55);
}
.checklist__txt { position: relative; z-index: 1; transition: transform 0.4s ease; }
.checklist li:hover .checklist__txt { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .checklist li, .checklist__ic, .checklist__txt, .checklist li::before { transition: none; }
}
.challenge__line { text-align: center; font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: #E2E2E6; max-width: 56ch; margin: 0 auto; }

/* ============================================================
   OFFER + BONUSI (light)
   ============================================================ */
.offer h2 { color: var(--text-dark); margin-bottom: 30px; }
.offer__list { margin: 0 auto 44px; }
/* Light variant of the animated icon-checklist (magenta accent) */
.checklist--light li {
  background: linear-gradient(180deg, #FFFFFF, #FAFAFB);
  border: 1px solid var(--line);
  color: #2A2A2E;
  box-shadow: 0 8px 22px -16px rgba(14, 14, 16, 0.28);
}
.checklist--light li:hover {
  border-color: rgba(255, 30, 142, 0.4);
  box-shadow: 0 18px 44px -22px rgba(255, 30, 142, 0.4), 0 8px 18px -14px rgba(14, 14, 16, 0.22);
}
.checklist--light li::before {
  background: radial-gradient(60% 80% at 0% 50%, rgba(255, 30, 142, 0.1), transparent 70%);
}
.checklist--light .checklist__ic {
  border-color: rgba(255, 30, 142, 0.5);
  background: rgba(255, 30, 142, 0.07);
  color: var(--accent-magenta);
}
.checklist--light li:hover .checklist__ic {
  background: var(--accent-magenta);
  border-color: var(--accent-magenta);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 30, 142, 0.5);
}
.bonus-grid { display: grid; gap: 20px; align-items: start; }
/* Bonus cards with cursor-following border glow + spotlight
   (ported from React Bits "MagicBento", brand colors, no particles) */
.bonus-card {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 280px;
  --glow: 255, 30, 142; /* brand magenta */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    radial-gradient(130% 80% at 100% 0%, rgba(255, 30, 142, 0.14), transparent 55%),
    radial-gradient(110% 70% at 0% 100%, rgba(232, 255, 58, 0.06), transparent 60%),
    linear-gradient(165deg, #1B1521 0%, #0E0E10 72%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative; overflow: hidden;
  box-shadow: 0 14px 36px -22px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.7s ease, border-color 0.4s ease;
}
/* persistent top sheen so the card never looks flat at rest */
.bonus-card__ic {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--accent-yellow);
  background: linear-gradient(150deg, rgba(255, 30, 142, 0.22), rgba(255, 30, 142, 0.06));
  border: 1px solid rgba(255, 30, 142, 0.32);
  box-shadow: 0 6px 16px -8px rgba(255, 30, 142, 0.5);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.bonus-card__ic svg { width: 24px; height: 24px; display: block; }
.bonus-card:hover .bonus-card__ic { transform: scale(1.08) rotate(-5deg); box-shadow: 0 10px 22px -6px rgba(255, 30, 142, 0.65); }
.bonus-card__value {
  position: relative; z-index: 1;
  margin-top: auto; padding-top: 16px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--text-muted-dark);
}
.bonus-card__value s { color: #6B6B70; }
/* interactive border glow that follows the cursor (masked to the 1px edge) */
.bonus-card::after {
  content: "";
  position: absolute; inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(var(--glow), calc(var(--glow-intensity) * 0.9)) 0%,
    rgba(var(--glow), calc(var(--glow-intensity) * 0.4)) 35%,
    transparent 65%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
/* soft inner spotlight that brightens toward the cursor */
.bonus-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(var(--glow), calc(var(--glow-intensity) * 0.14)) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 30, 142, 0.35);
  box-shadow: 0 24px 54px -26px rgba(255, 30, 142, 0.5), 0 10px 24px -16px rgba(0, 0, 0, 0.6);
}
.bonus-card > * { position: relative; z-index: 1; }
.bonus-card__tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent-yellow);
  padding: 6px 12px; margin-bottom: 16px;
  border: 1px solid rgba(232, 255, 58, 0.35);
  border-radius: 999px;
  background: rgba(232, 255, 58, 0.07);
}
.bonus-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: #fff; font-size: 1.55rem; letter-spacing: 0.01em; }
.bonus-card__meta { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; text-transform: none; color: var(--text-muted-dark); white-space: nowrap; }
.bonus-card p { color: #C7C7CD; margin-bottom: 0; font-size: 0.98rem; }
/* bold subheadline + checkmark bullets */
.bonus-card__sub { color: var(--accent-yellow); font-weight: 800; font-size: 1.1rem; line-height: 1.32; margin: 10px 0 16px; }
/* "Više" toggle — benefits collapsed by default, expand on click */
.bonus-card__toggle {
  display: inline-flex; align-items: center; gap: 7px;
  align-self: flex-start;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  color: var(--accent-magenta); cursor: pointer;
  background: rgba(255, 30, 142, 0.12); border: 1px solid rgba(255, 30, 142, 0.4);
  padding: 9px 18px; border-radius: 999px; margin: 14px 0 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.bonus-card__toggle:hover { background: rgba(255, 30, 142, 0.22); border-color: rgba(255, 30, 142, 0.6); }
.bonus-card__chev { font-size: 0.8rem; line-height: 1; transition: transform 0.3s ease; }
.bonus-card.is-open .bonus-card__chev { transform: rotate(180deg); }
.bonus-card__more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s cubic-bezier(.16,1,.3,1); }
.bonus-card.is-open .bonus-card__more { grid-template-rows: 1fr; }
.bonus-card__more > div { overflow: hidden; }
.bonus-card__mock {
  display: block;
  width: 78%;
  max-width: 240px;
  height: auto;
  margin: 14px auto 4px;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55));
}
.bonus-card__list { list-style: none; display: grid; gap: 11px; margin: 14px 0 20px; padding: 0; }
.bonus-card__list li { position: relative; padding-left: 26px; font-size: 1.0625rem; line-height: 1.45; color: #D6D6DC; }
.bonus-card__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.05em;
  color: var(--accent-magenta); font-weight: 700; font-size: 0.95rem;
}
.bonus-card__list li s { color: #6B6B70; }

@media (prefers-reduced-motion: reduce) {
  .bonus-card { transition: none; }
}

/* ============================================================
   FIT — za koga jeste / nije (dark)
   ============================================================ */
.fit h2 { margin-bottom: 36px; }
.fit__grid { display: grid; gap: 20px; }
.fit__col {
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease, box-shadow 0.7s ease;
}
/* left card = "NIJE za tebe" → red themed */
.fit__col--no {
  border-color: rgba(255, 45, 45, 0.28);
  background: linear-gradient(180deg, rgba(255, 45, 45, 0.06), transparent), var(--card-dark);
}
.fit__col--no:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 45, 0.55);
  box-shadow: 0 24px 50px -26px rgba(255, 45, 45, 0.55), 0 10px 24px -16px rgba(0, 0, 0, 0.6);
}
.fit__col--yes {
  border-color: rgba(232, 255, 58, 0.30);
  background: linear-gradient(180deg, rgba(232, 255, 58, 0.06), transparent), var(--card-dark);
}
.fit__col--yes:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 255, 58, 0.55);
  box-shadow: 0 24px 50px -26px rgba(232, 255, 58, 0.4), 0 10px 24px -16px rgba(0, 0, 0, 0.6);
}
.fit__title { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; margin-bottom: 18px; transition: transform 0.4s ease, color 0.35s ease; }
.fit__col--no .fit__title { color: #FF7A7A; }
.fit__col--yes .fit__title { color: var(--accent-yellow); }
.fit__col--no:hover .fit__title { color: var(--urgency); transform: translateX(3px); }
.fit__col--yes:hover .fit__title { transform: translateX(3px); }

.fit__list { display: grid; gap: 12px; }
.fit__list li {
  position: relative; padding-left: 38px; font-size: 1.0625rem; color: #DADAE0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
/* mark badges (✕ / ✓) — circular, fill on hover */
.fit__list li::before {
  position: absolute; left: 0; top: -1px;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 700; line-height: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.fit__col--no li::before {
  content: "\2715"; color: var(--urgency);
  background: rgba(255, 45, 45, 0.12); border: 1px solid rgba(255, 45, 45, 0.3);
}
.fit__col--yes li::before {
  content: "\2713"; color: var(--accent-yellow);
  background: rgba(232, 255, 58, 0.12); border: 1px solid rgba(232, 255, 58, 0.3);
}
/* stagger the rows + pop the marks on card hover */
.fit__col:hover .fit__list li { transform: translateX(5px); }
.fit__col:hover .fit__list li:nth-child(2) { transition-delay: 0.04s; }
.fit__col:hover .fit__list li:nth-child(3) { transition-delay: 0.08s; }
.fit__col:hover .fit__list li:nth-child(4) { transition-delay: 0.12s; }
.fit__col--no:hover li::before {
  transform: scale(1.12) rotate(90deg);
  background: var(--urgency); color: #fff; box-shadow: 0 0 18px rgba(255, 45, 45, 0.6);
}
.fit__col--yes:hover li::before {
  transform: scale(1.12);
  background: var(--accent-yellow); color: #0E0E10; box-shadow: 0 0 18px rgba(232, 255, 58, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .fit__col, .fit__title, .fit__list li, .fit__list li::before { transition: none; }
}

/* ============================================================
   PRICE
   ============================================================ */
.price__inner { text-align: center; }
.price h2 { margin-bottom: 28px; }
.price__stack { display: inline-grid; gap: 10px; text-align: left; margin: 0 auto 30px; }
.price__stack li { position: relative; padding-left: 30px; font-size: 1.0625rem; color: #DADAE0; }
.price__stack li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-yellow); font-weight: 700; }
.price__tag { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-bottom: 6px; }
.price__old { font-family: var(--font-display); font-size: 2rem; color: var(--text-muted-dark); text-decoration: line-through; }
.price__now { font-family: var(--font-display); font-size: clamp(3.5rem, 12vw, 5.5rem); line-height: 1; }
.price__urgency { font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 18px 0 14px; }

/* Countdown */
.countdown { display: flex; justify-content: center; gap: 10px; margin: 0 auto 28px; }
.countdown__box {
  min-width: 70px; padding: 14px 10px;
  background: var(--card-dark);
  border: 1px solid rgba(255,45,45,0.30);
  border-radius: 14px;
  display: grid; gap: 2px;
}
.countdown__num { font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--urgency); font-variant-numeric: tabular-nums; }
.countdown__lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted-dark); }
.price .btn--block { margin-top: 4px; }

/* ============================================================
   FAQ (light)
   ============================================================ */
.faq h2 { color: var(--text-dark); margin-bottom: 32px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #FFFFFF, #FAFAFB);
  overflow: hidden;
  box-shadow: 0 8px 22px -16px rgba(14, 14, 16, 0.28);
  transition: border-color 0.35s ease, box-shadow 0.7s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item:hover { border-color: rgba(255, 30, 142, 0.3); box-shadow: 0 16px 38px -22px rgba(255, 30, 142, 0.32); }
.faq__item.is-open {
  border-color: rgba(255, 30, 142, 0.45);
  box-shadow: 0 20px 46px -24px rgba(255, 30, 142, 0.4);
}
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; padding: 20px 22px;
  font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; color: var(--text-dark);
}
.faq__q > span:first-child { transition: color 0.3s ease; }
.faq__item.is-open .faq__q > span:first-child { color: var(--accent-magenta); }

/* Animated +/− icon inside a badge that fills magenta when open */
.faq__icon {
  position: relative; width: 34px; height: 34px; flex: 0 0 auto;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 30, 142, 0.4);
  background: rgba(255, 30, 142, 0.07);
  transition: background 0.35s ease, border-color 0.35s ease,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 2px; border-radius: 2px;
  background: var(--accent-magenta);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease;
}
.faq__icon::before { transform: translate(-50%, -50%); }
.faq__icon::after  { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item:hover .faq__icon { border-color: rgba(255, 30, 142, 0.6); }
.faq__item.is-open .faq__icon {
  background: var(--accent-magenta);
  border-color: var(--accent-magenta);
  transform: rotate(180deg);
}
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); } /* + → − */

.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s cubic-bezier(.16,1,.3,1); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
/* content fades + slides up as the answer opens */
.faq__a > div > * {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item.is-open .faq__a > div > * { opacity: 1; transform: none; }
.faq__item.is-open .faq__a > div > *:nth-child(2) { transition-delay: 0.06s; }
.faq__item.is-open .faq__a > div > *:nth-child(3) { transition-delay: 0.12s; }
.faq__a p { color: #3A3A40; padding: 0 22px 22px; margin: 0; }
.faq__a .vcard { margin: 0 22px 22px; }
.faq__a .vcard__caption p { padding: 0; color: #C7C7CD; }

@media (prefers-reduced-motion: reduce) {
  .faq__item, .faq__icon, .faq__icon::before, .faq__icon::after,
  .faq__a, .faq__a > div > * { transition: none; }
}

/* ============================================================
   FINALE
   ============================================================ */
.finale { padding: 80px 0; }
.finale h2 { font-size: clamp(2rem, 7vw, 3.6rem); margin-bottom: 24px; }
.finale { position: relative; isolation: isolate; overflow: hidden; }
/* Gradient grid background (ported from 21st.dev "gradient-blur-bg", brand colors) */
.finale__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  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),
    radial-gradient(circle 560px at 0% 12%, rgba(255, 30, 142, 0.2), transparent),
    radial-gradient(circle 560px at 100% 0%, rgba(232, 255, 58, 0.12), transparent);
  background-size: 56px 56px, 56px 56px, 100% 100%, 100% 100%;
  -webkit-mask-image: radial-gradient(135% 100% at 50% 0%, #000 60%, transparent 100%);
          mask-image: radial-gradient(135% 100% at 50% 0%, #000 60%, transparent 100%);
}
.finale > .container { position: relative; z-index: 1; }

/* ============================================================
   SIGNUP MODAL (2 koraka) — glass card, brand glow + light beams
   ============================================================ */
.signup[hidden] { display: none; }
.signup { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.signup__backdrop { position: absolute; inset: 0; background: rgba(6, 4, 8, 0.74); backdrop-filter: blur(6px); animation: signup-fade 0.3s ease; }
.signup__dialog { position: relative; z-index: 1; width: 100%; max-width: 420px; }
.signup__card {
  position: relative; overflow: hidden; border-radius: 22px;
  padding: 32px 26px 28px;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 30, 142, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(22, 19, 26, 0.94), rgba(14, 14, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 44px 90px -30px rgba(0, 0, 0, 0.9), 0 0 70px -22px rgba(255, 30, 142, 0.55);
  backdrop-filter: blur(16px);
  animation: signup-pop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes signup-fade { from { opacity: 0; } }
@keyframes signup-pop { from { opacity: 0; transform: translateY(16px) scale(0.97); } }
/* traveling light beams along the edges */
.signup__beams { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; pointer-events: none; }
.signup__beams span { position: absolute; opacity: 0.7; }
.signup__beams span:nth-child(1) { top: 0; left: 0; height: 2px; width: 45%; background: linear-gradient(90deg, transparent, #fff, transparent); animation: beam-x 3s linear infinite; }
.signup__beams span:nth-child(2) { bottom: 0; right: 0; height: 2px; width: 45%; background: linear-gradient(90deg, transparent, var(--accent-magenta), transparent); animation: beam-x 3s linear infinite reverse; animation-delay: 1.5s; }
.signup__beams span:nth-child(3) { top: 0; right: 0; width: 2px; height: 45%; background: linear-gradient(180deg, transparent, #fff, transparent); animation: beam-y 3s linear infinite; animation-delay: 0.75s; }
.signup__beams span:nth-child(4) { bottom: 0; left: 0; width: 2px; height: 45%; background: linear-gradient(180deg, transparent, var(--accent-yellow), transparent); animation: beam-y 3s linear infinite reverse; animation-delay: 2.25s; }
@keyframes beam-x { 0% { transform: translateX(-110%); } 100% { transform: translateX(330%); } }
@keyframes beam-y { 0% { transform: translateY(-110%); } 100% { transform: translateY(330%); } }

.signup__close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); color: #fff; font-size: 0.95rem; cursor: pointer; display: grid; place-items: center; transition: background 0.25s ease; }
.signup__close:hover { background: rgba(255, 255, 255, 0.14); }
.signup__head { position: relative; z-index: 2; text-align: center; margin-bottom: 22px; }
.signup__logo { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 30, 142, 0.4); background: rgba(255, 30, 142, 0.12); color: var(--accent-yellow); font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 12px; }
.signup__title { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; color: #fff; margin: 0 0 4px; line-height: 1.15; }
.signup__sub { color: var(--text-muted-dark); font-size: 0.98rem; margin: 0; }

.signup__step { position: relative; z-index: 2; display: grid; gap: 12px; }
.signup__step[hidden] { display: none; }
.signup__field input {
  width: 100%; height: 52px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13); background: rgba(255, 255, 255, 0.05);
  color: #fff; font: inherit; font-size: 1.0625rem; padding: 0 16px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.signup__field input::placeholder { color: rgba(255, 255, 255, 0.42); }
.signup__field input:focus { outline: none; border-color: var(--accent-magenta); background: rgba(255, 255, 255, 0.09); }
.signup__field input[aria-invalid="true"] { border-color: var(--urgency); }
.signup__error { color: #FF7A7A; font-size: 0.9rem; margin: 2px 0 0; }
.signup__next, .signup__pay {
  height: 54px; border: none; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.signup__next { margin-top: 6px; background: var(--cta); color: #fff; box-shadow: 0 14px 30px -10px rgba(255, 106, 0, 0.7); }
.signup__next:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -12px rgba(255, 106, 0, 0.85); }
.signup__paytitle { position: relative; z-index: 2; text-align: center; color: #fff; font-weight: 700; font-size: 1.05rem; margin: 0 0 16px; }
.signup__pay--card { background: var(--cta); color: #fff; box-shadow: 0 14px 30px -10px rgba(255, 106, 0, 0.7); }
.signup__pay--card:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -12px rgba(255, 106, 0, 0.85); }
.signup__pay--bank { background: rgba(255, 255, 255, 0.06); color: #fff; border: 1px solid rgba(255, 255, 255, 0.16); margin-top: 12px; }
.signup__pay--bank:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.signup__bankform { position: relative; z-index: 2; display: grid; gap: 12px; margin-top: 12px; }
.signup__bankform[hidden] { display: none; }
.signup__banknote { position: relative; z-index: 2; color: var(--accent-yellow); font-size: 0.92rem; text-align: center; margin: 14px 0 0; }
.signup__back { display: block; margin: 16px auto 0; background: none; border: none; color: var(--text-muted-dark); cursor: pointer; font-size: 0.92rem; }
.signup__back:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .signup__beams span { animation: none; opacity: 0.4; }
  .signup__card, .signup__backdrop { animation: none; }
}
.finale__body { color: #D3D3D8; font-size: clamp(1.05rem, 2.3vw, 1.25rem); max-width: 56ch; margin: 0 auto 22px; }
.finale__punch { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 4.5vw, 2.2rem); line-height: 1.15; color: #fff; max-width: 24ch; margin: 0 auto 28px; }

/* PITAJ ME — Viber CTA section */
.ask h2 { margin-bottom: 18px; }
.ask__lede { color: #D3D3D8; font-size: clamp(1.05rem, 2.3vw, 1.2rem); max-width: 52ch; margin: 0 auto 28px; }
.ask__btn { max-width: 460px; margin: 0 auto 14px; }
.ask__ic { width: 1.3em; height: 1.3em; flex: 0 0 auto; margin-right: 0.55em; }
.ask__btn span { display: inline-flex; align-items: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060607; border-top: 1px solid var(--line-dark); padding: 48px 0; }
.footer__inner { display: grid; gap: 28px; }
.footer__logo { font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase; display: block; margin-bottom: 12px; }
.footer__brand p { color: var(--text-muted-dark); font-size: 0.95rem; max-width: 42ch; margin: 0; }
.footer__meta { display: flex; flex-direction: column; gap: 14px; }
.footer__trust { color: #DADAE0; font-size: 0.95rem; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a { color: var(--text-muted-dark); font-size: 0.95rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--accent-yellow); }
.footer__meta small { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   WALL OF THANK-YOU MESSAGES (dark) — volume social proof
   ============================================================ */
.wall-sec { padding: 56px 0; position: relative; isolation: isolate; overflow: hidden; }
/* LightRays WebGL background (ported from React Bits "LightRays", brand colors) */
.wall-rays { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.wall-rays canvas { width: 100%; height: 100%; display: block; }
.wall-sec > .container { position: relative; z-index: 1; }
.wall-head { text-align: center; margin-bottom: 36px; }
.wall-eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted-dark); margin-bottom: 14px; }
.wall-sec h2 { color: #fff; }
.wall-sub { color: var(--text-muted-dark); max-width: 600px; margin: 14px auto 0; font-size: 1.0625rem; }

/* Scrolling testimonials marquee (ported from 21st.dev "testimonial-v2"):
   up to 3 vertical columns auto-scroll at different speeds, masked top/bottom;
   cards lift on hover and the column pauses so you can read/tap. */
.wall { position: relative; }
.wall-cols {
  display: flex; justify-content: center; gap: 20px;
  max-height: 720px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
/* JS creates exactly as many columns as fit the viewport (1 / 2 / 3) so every
   message stays visible — no columns are hidden. Per-column scroll duration is
   set inline by the JS, matched to how many cards that column holds. */
.wall-col { flex: 1 1 0; min-width: 0; max-width: 360px; }
.wall-track { display: flex; flex-direction: column; will-change: transform; }
.wall-track .wall-card { margin: 0 0 20px; }
@keyframes wall-scroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.wall-track--anim { animation: wall-scroll var(--dur, 34s) linear infinite; }
.wall-col:hover .wall-track--anim { animation-play-state: paused; }
/* Fallback while JS hasn't restructured yet (and no-JS): simple stack */
.wall:not(:has(.wall-cols)) { display: grid; gap: 18px; }

/* Win caption (varies per card) */
.wall-card__win { display: block; margin-top: 10px; padding-left: 4px; color: var(--accent-magenta); font-weight: 700; font-size: 0.85rem; line-height: 1.35; }

/* --- Format B: re-rendered chat bubble (default) --- */
.wall-card__bubble {
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: 18px 18px 18px 6px; /* incoming-message tail (bottom-left) */
  padding: 16px 18px;
  box-shadow: 0 22px 44px -30px rgba(0, 0, 0, 0.85);
  transition: border-color 0.35s ease, box-shadow 0.7s ease;
}
.wall-bubble__msg { margin: 0; color: #EDEDED; font-size: 1rem; line-height: 1.5; }
.wall-card__who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.wall-bubble__avatar {
  width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.78rem; font-weight: 700; color: #0E0E10;
  background: linear-gradient(135deg, var(--accent-magenta), var(--accent-yellow));
}
.wall-bubble__name { font-size: 0.9rem; font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.wall-bubble__check { font-style: normal; color: var(--accent-magenta); font-size: 0.85rem; }

/* --- Format A: raw screenshot in phone-message frame --- */
.wall-card__shot {
  display: block; width: 100%; padding: 0; cursor: pointer; position: relative;
  border: 1px solid var(--line-dark); border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 30, 142, 0.08), rgba(14, 14, 16, 0.55)), #16161a;
  color: var(--text-muted-dark);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.wall-card__shot:hover { transform: translateY(-3px); border-color: rgba(232, 255, 58, 0.35); }
.wall-card__shot img { display: block; width: 100%; height: auto; } /* real screenshots: equal width, natural height */
.wall-shot__ph { display: grid; place-items: center; aspect-ratio: 4 / 5; font-size: 0.9rem; }

/* Format toggle */
.wall[data-format="a"] .wall-card__bubble { display: none; }
.wall[data-format="b"] .wall-card__shot { display: none; }

.wall-foot { text-align: center; color: var(--text-muted-dark); margin: 26px auto 0; max-width: 100%; font-size: 0.95rem; }

/* Card hover: lift + brand glow (works for bubbles and screenshots) */
.wall-card { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.wall-card:hover { transform: translateY(-8px) scale(1.03); z-index: 2; position: relative; }
.wall-card:hover .wall-card__bubble {
  border-color: rgba(255, 30, 142, 0.45);
  box-shadow: 0 28px 56px -28px rgba(255, 30, 142, 0.5), 0 10px 24px -16px rgba(0, 0, 0, 0.7);
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(6, 6, 7, 0.86); backdrop-filter: blur(4px); }
.lightbox__dialog { position: relative; z-index: 1; max-width: min(92vw, 460px); max-height: 88vh; }
.lightbox__img { display: block; width: 100%; height: auto; max-height: 88vh; object-fit: contain; border-radius: 16px; }
.lightbox__ph { display: grid; place-items: center; width: min(80vw, 360px); aspect-ratio: 4 / 5; background: #16161a; border: 1px solid var(--line-dark); border-radius: 16px; color: var(--text-muted-dark); }
/* author display rules above must yield to the hidden attribute */
.lightbox__img[hidden], .lightbox__ph[hidden] { display: none; }
.lightbox__close { position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border-radius: 50%; border: none; background: #fff; color: #0E0E10; font-size: 1.1rem; cursor: pointer; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); transition: background 0.2s ease; }
.lightbox__close:hover { background: var(--accent-yellow); }

@media (min-width: 1000px) { .wall-sec { padding: 80px 0; } }
@media (prefers-reduced-motion: reduce) {
  .wall-track--anim { animation: none; }
  .wall-card { transition: none; }
}

/* ============================================================
   NEWSLETTER / LEAD MAGNET (light) — low-pressure email capture
   ============================================================ */
.newsletter { padding: 56px 0; position: relative; isolation: isolate; overflow: hidden; }
/* Ambient aurora background (ported from 21st.dev "ambient-aurora", brand colors, subtle) */
.nl-aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.nl-aurora canvas { width: 100%; height: 100%; display: block; }
/* soft white veil over the aurora so dark text stays readable; aurora still shows at the edges */
.newsletter::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(115% 80% at 50% 32%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.4) 55%, transparent 82%);
}
.newsletter__inner { text-align: center; position: relative; z-index: 1; }
.newsletter__eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}
.newsletter h2 { color: var(--text-dark); max-width: 620px; margin: 0 auto 20px; line-height: 1.32; }
/* Yellow highlighter marker (yellow text on white is unreadable, so we use a marker) */
.nl-mark {
  background: var(--accent-yellow); color: #0E0E10;
  padding: 0 0.16em; border-radius: 5px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.newsletter__lede { color: #3A3A40; font-size: 1.0625rem; line-height: 1.6; max-width: 620px; margin: 0 auto 36px; }

/* Video lead-magnet card */
.nl-card {
  max-width: 520px; margin: 0 auto 36px;
  background: var(--card-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 24px; text-align: left;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.55);
}
.nl-card__label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; color: var(--accent-yellow); margin-bottom: 12px; }
.nl-card__title { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.15rem; line-height: 1.3; color: #fff; margin: 0 0 18px; }
.nl-card__thumb {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, rgba(232, 255, 58, 0.10), rgba(14, 14, 16, 0.5)), #121215;
  border: 1px solid var(--line-dark); color: var(--text-muted-dark);
  transition: transform 0.3s ease;
}
.nl-card__thumb:hover { transform: translateY(-2px); }
/* Static teaser thumbnail (video link arrives after signup — not clickable) */
.nl-card__thumb--static { cursor: default; }
.nl-card__thumb--static:hover { transform: none; }
.nl-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.nl-card__phlabel { position: absolute; bottom: 12px; font-size: 0.85rem; }
.nl-card__play {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; color: #0E0E10;
  display: grid; place-items: center; font-size: 1.3rem; padding-left: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease;
}
.nl-card__thumb:hover .nl-card__play { transform: scale(1.08); }
.nl-card__bullets { margin: 20px 0 0; display: grid; gap: 12px; }
.nl-card__bullets li { position: relative; padding-left: 30px; font-size: 1rem; color: #D3D3D8; line-height: 1.45; }
.nl-card__bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-yellow); font-weight: 700; }

/* Email-only form */
.nl-form { max-width: 560px; margin: 0 auto; }
.nl-form__row { display: flex; flex-direction: column; gap: 12px; }
.nl-form__input {
  width: 100%; min-height: 54px; padding: 14px 18px;
  font-family: var(--font-body); font-size: 1.0625rem; color: var(--text-dark);
  background: #fff; border: 1.5px solid var(--line); border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nl-form__input::placeholder { color: #9A9AA2; }
.nl-form__input:focus { outline: none; border-color: #0E0E10; box-shadow: 0 0 0 4px rgba(14, 14, 16, 0.10); }
.nl-form__input[aria-invalid="true"] { border-color: var(--urgency); box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.12); }
.nl-form__btn { width: 100%; min-height: 54px; }
.nl-form__error { color: var(--urgency); font-weight: 600; font-size: 0.95rem; margin: 10px 0 0; }
.nl-form__note { color: var(--text-muted); font-size: 0.875rem; margin: 14px 0 0; }
.nl-form__proof { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; margin: 8px 0 0; }

/* Success state */
.nl-success { max-width: 560px; margin: 0 auto; padding: 8px 0; outline: none; }
.nl-success__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em; color: var(--text-dark); font-size: clamp(1.6rem, 5vw, 2.2rem); margin: 0 0 10px; }
.nl-success__text { color: #3A3A40; font-size: 1.0625rem; margin: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

@media (min-width: 640px) {
  .nl-form__row { flex-direction: row; }
  .nl-form__input { flex: 1 1 auto; }
  .nl-form__btn { width: auto; white-space: nowrap; flex: 0 0 auto; }
}

@media (min-width: 700px) {
  .newsletter { padding: 80px 0; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* NOTE: this transition list is the single source of truth for reveal elements.
   It must include the hover properties (box-shadow, border-color, transform,
   translate) — otherwise this late rule would reset transition-property and make
   card shadows / button lifts snap instantly. Reveal sets its resting transform
   via :not(.in) so it never fights :hover transforms. */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1),
              transform 0.7s cubic-bezier(.22,1,.36,1),
              translate 0.6s cubic-bezier(.22,1,.36,1),
              box-shadow 0.7s ease,
              border-color 0.4s ease;
  will-change: transform, opacity;
}
.reveal:not(.in) { transform: translateY(28px); }
.reveal.in { opacity: 1; }

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

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (min-width: 700px) {
  .section { padding: 88px 0; }
  .hero { padding-top: 64px; }
  .hero__cta .btn { width: auto; }

  .mistakes__grid { grid-template-columns: repeat(3, 1fr); }
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .fit__grid { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; align-items: end; }
  .footer__meta { align-items: flex-end; text-align: right; }
}

/* ============================================================
   RESPONSIVE — desktop
   ============================================================ */
@media (min-width: 1000px) {
  :root { --header-h: 116px; }

  .nav__links { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }

  .hero__grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 56px; }
  .hero__cta .btn { width: auto; }

  .story__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 56px; }

  .vcard { padding: 40px; }
  .vcard--feature { padding: 44px; }

  .finale { padding: 110px 0; }
}

/* Large desktop — give portrait videos a side-by-side feel on feature card */
@media (min-width: 1200px) {
  .vcard__video { max-width: 360px; }
}
