/* ═══════════════════════════════════════════════════════════════
   HerReply™ Landing Page — style.css
   Brand: Obsidian (#1A1A1A) + Gold (#D4AF37) + Cream accents
   Fonts: Playfair Display (headings) · Inter (body)
═══════════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --gold:           #D4AF37;
  --gold-light:     #F2D492;
  --gold-dark:      #B8942A;
  --obsidian:       #1A1A1A;
  --obsidian-deep:  #0d0d0d;
  --obsidian-mid:   #262626;
  --obsidian-lift:  #303030;
  --white:          #FFFFFF;
  --text-primary:   rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted:     rgba(255, 255, 255, 0.30);
  --border-subtle:  rgba(212, 175, 55, 0.10);
  --border-gold:    rgba(212, 175, 55, 0.25);
  --border-gold-strong: rgba(212, 175, 55, 0.45);

  --shadow-gold:    0 4px 24px rgba(212, 175, 55, 0.20);
  --shadow-gold-lg: 0 8px 48px rgba(212, 175, 55, 0.28);
  --shadow-card:    0 2px 16px rgba(0, 0, 0, 0.40);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, sans-serif;

  --nav-h: 60px;
  --section-gap: 7rem;
  --container: 1120px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--obsidian);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }

/* ─── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ─── Sections ───────────────────────────────────────────────── */
.section { padding-block: var(--section-gap); }

/* ─── Section typography ─────────────────────────────────────── */
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
}

.section-sub {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Divider ────────────────────────────────────────────────── */
.divider-gold {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-gold-strong) 50%,
    transparent 100%
  );
  margin-bottom: 5rem;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  padding: 0.625rem 1.375rem;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.28);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}
.btn--gold:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn--outline:hover {
  background: rgba(212,175,55,0.07);
  border-color: var(--border-gold-strong);
}

.btn--lg { padding: 0.875rem 1.75rem; font-size: 0.9rem; border-radius: var(--radius-md); }
.btn--xl { padding: 1.1rem 2.5rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn--full { width: 100%; justify-content: center; }



/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Transparent over hero — picks up hero background naturally */
  background: transparent;
  transition:
    background   0.4s var(--ease-out),
    box-shadow   0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}

/* The thin gold line only appears after scrolling */
.nav__top-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav.scrolled .nav__top-line {
  opacity: 0.55;
}

/* Nav inner grows slightly when scrolled — adds visual weight */
.nav.scrolled .nav__inner {
  height: calc(var(--nav-h) + 10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--nav-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav__logo-icon { height: 28px; width: 28px; object-fit: contain; }

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__cta { flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — hidden with visibility so it never bleeds into the layout */
.mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + 2px); /* +2px for the top-line */
  left: 0;
  right: 0;
  z-index: 99;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;

  /* Hidden state — visibility prevents any bleed-through */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    visibility  0s linear 0.28s,
    opacity     0.28s var(--ease-out),
    transform   0.28s var(--ease-out);
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    visibility  0s linear 0s,
    opacity     0.28s var(--ease-out),
    transform   0.28s var(--ease-out);
}

.mobile-menu__link {
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--white); }
.mobile-menu__cta { margin-top: 1rem; }


/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* Nav is transparent so hero bleeds behind it — push content down just enough */
  padding-top: calc(var(--nav-h) + 2rem);
  overflow: hidden;
  background: var(--obsidian);
}

/* Dot grid texture */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,175,55,0.065) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Warm radial glow */
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 62% 42%, rgba(212,175,55,0.055) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 5rem;
}

/* ── Hero copy ── */
.hero__copy { display: flex; flex-direction: column; gap: 0; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  background: rgba(212,175,55,0.07);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  width: fit-content;
}

.badge__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.09;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* ── Hero visual — stacked tone cards ── */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__scenario-bubble {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.hero__scenario-label {
  display: block;
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

/* Stacked card fan */
.tone-stack {
  position: relative;
  height: 310px;
  perspective: 1000px;
}

.tone-card {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.375rem;
  background: var(--obsidian-mid);
  will-change: transform;
  transition:
    top  0.72s var(--ease-out),
    left 0.72s var(--ease-out),
    right 0.72s var(--ease-out),
    transform   0.72s var(--ease-out),
    opacity     0.72s ease,
    box-shadow  0.72s ease,
    border-color 0.72s ease;
}

.tone-card__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.tone-card p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-primary);
}

/* Front card */
.tone-card[data-pos="0"] {
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  opacity: 1;
  border: 1px solid var(--border-gold-strong);
  box-shadow: 0 12px 40px rgba(212,175,55,0.18), var(--shadow-card);
  transform: rotate(-1.5deg);
}

/* Middle card */
.tone-card[data-pos="1"] {
  top: 26px;
  left: 18px;
  right: -18px;
  z-index: 2;
  opacity: 0.82;
  border: 1px solid var(--border-gold);
  box-shadow: none;
  transform: rotate(0.8deg);
}

