:root {
  --bg: #08050f;
  --bg-card: #140d22;
  --text: #f8f4ff;
  --text-muted: #a89bc4;
  --pink: #ff2d8a;
  --cyan: #00d4ff;
  --lime: #b8ff3c;
  --violet: #a855f7;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 20px;
  --container: 1140px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  min-width: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 20% -10%, rgba(255, 45, 138, 0.22), transparent),
    radial-gradient(ellipse 60% 45% at 90% 20%, rgba(0, 212, 255, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(184, 255, 60, 0.08), transparent);
  pointer-events: none;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
  animation: blob-float 18s ease-in-out infinite;
  pointer-events: none;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: var(--pink);
  top: -120px;
  right: -80px;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: var(--cyan);
  bottom: 10%;
  left: -100px;
  animation-delay: -6s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 25px) scale(1.08); }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 480px) {
  .container {
    padding-inline: 1.25rem;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 5, 15, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-block: 0.75rem;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.header-row-main {
  min-height: 44px;
}

.header-row-sub {
  padding-bottom: 0.15rem;
}

.logo {
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.header-nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-nav-link:hover {
  color: var(--text);
  border-color: rgba(255, 45, 138, 0.4);
}

.header-nav-short {
  display: none;
}

.age-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #0a0612;
  flex-shrink: 0;
}

@media (max-width: 400px) {
  .header-nav-long {
    display: none;
  }

  .header-nav-short {
    display: inline;
  }
}

@media (min-width: 768px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-block: 0.5rem;
    min-height: 64px;
  }

  .header-row {
    width: auto;
  }

  .header-row-main {
    flex: 1;
    min-height: auto;
  }

  .header-row-sub {
    gap: 0.75rem;
    padding-bottom: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 45, 138, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-accent {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #0a0612;
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.3);
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; }
.btn-xl { padding: 1.1rem 2rem; font-size: 1.1rem; width: 100%; max-width: 400px; }

.btn-pulse {
  animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(255, 45, 138, 0.35); }
  50% { box-shadow: 0 8px 48px rgba(255, 45, 138, 0.65), 0 0 0 8px rgba(255, 45, 138, 0.12); }
}

/* Urgency bar */
.urgency-bar {
  background: linear-gradient(90deg, rgba(255, 45, 138, 0.25), rgba(0, 212, 255, 0.15));
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  overflow: hidden;
}

.urgency-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0;
  max-width: 100%;
}

.urgency-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.urgency-fire {
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1.35;
}

.urgency-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  line-height: 1.4;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.urgency-link {
  color: var(--lime);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 0.25rem 0;
}

.urgency-link:hover {
  text-decoration: underline;
}

.header-cta-short {
  display: none;
}