/* Back card */
.tone-card[data-pos="2"] {
  top: 52px;
  left: 36px;
  right: -36px;
  z-index: 1;
  opacity: 0.55;
  border: 1px solid var(--border-subtle);
  box-shadow: none;
  transform: rotate(-0.5deg);
}

/* Gold inner glow — always follows front card */
.tone-card[data-pos="0"]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 60% 40% at 30% 80%, rgba(212,175,55,0.07), transparent);
  pointer-events: none;
}

/* Pop-to-front animation — card rises up from the deck */
.tone-card.is-entering-front {
  z-index: 10 !important;
  animation: pop-to-front 0.75s var(--ease-out) forwards;
}

@keyframes pop-to-front {
  0%   { transform: rotate(-1.5deg) scale(0.91) translateY(22px); opacity: 0.45; }
  55%  { transform: rotate(-1.5deg) scale(1.04) translateY(-6px); opacity: 1; }
  100% { transform: rotate(-1.5deg) scale(1)    translateY(0);    opacity: 1; }
}


.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--obsidian));
  pointer-events: none;
}

/* ── Hero live card (animated tone cycling) ──────────────────── */
.hero__live-card {
  background: var(--obsidian-mid);
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-md);
  padding: 1.375rem 1.5rem;
  box-shadow: 0 16px 48px rgba(212,175,55,0.14), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero__live-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.55), transparent);
  pointer-events: none;
}

.hero__live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.hero__live-tone-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}

.hero__live-tone-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero__live-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 0.18rem 0.55rem;
}

.hero__live-response {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.125rem;
  min-height: 78px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero__live-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hero__live-indicators {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.hero__live-pip {
  height: 2px;
  width: 18px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  transition: background 0.4s ease, width 0.4s ease;
}

.hero__live-pip.active {
  background: var(--gold);
  width: 26px;
}

.hero__live-copy-mock {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  user-select: none;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════
   MARQUEE BAR
═══════════════════════════════════════════════════════════════ */
.marquee-bar {
  background: var(--obsidian-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: 0.875rem;
  overflow: hidden;
}

.marquee { overflow: hidden; }

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}

.marquee-bar:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}

.marquee__dot {
  color: var(--gold);
  opacity: 0.75;
  font-size: 0.7rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════════════ */
.problem { background: var(--obsidian); }

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 4rem;
}

.problem__item {
  display: grid;
  grid-template-columns: 120px 1px 1fr;
  gap: 0 2.5rem;
  align-items: start;
  padding-block: 3rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.25s;
}

.problem__item:hover {
  background: linear-gradient(90deg, rgba(212,175,55,0.025), transparent);
}

.problem__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(242, 212, 100, 0.55);
  transition: color 0.3s;
  user-select: none;
  padding-top: 0.25rem;
}

.problem__item:hover .problem__num {
  color: rgba(242, 212, 100, 0.8);
}

.problem__line {
  width: 1px;
  background: var(--border-subtle);
  align-self: stretch;
  transition: background 0.3s;
}
.problem__item:hover .problem__line { background: var(--border-gold); }

.problem__body { padding-top: 0.25rem; }

.problem__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.problem__desc {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
}

.problem__footer {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.hiw { background: var(--obsidian-deep); }

/* ── Timeline layout ── */
.timeline {
  position: relative;
  padding-top: 2.5rem;
}

/* Track base (grey) */
.timeline__track {
  position: absolute;
  top: 0;
  left: calc(100% / 6);    /* center of first node */
  right: calc(100% / 6);   /* center of last node */
  height: 1px;
  background: rgba(212,175,55,0.12);
  overflow: hidden;
}

/* Animated gold fill — grows left→right on .is-active */
.timeline__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), rgba(242,212,100,0.5));
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline.is-active .timeline__fill { width: 100%; }

/* Steps grid */
.timeline__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.75rem;
}

/* Node circle */
.timeline__node {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--obsidian-mid);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  z-index: 1;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
}

.timeline.is-active .timeline__node { opacity: 1; transform: scale(1); }
.timeline.is-active .timeline__step:nth-child(1) .timeline__node { transition-delay: 0.25s; }
.timeline.is-active .timeline__step:nth-child(2) .timeline__node { transition-delay: 0.7s;  }
.timeline.is-active .timeline__step:nth-child(3) .timeline__node { transition-delay: 1.15s; }

.timeline__num {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* Pulsing ring on active node */
.timeline__ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease 0.2s, transform 0.4s var(--ease-out) 0.2s;
}
.timeline.is-active .timeline__step:nth-child(1) .timeline__ring { opacity: 1; transform: scale(1); transition-delay: 0.55s; }
.timeline.is-active .timeline__step:nth-child(2) .timeline__ring { opacity: 1; transform: scale(1); transition-delay: 1.0s;  }
.timeline.is-active .timeline__step:nth-child(3) .timeline__ring { opacity: 1; transform: scale(1); transition-delay: 1.45s; }

/* Card (icon + title + desc) */
.timeline__card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out);
}
.timeline.is-active .timeline__step:nth-child(1) .timeline__card { opacity: 1; transform: translateY(0); transition-delay: 0.4s;  }
.timeline.is-active .timeline__step:nth-child(2) .timeline__card { opacity: 1; transform: translateY(0); transition-delay: 0.85s; }
.timeline.is-active .timeline__step:nth-child(3) .timeline__card { opacity: 1; transform: translateY(0); transition-delay: 1.3s;  }

.hiw__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.hiw__step-icon-sep {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.hiw__step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.hiw__step-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.72;
}


/* ═══════════════════════════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════════════════════════ */
.video-section { background: var(--obsidian); }

.video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--border-subtle);
}

.video-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--obsidian-deep);
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--obsidian-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-placeholder__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 65%),
    linear-gradient(135deg, var(--obsidian-mid), var(--obsidian-deep));
  animation: video-shimmer 6s ease-in-out infinite;
}

@keyframes video-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--border-gold-strong);
  color: var(--gold);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.video-play-btn:hover {
  background: rgba(212,175,55,0.22);
  transform: scale(1.08);
  box-shadow: var(--shadow-gold-lg);
}

.video-play-btn__icon { width: 40px; height: 40px; }

/* Pulsing ring */
.video-play-btn__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  animation: ring-pulse 2.5s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0; }
}

.video-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.video-caption__sep { opacity: 0.4; }


/* ═══════════════════════════════════════════════════════════════
   TONE SHOWCASE
═══════════════════════════════════════════════════════════════ */
.showcase { background: var(--obsidian-deep); }

.showcase__scenario {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.showcase__scenario-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.showcase__scenario p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.55;
}

/* Tabs */
.showcase__tabs {
  position: relative;
  display: flex;
  background: var(--obsidian-mid);
  border-radius: var(--radius-md);
  padding: 5px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2rem;
  gap: 2px;
}

.showcase__tab {
  position: relative;
  z-index: 2;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  white-space: nowrap;
}

.showcase__tab:hover { color: var(--text-secondary); }

.showcase__tab--active {
  color: #000 !important;
}

/* Sliding pill */
.showcase__tab-slider {
  position: absolute;
  top: 5px;
  bottom: 5px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  transition: left 0.28s var(--ease-out), width 0.28s var(--ease-out);
  z-index: 1;
}

/* Panels */
.showcase__panels { max-width: 720px; margin-inline: auto; }

.showcase__panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: rgba(212,175,55,0.04);
  animation: panel-in 0.3s var(--ease-out);
}

.showcase__panel[hidden] { display: none; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.showcase__response {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.showcase__response-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.showcase__tone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.showcase__response-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.showcase__response p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.showcase__pushback {
  padding: 1.25rem 2rem 1.5rem;
  background: rgba(0,0,0,0.25);
}

.showcase__pushback-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.showcase__pushback p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.65;
}

.showcase__cta { text-align: center; margin-top: 2.5rem; }


/* ═══════════════════════════════════════════════════════════════
   FEATURES — CARD GRID
═══════════════════════════════════════════════════════════════ */
.features { background: var(--obsidian); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.feat-card {
  background: var(--obsidian-mid);
  padding: 2rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.18);
  transition: background 0.3s;
}
.feat-card:hover { background: var(--obsidian-lift); }
.feat-card:hover .feat-card__icon-box {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.1);
}

.feat-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.feat-card__icon-box {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 10px;
  background: rgba(212,175,55,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.feat-card__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(242,212,100,0.7);
  letter-spacing: 0.04em;
  padding-top: 4px;
}

.feat-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.feat-card__desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feat-card__badge {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 0.22rem 0.65rem;
}


/* ═══════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════ */
.pricing { background: var(--obsidian-deep); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing__card {
  background: var(--obsidian-mid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing__card--featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-6px);
}

.pricing__card--featured:hover { transform: translateY(-10px); }

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__tier-name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing__amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing__price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pricing__period {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing__list li {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}

.pricing__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.pricing__card--featured .pricing__list li::before { opacity: 1; }


/* ═══════════════════════════════════════════════════════════════
   FOUNDER
═══════════════════════════════════════════════════════════════ */
.founder { background: var(--obsidian-deep); padding-top: 5rem; }

.founder__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 6rem;
  align-items: center;
}

.founder__title { margin-top: 1rem; margin-bottom: 2rem; }

.founder__body {
  font-family: var(--font-sans);
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.founder__body--accent {
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0;
}

.founder__attr {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.founder__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1.5px solid var(--border-gold);
  flex-shrink: 0;
}

.founder__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.founder__role {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Founder visual card */
.founder__card {
  background: var(--obsidian-mid);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 0 80px rgba(212,175,55,0.07);
}

/* Photo placeholder — replace with <img> when available */
.founder__photo-placeholder {
  position: relative;
  width: 120px;
  height: 120px;
}

.founder__photo-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 2px solid var(--border-gold-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.founder__photo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  animation: ring-pulse 3s ease-in-out infinite;
}

/* Use this class when replacing with a real photo */
.founder__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold-strong);
  box-shadow: var(--shadow-gold);
}

.founder__seal {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(212,175,55,0.2));
}

.founder__card-text { text-align: center; }

.founder__card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.founder__card-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials { background: var(--obsidian); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--obsidian-mid);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.testimonial:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.7;
  color: rgba(212,175,55,0.25);
  margin-bottom: 1.25rem;
  user-select: none;
}