@media (max-width: 420px) {
  .header-cta-long {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .header-cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .logo {
    font-size: 0.95rem;
  }

  .age-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}

@media (min-width: 520px) {
  .urgency-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .urgency-msg {
    width: auto;
    max-width: none;
    flex: 1 1 auto;
    justify-content: center;
  }

  .urgency-text {
    text-align: center;
  }
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.eyebrow-hot {
  color: var(--pink);
  background: rgba(255, 45, 138, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 138, 0.35);
}

.gradient-inline {
  background: linear-gradient(90deg, var(--pink), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead-short {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero-hooks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.hero-hooks li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-hooks strong {
  color: var(--text);
}

.hero-micro {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
  opacity: 0.85;
}

.social-proof {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime);
  margin: 0.5rem 0 0;
}

.hero-lead-mobile,
.hero-hook-mobile {
  display: none;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: 1.75rem 1.35rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, #1a0f2e, #140d22);
  border: 2px solid rgba(255, 45, 138, 0.45);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  text-align: center;
  animation: modal-in 0.35s ease;
}

.modal-panel-pop {
  border-color: rgba(184, 255, 60, 0.5);
  box-shadow: 0 0 60px rgba(255, 45, 138, 0.25);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.modal-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
}

.modal-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.modal-text {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal-micro {
  margin: 0.75rem 0 0;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.modal-panel .btn {
  width: 100%;
}

.modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

body.modal-open {
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero h1 .gradient {
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-actions .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* 3D Card */
.card-scene {
  perspective: 900px;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.hero-card {
  width: min(100%, 340px);
  aspect-ratio: 1.586;
  border-radius: 22px;
  padding: 1.5rem;
  background: linear-gradient(145deg, #1a0f2e 0%, #2d1b4e 40%, #0f2840 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 45, 138, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, var(--pink), var(--cyan), var(--lime), var(--pink));
  opacity: 0.15;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-label {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.card-sub {
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 600;
}

.card-chip {
  width: 42px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
}

.card-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 80px;
  opacity: 0.4;
  background: radial-gradient(circle, var(--pink), transparent 70%);
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 520px) {
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-item-hot {
  border-color: rgba(255, 45, 138, 0.4);
  background: rgba(255, 45, 138, 0.08);
}

.stat-item-hot strong {
  font-size: 2rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  text-align: center;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

/* Category picker */
.cat-section {
  background: rgba(20, 13, 34, 0.6);
  border-block: 1px solid var(--border);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cat-chip:hover {
  border-color: rgba(255, 45, 138, 0.5);
  transform: translateY(-2px);
}

.cat-chip.is-selected {
  border-color: var(--pink);
  box-shadow: 0 0 24px rgba(255, 45, 138, 0.25);
  background: rgba(255, 45, 138, 0.1);
}

.cat-chip .emoji {
  font-size: 1.75rem;
}

.cat-progress {
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cat-progress .num {
  font-size: 2rem;
  color: var(--lime);
}

.cat-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.cat-hint.is-shake {
  animation: shake 0.4s ease;
  color: var(--pink);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Product tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 1.35rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
}

.benefit-card-hot {
  border-color: rgba(255, 45, 138, 0.35);
  background: rgba(255, 45, 138, 0.06);
}

.benefit-card-hot h3 {
  color: var(--accent-bright, #fff);
}

.cat-cta-wrap,
.mid-cta {
  text-align: center;
  margin-top: 2rem;
}

.mid-cta {
  padding: 2rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 45, 138, 0.12), rgba(0, 212, 255, 0.08));
  border: 1px solid var(--border);
}

.mid-cta-text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.steps-compact li {
  padding: 1rem;
}

.benefit-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Steps */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  max-width: 640px;
  margin-inline: auto;
}

.steps-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  color: #0a0612;
}

.steps-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.steps-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-block {
  padding-bottom: 6rem;
}

.cta-inner {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, rgba(255, 45, 138, 0.15), rgba(0, 212, 255, 0.1));
  border: 1px solid var(--border);
}

.cta-inner-mega {
  padding: 2.5rem 1.25rem;
  background: linear-gradient(160deg, rgba(255, 45, 138, 0.22), rgba(184, 255, 60, 0.08));
  border: 2px solid rgba(255, 45, 138, 0.35);
  box-shadow: 0 0 60px rgba(255, 45, 138, 0.15);
}

.cta-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
}

.cta-urgency {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink);
}

.cta-inner h2 {
  margin: 0 0 0.75rem;
}

.cta-lead {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.fine-print {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2rem;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-dim, #64748b);
  margin: 0;
}

/* Sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: rgba(8, 5, 15, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

.sticky-cta .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .hero-grid {
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
    overflow-wrap: break-word;
    margin-bottom: 0.75rem;
  }

  .hero-lead-full,
  .hero-hooks-full,
  .social-proof-full {
    display: none;
  }

  .hero-lead-mobile,
  .hero-hook-mobile {
    display: block;
  }

  .hero-lead-mobile {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
  }

  .hero-hook-mobile {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
  }

  .hero-micro {
    font-size: 0.65rem;
    margin-top: 0.5rem;
  }

  .card-scene {
    display: none;
  }

  .stats-strip {
    margin-top: 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    width: 100%;
  }

  .sticky-cta {
    display: block;
  }

  .cta-block {
    padding-bottom: 5rem;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  max-width: 100%;
  padding: 0.65rem 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 45, 138, 0.06);
}

.marquee {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee span {
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.marquee-hot span {
  color: var(--pink);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}