.testimonial__text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.75rem;
}

.testimonial__attr {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  flex-shrink: 0;
}

.testimonial__name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.testimonial__role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding-block: 9rem;
  overflow: hidden;
  background: var(--obsidian-deep);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.final-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, rgba(212,175,55,0.065) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.final-cta__headline em {
  font-style: italic;
  color: var(--gold);
}

.final-cta__sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border-subtle);
  padding-block: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand { max-width: 280px; }

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer__logo-icon { height: 26px; width: 26px; object-fit: contain; }

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
}

.footer__tagline {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.footer__nav {
  display: flex;
  gap: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
}


/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-reveal][data-delay="1"] { transition-delay: 0.10s; }
[data-reveal][data-delay="2"] { transition-delay: 0.20s; }
[data-reveal][data-delay="3"] { transition-delay: 0.30s; }

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero items reveal from slightly left */
.hero__copy [data-reveal] {
  transform: translateX(-16px);
  transition-property: opacity, transform;
}
.hero__copy [data-reveal].revealed { transform: translateX(0); }

.hero__visual[data-reveal] { transform: translateX(24px); }
.hero__visual[data-reveal].revealed { transform: translateX(0); }

/* Founder directional reveals */
.founder__copy[data-reveal] { transform: translateX(-30px); }
.founder__copy[data-reveal].revealed { transform: translateX(0); }
.founder__visual[data-reveal] { transform: translateX(30px); }
.founder__visual[data-reveal].revealed { transform: translateX(0); }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .hero__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero__visual { max-width: 480px; }
  .tone-stack { height: 260px; }

  .feat-grid { grid-template-columns: repeat(2, 1fr); }

  .founder__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .founder__visual { order: -1; }
  .founder__card { flex-direction: row; flex-wrap: wrap; justify-content: center; max-width: 500px; }

  .timeline__steps { grid-template-columns: 1fr; gap: 3rem; }
  .timeline__track  { display: none; }
  .timeline__step   { align-items: flex-start; text-align: left; flex-direction: row; gap: 1.25rem; padding: 0; }
  .timeline__node   { flex-shrink: 0; margin-bottom: 0; }
  .timeline__card   { padding-top: 0.25rem; }
  .hiw__step-icon   { justify-content: flex-start; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing__card--featured { transform: none; }
  .pricing__card--featured:hover { transform: translateY(-4px); }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }

}

@media (max-width: 768px) {

  :root {
    --section-gap: 5rem;
    --nav-h: 56px;
  }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { padding-block: 3.5rem; }
  .hero__headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .tone-stack { height: 240px; }
  .tone-card--2 { left: 12px; right: -12px; }
  .tone-card--3 { left: 24px; right: -24px; top: 44px; }

  .problem__item { grid-template-columns: 72px 1px 1fr; gap: 0 1.5rem; padding-block: 2rem; }
  .problem__num { font-size: 2.8rem; }

  .feat-grid { grid-template-columns: 1fr; }

  .pricing__grid { grid-template-columns: 1fr; }

  .showcase__tabs { flex-wrap: wrap; width: 100%; }
  .showcase__tab { flex: 1; text-align: center; }
  .showcase__tab-slider { display: none; }
  .showcase__tab--active { background: var(--gold); color: #000 !important; border-radius: var(--radius-sm); }

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__nav { gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

}

@media (max-width: 480px) {

  .hero__headline { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .problem__item { grid-template-columns: 1fr; gap: 0.75rem; }
  .problem__num { display: none; }
  .problem__line { display: none; }
  .br--hide { display: none; }

  .video-play-btn { width: 64px; height: 64px; }
  .video-play-btn__icon { width: 32px; height: 32px; }

  .final-cta { padding-block: 6rem; }
  .final-cta__headline { font-size: clamp(1.9rem, 9vw, 2.8rem); }

}
