/* ==========================================================================
   MAIN.CSS — Dark SaaS Landing Page Design System
   Pure CSS: No Tailwind, No Bootstrap, No Frameworks
   ========================================================================== */

/* Self-hosted fallback if CDN blocked */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
  --bg: #0a0b0f;
  --bg-raised: #0d0f14;
  --bg-elevated: #13151b;
  --primary: #7c5cff;
  --primary-light: #a78bfa;
  --teal: #00c9a7;
  --warn: #f59e0b;
  --rose: #f43f5e;
  --indigo: #6366f1;
  --fg: #f5f6f8;
  --fg-muted: #a0a4b0;
  --fg-dim: #848a99;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.08);
  --radius-lg: 12px;
  --radius-xl: 14px;
  --radius-2xl: 16px;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: 80px 0;
}

.section--raised {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--hero {
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 60px;
}
.section--hero > .container {
  position: relative;
  z-index: 1;
}

.section--thin {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* Platform Strip */
.platform-strip {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}
.platform-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.platform-strip__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(132,138,153,0.4);
}
.platform-strip__logo {
  width: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.platform-strip__logo:hover {
  opacity: 0.75;
}
.platform-strip__dot {
  color: rgba(132,138,153,0.2);
  font-size: 14px;
}
.platform-strip__divider {
  color: rgba(132,138,153,0.2);
  font-size: 14px;
  margin: 0 4px;
}
.platform-strip__revenue {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.platform-strip__amount {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--teal);
}

/* ==========================================================================
   4. Grid System
   ========================================================================== */

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

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

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

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

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

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

  .grid--bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--bento > *:nth-child(1) {
    grid-column: span 2;
  }

  .grid--bento > *:nth-child(4) {
    grid-column: span 2;
  }
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

/* ==========================================================================
   5. Typography
   ========================================================================== */

.display-1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--fg);
  line-height: 1.1;
}

.section--hero .display-1,
.section--hero h1 {
  font-size: clamp(52px, 6vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 800;
}

.h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.2;
}

.proof-heading {
  font-size: clamp(2.75rem, 4.5vw, 3.5rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.h3 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--fg);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

.overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: rgba(124, 92, 255, 0.6);
}

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

.text-gradient {
  background: linear-gradient(to right, #7c5cff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-teal {
  color: var(--teal);
}

.text-primary {
  color: var(--primary);
}

.text-warn {
  color: var(--warn);
}

.text-rose {
  color: var(--rose);
}

.text-fg {
  color: var(--fg);
}

.text-fg-muted {
  color: var(--fg-muted);
}

.text-fg-dim {
  color: var(--fg-dim);
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-display {
  font-family: var(--font-display);
}

.font-mono {
  font-family: var(--font-mono);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.leading-relaxed {
  line-height: 1.7;
}

.tracking-tight {
  letter-spacing: -0.02em;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-lg {
  max-width: 32rem;
}

/* ==========================================================================
   6. Cards
   ========================================================================== */

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.card--raised {
  background: var(--bg-raised);
}

.card--border-teal {
  border-top: 2px solid rgba(0, 201, 167, 0.5);
}

.card--border-primary {
  border-top: 2px solid rgba(124, 92, 255, 0.6);
}

.card--border-warn {
  border-top: 2px solid rgba(245, 158, 11, 0.5);
}

.card--border-rose {
  border-top: 2px solid rgba(244, 63, 94, 0.5);
}

.card--border-indigo {
  border-top: 2px solid rgba(99, 102, 241, 0.5);
}

.card--flex {
  display: flex;
  flex-direction: column;
}
.card__bottom-stat {
  margin-top: auto;
  padding-top: 16px;
}

.card--hover {
  transition: all 0.2s;
}

.card--hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card--glow-primary {
  transition: all 0.2s;
}

.card--glow-primary:hover {
  box-shadow: 0 0 30px rgba(124, 92, 255, 0.08);
  border-color: rgba(124, 92, 255, 0.2);
}

.card--glow-teal {
  transition: all 0.2s;
}

.card--glow-teal:hover {
  box-shadow: 0 0 30px rgba(0, 201, 167, 0.08);
  border-color: rgba(0, 201, 167, 0.2);
}

.card--glow-warn {
  transition: all 0.2s;
}

.card--glow-warn:hover {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

/* ============================
   BENTO CARDS — Section 6
   ============================ */
.bento-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: #0d0f14;
  padding: 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}
.bento-card--teal  { border-top: 2px solid rgba(0,201,167,0.6); }
.bento-card--accent { border-top: 2px solid rgba(124,92,255,0.6); }
.bento-card--indigo { border-top: 2px solid rgba(99,102,241,0.6); }
.bento-card--warn  { border-top: 2px solid rgba(245,158,11,0.6); }
.bento-card--rose  { border-top: 2px solid rgba(244,63,94,0.6); }

.bento-card--teal:hover  { border-color: rgba(0,201,167,0.2);  box-shadow: 0 0 30px rgba(0,201,167,0.08); }
.bento-card--accent:hover { border-color: rgba(124,92,255,0.2); box-shadow: 0 0 30px rgba(124,92,255,0.08); }
.bento-card--indigo:hover { border-color: rgba(99,102,241,0.2); box-shadow: 0 0 30px rgba(99,102,241,0.08); }
.bento-card--warn:hover  { border-color: rgba(245,158,11,0.2); box-shadow: 0 0 30px rgba(245,158,11,0.08); }
.bento-card--rose:hover  { border-color: rgba(244,63,94,0.2);  box-shadow: 0 0 30px rgba(244,63,94,0.08); }

.bento-card__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 12px;
}
.bento-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 8px;
}
.bento-card__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* visual area (border-top divider) */
.bento-card__visual {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* shared visual header */
.bento-visual__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bento-visual__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
}
.bento-visual__status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}
.bento-visual__status--teal { color: var(--teal); }
.bento-visual__status--warn { color: var(--warn); }
.bento-visual__footer {
  margin-top: 8px;
  font-size: 10px;
  color: rgba(var(--fg-dim-rgb, 160,165,180), 0.5);
  color: var(--fg-dim);
  opacity: 0.5;
}

/* pulse dot */
.bento-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: bentoPulse 2s ease-in-out infinite;
}
.bento-pulse--teal { background: var(--teal); }
.bento-pulse--warn { background: var(--warn); }
@keyframes bentoPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- Card 1: sync rows ---- */
.bento-visual__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-sync-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}
.bento-sync-row__product {
  color: var(--fg);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bento-sync-row__supplier {
  color: var(--fg-dim);
  font-size: 10px;
  flex-shrink: 0;
}
.bento-sync-row__old {
  color: var(--fg-dim);
  font-size: 10px;
  text-decoration: line-through;
}
.bento-sync-row__arrow {
  color: var(--fg-dim);
  font-size: 10px;
}
.bento-sync-row__new {
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 10px;
}
.bento-sync-row__status {
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

/* ---- Card 2: order flow ---- */
.bento-order-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  flex-wrap: wrap;
}
.bento-order-flow__step {
  font-weight: 500;
}
.bento-order-flow__arrow {
  color: rgba(255,255,255,0.15);
}

/* progress bar */
.bento-progress-track {
  margin-top: 8px;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border-radius: 9999px;
  overflow: hidden;
}
.bento-progress-track--sm {
  height: 6px;
}
.bento-progress-fill {
  height: 100%;
  border-radius: 9999px;
}
.bento-progress-fill--gradient {
  width: 100%;
  background: linear-gradient(to right, var(--teal), var(--primary), var(--warn));
  animation: bentoProgress 3s ease-in-out infinite;
}
.bento-progress-fill--accent {
  background: var(--primary);
  width: 0%;
  transition: width 2s ease-out;
}
@keyframes bentoProgress {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ---- Card 3: AI title boxes ---- */
.bento-ai-box {
  border-radius: 8px;
  padding: 10px 12px;
}
.bento-ai-box--before {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.bento-ai-box--after {
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
}
.bento-ai-box__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.bento-ai-box__text {
  font-size: 12px;
  color: var(--fg);
  font-weight: 500;
}
.bento-ai-box__text--strike {
  text-decoration: line-through;
  color: var(--fg-muted);
  opacity: 0.6;
  font-weight: 400;
}
.bento-ai-arrow {
  text-align: center;
  font-size: 10px;
  padding: 4px 0;
}

/* ---- Card 4: repricing grid ---- */
.bento-reprice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bento-reprice-panel {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: #0a0b0f;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.bento-reprice-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.bento-reprice-stat {
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 10px;
}
.bento-reprice-stat__label {
  font-size: 10px;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.bento-reprice-stat__value {
  font-size: 0.875rem;
  font-weight: 700;
}
.bento-reprice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 8px;
}
.bento-reprice-bar-track {
  height: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.bento-reprice-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--teal), rgba(0,201,167,0.6));
  width: 0%;
  transition: width 1.5s ease-out;
}
.bento-reprice-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 10px;
}
.bento-reprice-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-reprice-feed__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}
.bento-reprice-feed__product {
  color: var(--fg-muted);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 8px;
}
.bento-reprice-feed__change {
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* ---- Card 5: platform rows ---- */
.bento-platform-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bento-platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}

/* ---- Card 6: bulk import ---- */
.bento-bulk-header {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.bento-bulk-count {
  margin-top: 2px;
}
.bento-bulk-count__num {
  font-size: 1.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
}
.bento-bulk-count__unit {
  font-size: 0.875rem;
  color: var(--fg-dim);
}
.bento-bulk-bar-wrap {
  flex: 1;
  margin-bottom: 8px;
}

/* ---- Card 7: store rows ---- */
.bento-store-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}

/* mobile stacking for repricing grid */
@media (max-width: 640px) {
  .bento-reprice-grid {
    grid-template-columns: 1fr;
  }
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card--pro {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), var(--bg));
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: 0 0 30px rgba(124, 92, 255, 0.15);
}

@media (min-width: 1024px) {
  .card--pro {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   7. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  padding: 0 24px;
  height: 48px;
  line-height: 1;
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--primary);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 0 0 1px rgba(124,92,255,0.3), 0 4px 20px rgba(124,92,255,0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.5), 0 8px 30px rgba(124,92,255,0.35);
}

/* Nav-size primary: no glow shadow so it matches ghost height visually */
.btn--primary.btn--sm {
  box-shadow: none;
  border: 1px solid rgba(124,92,255,0.3);
}

.btn--primary.btn--sm:hover {
  box-shadow: 0 4px 16px rgba(124,92,255,0.3);
}

.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}

.btn--text {
  background: none;
  border: none;
  color: var(--primary);
  padding: 0;
  height: auto;
}

.btn--text:hover {
  color: var(--primary-light);
}

.btn--primary.btn--lg {
  height: 56px;
  padding: 0 32px;
  font-size: 16px;
}

.btn--sm {
  height: 40px !important;
  padding: 0 20px !important;
  font-size: 0.875rem !important;
  border-radius: 12px;
}

.btn--full {
  width: 100%;
}

/* ==========================================================================
   8. Pills / Badges
   ========================================================================== */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-muted);
}

.pill--active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(124, 92, 255, 0.3);
}

.pill--green {
  background: rgba(0, 201, 167, 0.1);
  border-color: rgba(0, 201, 167, 0.2);
  color: var(--teal);
}

.badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 9999px;
}

/* ==========================================================================
   9. Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(10, 11, 15, 0.7);
  transition: background 0.3s;
}

.nav--scrolled {
  background: rgba(10, 11, 15, 0.95);
}

.nav__inner {
  position: relative;
  max-width: 1280px;       /* max-w-7xl */
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .nav__inner {
    padding: 0 32px;
  }
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;     /* text-xl = 20px */
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  font-family: var(--font-display);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;    /* text-sm */
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover {
  color: white;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav__hamburger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  transform: translateY(-100%);
  transition: transform 0.3s;
  z-index: 49;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu--open {
  transform: translateY(0);
}

/* ==========================================================================
   10. Footer
   ========================================================================== */

.footer {
  border-top: 1px solid var(--border);
  background: #050810;
  padding-top: 80px;
}

.footer__cta {
  text-align: center;
  margin-bottom: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.footer__col h4 {
  color: var(--fg);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer__col a {
  display: block;
  color: var(--fg-dim);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}

.footer__col a:hover {
  color: var(--primary);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dim);
  transition: color 0.2s ease;
}

.footer__socials a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dim);
  transition: all 0.15s;
}

.footer__social a:hover {
  color: white;
  border-color: rgba(124, 92, 255, 0.3);
}

/* ==========================================================================
   11. FAQ
   ========================================================================== */

.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--fg);
  font-size: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.faq-a > * {
  overflow: hidden;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  padding-bottom: 20px;
}

.faq-a p {
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 15px;
}

.faq-chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--fg-dim);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* ==========================================================================
   12. Ticker
   ========================================================================== */

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 14px;
  color: var(--fg-muted);
}

.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   13. Pricing
   ========================================================================== */

/* -- Hero -- */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 64px;
}

.pricing-hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 9999px;
  background: rgba(124, 92, 255, 0.06);
  filter: blur(120px);
  pointer-events: none;
}

/* -- Billing pill toggle -- */
.billing-pill-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  margin-top: 32px;
}

.billing-pill {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.billing-pill:hover {
  color: var(--fg);
}

.billing-pill--active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.billing-pill__save {
  font-size: 10px;
  font-weight: 700;
  background: rgba(0, 201, 167, 0.2);
  color: var(--teal);
  padding: 2px 6px;
  border-radius: 9999px;
}

/* -- Pricing cards grid -- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

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

/* -- Pricing card -- */
.pricing-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card--pro {
  border-color: rgba(124, 92, 255, 0.5);
}

.pricing-card__topline {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  border-radius: 9999px;
}

.pricing-card__topline--teal { background: rgba(0, 201, 167, 0.4); }
.pricing-card__topline--primary { background: rgba(124, 92, 255, 0.6); }
.pricing-card__topline--warn { background: rgba(245, 158, 11, 0.5); }

.pricing-card__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.pricing-card__badge--primary {
  background: var(--primary);
  color: #fff;
}

.pricing-card__badge--warn {
  background: var(--warn);
  color: #000;
}

.pricing-card__header {
  margin-top: 8px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .pricing-card__header {
    min-height: 84px;
  }
  .pricing-card__price-block {
    min-height: 126px;
  }
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.pricing-card__tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.pricing-card__price-block {
  margin-bottom: 8px;
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__price {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--fg);
}

.pricing-card__period {
  font-size: 14px;
  color: var(--fg-dim);
}

.pricing-card__value-summary {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 4px;
}

.pricing-card__billing-note {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 4px;
}

.pricing-card__cta {
  margin-bottom: 16px;
}

.pricing-card__sub-cta {
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  margin-bottom: 24px;
}

.pricing-card__divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

/* -- Feature list in cards -- */
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pf {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
}

.pf__icon {
  flex-shrink: 0;
  width: 16px;
  margin-top: 2px;
}

.pf__icon--check { color: var(--teal); }
.pf__icon--cross { color: var(--fg-dim); opacity: 0.3; }
.pf__icon--warn { color: var(--warn); }

.pf--disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.pf--exclusive {
  color: var(--fg-muted);
}

.pf__badge-scale {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 700;
  color: var(--warn);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

/* -- Scale custom volume -- */
.scale-volume {
  margin-top: 40px;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.03);
  padding: 24px 32px;
}

@media (min-width: 1024px) {
  .scale-volume { padding: 32px; }
}

.scale-volume__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.sv-pill {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.sv-pill:hover {
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--fg);
}

.sv-pill--active {
  background: var(--warn);
  color: #000;
  border-color: var(--warn);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.scale-volume__result {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  padding-top: 24px;
}

.scale-volume__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.scale-volume__price {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--warn);
}

.scale-volume__cta {
  flex-shrink: 0;
}

.scale-volume__cta:hover {
  background: rgba(245, 158, 11, 0.08) !important;
  border-color: rgba(245, 158, 11, 0.5) !important;
}

.scale-volume__enterprise {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   14. Comparison Table
   ========================================================================== */

.comp-table-wrap {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.comp-table__plan-col {
  text-align: center !important;
  font-weight: 600 !important;
}

.comp-table__plan-col:nth-child(2) { color: var(--teal); }
.comp-table__plan-col--pro {
  color: var(--primary) !important;
  font-weight: 700 !important;
  background: rgba(124, 92, 255, 0.05);
  border-top: 2px solid rgba(124, 92, 255, 0.4);
}

.comp-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comp-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comp-table td:nth-child(2),
.comp-table td:nth-child(4) {
  text-align: center;
}

.comp-table__pro-cell {
  text-align: center;
  background: rgba(124, 92, 255, 0.03);
}

.comp-table__plan-col:nth-child(4) { color: var(--warn); }

.ct-check {
  font-weight: 600;
}
.ct-check--teal { color: var(--teal); }
.ct-check--primary { color: var(--primary); }
.ct-check--warn { color: var(--warn); }

.ct-dash {
  color: var(--fg-dim);
  opacity: 0.3;
  font-size: 18px;
}

/* Income Transformation Card */
.income-transform-card {
  margin-top: 16px;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.06);
  background: #0d0f14;
  overflow: hidden;
}
.income-transform-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .income-transform-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.income-transform-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .income-transform-copy {
    padding: 40px;
  }
}
.income-transform-chart {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 1024px) {
  .income-transform-chart {
    padding: 40px;
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
}

/* Mentorship feature blocks */
.mentorship-feature {
  display: flex;
  gap: 16px;
}
.mentorship-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mentorship-feature__icon--teal {
  background: rgba(0,201,167,0.1);
  color: var(--teal);
}
.mentorship-feature__icon--accent {
  background: rgba(124,92,255,0.1);
  color: var(--primary);
}
.mentorship-feature__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.mentorship-feature__body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Horizontal bar chart rows */
.income-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.income-bar-label {
  font-size: 12px;
  color: var(--fg-dim);
  width: 56px;
  flex-shrink: 0;
}
.income-bar-track {
  flex: 1;
  height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.income-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.income-bar-fill.animated {
  width: var(--bar-pct);
}
.income-bar-amount {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--teal);
  width: 56px;
  text-align: right;
  flex-shrink: 0;
}

/* ==========================================================================
   15. Dashboard Mockup (Hero)
   ========================================================================== */

.dashboard-mock {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 24px;
  max-width: 420px;
  box-shadow: rgba(255, 255, 255, 0.08) 0px 0px 0px 1px, rgba(124, 92, 255, 0.15) 0px 0px 60px;
}

.dashboard-mock__stat {
  display: flex;
  flex-direction: column;
}
.dashboard-mock__stat-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px;
}

.dashboard-mock__value {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
}

.dashboard-mock__label {
  font-size: 10px;
  color: var(--fg-dim);
  margin-bottom: 2px;
}

.dashboard-mock__chart {
  height: 80px;
  margin-top: 16px;
}

/* System status bar */
.dashboard-mock__system-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  flex-wrap: wrap;
}
.dashboard-mock__system-live {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-mock__system-sep {
  color: rgba(255,255,255,0.2);
}
.dashboard-mock__processing {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-mock__progress-track {
  display: inline-block;
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.dashboard-mock__progress-fill {
  display: block;
  width: 65%;
  height: 100%;
  border-radius: 4px;
  background: rgba(124,92,255,0.6);
  animation: pulse 2s infinite;
}

.sync-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-family: var(--font-mono);
  background: rgba(255,255,255,0.03);
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.06);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ==========================================================================
   16. Discord Mockup
   ========================================================================== */

.discord-mock {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.discord-mock__header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 8px;
}

.discord-msg {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
}

.discord-msg__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.discord-msg__name {
  font-weight: 600;
  font-size: 14px;
}

.discord-msg__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--warn);
}

.discord-msg__time {
  font-size: 11px;
  color: var(--fg-dim);
  margin-left: 8px;
}

.discord-msg__text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-top: 4px;
}

/* ==========================================================================
   17. Scraper / Terminal Mockup
   ========================================================================== */

.terminal {
  background: #0c0e12;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  font-family: var(--font-mono);
}

.terminal__header {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal__dots {
  display: flex;
  gap: 6px;
}

.terminal__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal__body {
  padding: 16px;
  font-size: 13px;
  line-height: 1.8;
}

.terminal__line--green {
  color: var(--teal);
}

.terminal__line--purple {
  color: var(--primary);
}

.terminal__line--dim {
  color: var(--fg-dim);
}

/* terminal line classes matching React */
.terminal__line {
  font-size: 0.875rem;
}
.terminal__line--muted {
  color: var(--fg-muted);
}
.terminal__line--teal {
  color: var(--teal);
}

/* typewriter animation */
.terminal__line[data-typewriter] {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.terminal__line[data-typewriter].visible {
  opacity: 1;
}
.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  margin-left: 2px;
  animation: cursorBlink 1s step-end infinite;
}
.terminal-cursor--teal { background: var(--teal); }
.terminal-cursor--accent { background: var(--primary); }
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---- Scraper section ---- */
.scraper-section {
  border-top: 1px solid rgba(255,255,255,0.04);
  background-image: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,92,255,0.06) 0%, transparent 70%);
}


/* steps with connecting line */
.scraper-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.scraper-steps__line {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 120px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(124,92,255,0.3) 0%, transparent 100%);
}
.scraper-step {
  display: flex;
  gap: 24px;
  position: relative;
}
.scraper-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(124,92,255,0.3);
  background: var(--bg-raised);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.3), 0 0 20px rgba(124,92,255,0.15);
  z-index: 1;
}

/* ============================
   DUAL ENGINE — Section 8
   ============================ */
.dual-engine-section {
  background: #0d0f14;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.dual-engine-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  border-radius: 50%;
  background: rgba(124,92,255,0.06);
  filter: blur(120px);
  pointer-events: none;
}

.de-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-raised);
  padding: 24px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.de-card--teal  { border-color: rgba(0,201,167,0.2); }
.de-card--accent { border-color: rgba(124,92,255,0.2); }

/* recommended badge */
.de-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--warn);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}
.de-badge__icon {
  width: 12px;
  height: 12px;
}

/* engine pill */
.de-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 24px;
}
.de-pill--teal {
  border: 1px solid rgba(0,201,167,0.2);
  background: rgba(0,201,167,0.1);
  color: var(--teal);
}
.de-pill--accent {
  border: 1px solid rgba(124,92,255,0.2);
  background: rgba(124,92,255,0.1);
  color: var(--primary);
}

/* icon box */
.de-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.de-icon--teal  { background: rgba(0,201,167,0.1); color: var(--teal); }
.de-icon--accent { background: rgba(124,92,255,0.1); color: var(--primary); }

.de-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}
.de-card__desc {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* checklist */
.de-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.de-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.de-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.de-check--teal  { color: var(--teal); }
.de-check--accent { color: var(--primary); }

/* card footer (mt-auto pushes to bottom) */
.de-card__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* chrome extension bar */
.de-chrome-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 12px;
}
.de-chrome-bar__lock {
  color: var(--teal);
  flex-shrink: 0;
}
.de-chrome-bar__url {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--fg-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.de-chrome-bar__dot {
  margin-left: auto;
  flex-shrink: 0;
}

/* mini terminal */
.de-terminal-mini {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

/* community callout */
.de-callout {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid rgba(0,201,167,0.4);
  background: rgba(255,255,255,0.04);
  padding: 20px 24px;
}
.de-callout__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(124,92,255,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   SELL EVERYWHERE — Section 9
   ============================ */
.sell-everywhere-section {
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

/* background glows */
.se-glow {
  position: absolute;
  width: 500px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.se-glow--rose {
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  background: rgba(244,63,94,0.05);
}
.se-glow--warn {
  top: 50%;
  right: 25%;
  transform: translate(50%, -50%);
  background: rgba(245,158,11,0.05);
}

/* card variants for this section */
.de-card--rose { border-color: rgba(244,63,94,0.2); }
.de-card--rose:hover {
  border-color: rgba(244,63,94,0.3);
  box-shadow: 0 0 30px rgba(244,63,94,0.08);
}
.de-card--warn-gradient {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(135deg, rgb(19,21,27) 0%, rgba(245,158,11,0.04) 100%);
}
.de-card--warn-gradient:hover {
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 0 40px rgba(245,158,11,0.12);
}

/* pills */
.de-pill--rose {
  border: 1px solid rgba(244,63,94,0.2);
  background: rgba(244,63,94,0.1);
  color: #f43f5e;
}
.de-pill--warn {
  border: 1px solid rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.1);
  color: var(--warn);
}

/* icon boxes */
.de-icon--rose { background: rgba(244,63,94,0.1); color: #f43f5e; }
.de-icon--warn { background: rgba(245,158,11,0.1); color: var(--warn); }

/* check color */
.de-check--warn { color: var(--warn); }

/* coming soon label */
.se-coming-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  margin-bottom: 12px;
}

/* listing preview card */
.se-listing-preview {
  display: flex;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid rgba(244,63,94,0.15);
  background: rgba(255,255,255,0.02);
  padding: 12px;
}
.se-listing-preview__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.se-listing-preview__icon--rose { background: rgba(244,63,94,0.1); }
.se-listing-preview__title {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.se-listing-preview__price {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 2px;
}
.se-listing-preview__old-price {
  color: var(--fg-dim);
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 4px;
}
.se-listing-preview__meta {
  font-size: 10px;
  color: var(--fg-dim);
  margin-top: 2px;
}

/* Amazon live badge */
.se-amazon-badge {
  border-radius: 12px;
  border: 1px solid rgba(245,158,11,0.15);
  background: rgba(245,158,11,0.04);
  padding: 16px;
  text-align: center;
}
.se-amazon-badge__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--warn);
}
.se-amazon-badge__desc {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 4px;
}

/* status strip */
.se-status-strip {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  font-size: 0.875rem;
  color: var(--fg-dim);
}
.se-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.se-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.se-status-divider {
  opacity: 0.3;
}

/* ============================
   WHAT YOU GET — Section 10
   ============================ */
.wyg-section {
  background: #0d0f14;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.wyg-list {
  display: flex;
  flex-direction: column;
}

.wyg-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wyg-row--last {
  border-bottom: none;
}

.wyg-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.wyg-row__content {
  display: flex;
  flex: 1;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.wyg-row__name {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--fg);
  white-space: nowrap;
  flex-shrink: 0;
}

.wyg-row__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  text-align: right;
}

/* value box */
.wyg-value-box {
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid rgba(0,201,167,0.2);
  background: rgba(0,201,167,0.04);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wyg-value-box__title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--fg);
}
.wyg-value-box__sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 2px;
}
.wyg-value-box__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
}
.wyg-value-box__dollar {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--teal);
}
.wyg-value-box__terms {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ==========================================================================
   18. Utility Classes
   ========================================================================== */

/* --- Flexbox --- */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* --- Gap --- */
.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

/* --- Margin auto --- */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Margin top --- */
.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-7 {
  margin-top: 32px;
}

.mt-8 {
  margin-top: 40px;
}

.mt-9 {
  margin-top: 48px;
}

.mt-10 {
  margin-top: 64px;
}

/* --- Margin bottom --- */
.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 20px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-7 {
  margin-bottom: 32px;
}

.mb-8 {
  margin-bottom: 40px;
}

.mb-9 {
  margin-bottom: 48px;
}

.mb-10 {
  margin-bottom: 64px;
}

/* --- Padding top --- */
.pt-1 {
  padding-top: 4px;
}

.pt-2 {
  padding-top: 8px;
}

.pt-3 {
  padding-top: 12px;
}

.pt-4 {
  padding-top: 16px;
}

.pt-5 {
  padding-top: 20px;
}

.pt-6 {
  padding-top: 24px;
}

.pt-7 {
  padding-top: 32px;
}

.pt-8 {
  padding-top: 40px;
}

/* --- Padding bottom --- */
.pb-1 {
  padding-bottom: 4px;
}

.pb-2 {
  padding-bottom: 8px;
}

.pb-3 {
  padding-bottom: 12px;
}

.pb-4 {
  padding-bottom: 16px;
}

.pb-5 {
  padding-bottom: 20px;
}

.pb-6 {
  padding-bottom: 24px;
}

.pb-7 {
  padding-bottom: 32px;
}

.pb-8 {
  padding-bottom: 40px;
}

/* --- Sizing --- */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* --- Position --- */
.relative {
  position: relative;
}

/* --- Overflow --- */
.overflow-hidden {
  overflow: hidden;
}

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

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-flex {
  display: inline-flex;
}

/* ==========================================================================
   19. Glow Effects
   ========================================================================== */

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow--purple {
  background: rgba(124, 92, 255, 0.06);
}

.glow--teal {
  background: rgba(0, 201, 167, 0.05);
}

.glow--amber {
  background: rgba(245, 158, 11, 0.04);
}

/* ==========================================================================
   20. Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Scroll reveal — default variant (fade-up) */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Variant: fade-up-slow (larger travel, longer duration) */
[data-animate="fade-up-slow"] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Variant: scale-in (subtle scale from 0.95) */
[data-animate="scale-in"] {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Variant: slide-left (enter from the right) */
[data-animate="slide-left"] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Variant: slide-right (enter from the left) */
[data-animate="slide-right"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Variant: fade-in (opacity only, no movement) */
[data-animate="fade-in"] {
  opacity: 0;
  transform: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger delays */
[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }
[data-animate][data-delay="600"] { transition-delay: 0.6s; }

/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Pulse Divider — animated gradient line between sections */
.pulse-divider {
  height: 1px;
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0.6;
}
.pulse-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: pulse-sweep 3s ease-in-out infinite;
}
.pulse-divider--warn::after {
  background: linear-gradient(90deg, transparent, var(--warn), transparent);
}
@keyframes pulse-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Section number markers (XL screens only) */
.section-number {
  display: none;
}
@media (min-width: 1280px) {
  .section-number {
    display: block;
    position: absolute;
    left: 16px;
    top: 96px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(132, 138, 153, 0.15);
    pointer-events: none;
    user-select: none;
  }
}

/* Animated background paths (hero & CTA) */
.bg-paths {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bg-paths svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bg-paths path {
  fill: none;
  stroke: rgba(124, 92, 255, 0.08);
  stroke-width: 0.5;
  opacity: 0.3;
}

/* 3D Container Scroll perspective on hero dashboard */
.hero-perspective {
  perspective: 1200px;
  perspective-origin: center top;
}
.hero-perspective .dashboard-mock {
  transform: rotateX(12deg) scale(0.96);
  transform-origin: center bottom;
  transition: transform 0.05s linear;
  will-change: transform;
}

/* Dashboard floating animation */
@keyframes dashboard-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.dashboard-float.animated {
  animation: dashboard-float 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .dashboard-float.animated { animation: none; }
}

/* Cards hover lift */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
}
.card--hover:hover {
  transform: translateY(-4px);
}
.card--glow-teal:hover {
  box-shadow: 0 0 30px rgba(0,201,167,0.12), 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(0,201,167,0.25);
}
.card--glow-primary:hover {
  box-shadow: 0 0 30px rgba(124,92,255,0.12), 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(124,92,255,0.25);
}
.card--glow-warn:hover {
  box-shadow: 0 0 30px rgba(245,158,11,0.12), 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(245,158,11,0.25);
}
.card--glow-indigo:hover {
  box-shadow: 0 0 30px rgba(99,102,241,0.12), 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(99,102,241,0.25);
}
.card--glow-rose:hover {
  box-shadow: 0 0 30px rgba(244,63,94,0.12), 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(244,63,94,0.25);
}

/* Proof Cards */
.proof-card {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: #0a0b0f;
  transition: all 0.3s;
}
.proof-card:hover {
  box-shadow: 0 0 40px rgba(0,201,167,0.08);
}
.proof-card--teal:hover { border-color: rgba(0,201,167,0.3); box-shadow: 0 0 40px rgba(0,201,167,0.08); }
.proof-card--accent:hover { border-color: rgba(124,92,255,0.3); box-shadow: 0 0 40px rgba(124,92,255,0.08); }
.proof-card--warn:hover { border-color: rgba(245,158,11,0.3); box-shadow: 0 0 40px rgba(245,158,11,0.08); }
.proof-card--indigo:hover { border-color: rgba(99,102,241,0.3); box-shadow: 0 0 40px rgba(99,102,241,0.08); }

.proof-card__img-wrap {
  position: relative;
  overflow: hidden;
  max-height: 400px;
}
.proof-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
  min-height: 200px;
  transition: transform 0.7s;
}
.proof-card:hover .proof-card__img {
  transform: scale(1.015);
}
.proof-card__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to top, #0a0b0f, transparent);
  pointer-events: none;
}

/* Overlaid badges */
.proof-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.proof-card__badge--teal {
  background: rgba(0,201,167,0.2);
  border: 1px solid rgba(0,201,167,0.4);
  color: var(--teal);
}
.proof-card__badge--accent {
  background: rgba(124,92,255,0.2);
  border: 1px solid rgba(124,92,255,0.4);
  color: var(--primary);
}
.proof-card__badge--warn {
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--warn);
}
.proof-card__badge--indigo {
  background: rgba(99,102,241,0.2);
  border: 1px solid rgba(99,102,241,0.4);
  color: #6366f1;
}

.proof-card__verified {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 500;
  color: var(--fg-dim);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Stats bar */
.proof-card__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}
.proof-card__stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  opacity: 0.6;
  margin-bottom: 2px;
}
.proof-card__stat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.proof-card__stat-value--hero {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Submit CTA row */
.proof-submit-cta {
  margin-top: 24px;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Legacy proof-img (keep for backward compat) */
.proof-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  display: block;
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

/* ==========================================================================
   21. How It Works
   ========================================================================== */

.hiw-section {
  position: relative;
  padding: 96px 16px;
  background-color: #0d0f14;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hiw-wrapper {
  position: relative;
  max-width: 1024px;   /* max-w-5xl */
  margin: 0 auto;
}

/* ---- ambient glows ---- */
.hiw-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hiw-glow {
  position: absolute;
  top: 50%;
  border-radius: 9999px;
  filter: blur(100px);
  transform: translateY(-50%);
}

.hiw-glow--purple {
  left: 15%;
  width: 450px;
  height: 450px;
  background: rgba(124,92,255,0.12);
}

.hiw-glow--teal {
  left: 50%;
  transform: translate(-50%,-50%);
  width: 400px;
  height: 400px;
  background: rgba(0,201,167,0.09);
}

.hiw-glow--amber {
  right: 15%;
  transform: translateX(25%) translateY(-50%);
  width: 450px;
  height: 450px;
  background: rgba(245,158,11,0.10);
}

/* ---- cards row ---- */
.hiw-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hiw-cards {
    flex-direction: row;
  }
}

.hiw-cards__group {
  flex: 1;
  display: flex;
  align-items: stretch;
}

/* ---- arrows ---- */
.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.hiw-arrow--desktop {
  display: none;
  font-size: 1.25rem;
  padding: 0 4px;
}

.hiw-arrow--mobile {
  display: flex;
  font-size: 1.125rem;
  padding: 4px 0;
}

@media (min-width: 1024px) {
  .hiw-arrow--desktop { display: flex; }
  .hiw-arrow--mobile  { display: none; }
}

/* ---- card ---- */
.hiw-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom-width: 2px;
  background: var(--bg-elevated, #13151c);
  padding: 28px;
  height: 100%;
  width: 100%;
}

.hiw-card--accent { border-bottom-color: var(--primary); }
.hiw-card--teal   { border-bottom-color: var(--teal); }
.hiw-card--warn   { border-bottom-color: var(--warn); }

.hiw-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
}

.hiw-card--accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(124,92,255,0.15), 0 8px 32px rgba(0,0,0,0.3);
}

.hiw-card--teal:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0,201,167,0.15), 0 8px 32px rgba(0,0,0,0.3);
}

.hiw-card--warn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(245,158,11,0.15), 0 8px 32px rgba(0,0,0,0.3);
}

/* ---- bottom glow gradient inside card ---- */
.hiw-card__glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  pointer-events: none;
}

.hiw-card__glow--accent {
  background: linear-gradient(to top, rgba(124,92,255,0.14), transparent);
}

.hiw-card__glow--teal {
  background: linear-gradient(to top, rgba(0,201,167,0.14), transparent);
}

.hiw-card__glow--warn {
  background: linear-gradient(to top, rgba(245,158,11,0.14), transparent);
}

/* ---- decorative watermark number ---- */
.hiw-card__watermark {
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
}

/* ---- card inner (z above glow) ---- */
.hiw-card__inner {
  position: relative;
  z-index: 1;
}

/* ---- icon box ---- */
.hiw-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-raised, #1a1c25);
  margin-bottom: 16px;
}

.hiw-card__icon--accent { color: var(--primary); }
.hiw-card__icon--teal   { color: var(--teal); }
.hiw-card__icon--warn   { color: var(--warn); }

/* ---- card text ---- */
.hiw-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
}

.hiw-card__desc {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.625;
}

/* ==========================================================================
   22. Risk Reversal
   ========================================================================== */

.rr-section {
  position: relative;
  padding: 80px 16px;
  background-color: #0d0f14;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

/* Animated breathing glow */
.rr-section::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 50%;
  width: 700px;
  height: 500px;
  border-radius: 9999px;
  background: radial-gradient(ellipse at center, rgba(124,92,255,0.12) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: rr-breathe 8s ease-in-out infinite;
}

@keyframes rr-breathe {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.15); }
}


.rr-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
}

/* ---- heading ---- */
.rr-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.rr-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* ---- two-column grid ---- */
.rr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1024px) {
  .rr-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- card ---- */
.rr-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: #0a0b0f;
  padding: 32px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s cubic-bezier(0.16,1,0.3,1),
              border-color 0.35s ease;
}

.rr-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ---- card header (badge + label) ---- */
.rr-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.rr-card__badge {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
}

.rr-card__badge--teal {
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.2);
  color: var(--teal);
}

.rr-card__badge--rose {
  background: rgba(244,63,94,0.1);
  border: 1px solid rgba(244,63,94,0.2);
  color: #f43f5e;
}

.rr-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- items list ---- */
.rr-card__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rr-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rr-item__icon {
  margin-top: 2px;
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
}

.rr-item__icon--teal { color: var(--teal); }
.rr-item__icon--rose { color: rgba(244,63,94,0.6); }

.rr-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}

.rr-item__note {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ---- card footer ---- */
.rr-card__footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.rr-card__total {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.rr-card__total--teal { color: var(--teal); }
.rr-card__total--rose { color: #f43f5e; }

.rr-card__subtext {
  font-size: 0.875rem;
  color: var(--fg-dim);
  margin-top: 4px;
}

/* ---- bottom closer ---- */
.rr-closer {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 576px;
  margin: 0 auto 0;
  line-height: 1.6;
}

/* ---- guarantee strip ---- */
.rr-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.rr-guarantee__dot {
  opacity: 0.3;
}

/* ==========================================================================
   23. Live Price Sync Feed (Bento Card)
   ========================================================================== */

.sync-feed__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

/* ==========================================================================
   24. Checklist (What You Get)
   ========================================================================== */

.checklist-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.checklist-item__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 201, 167, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-item__name {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.checklist-item__desc {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ==========================================================================
   25. Value Box
   ========================================================================== */

.value-box {
  border: 1px solid rgba(0, 201, 167, 0.3);
  border-radius: var(--radius-2xl);
  padding: 24px;
  background: rgba(0, 201, 167, 0.03);
  text-align: center;
}

/* ==========================================================================
   26. Platform Cards (Sell Everywhere)
   ========================================================================== */

.platform-card--etsy {
  border-top-color: var(--rose);
}

.platform-card--amazon {
  border-top-color: var(--warn);
}

.platform-status {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.status-indicator--live {
  color: var(--teal);
}

.status-indicator--coming {
  color: var(--fg-dim);
}

/* ==========================================================================
   27. Callout Strip
   ========================================================================== */

.callout-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.callout-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
}

/* ==========================================================================
   28. Responsive Breakpoints
   ========================================================================== */

/* --- Mobile visibility --- */
.hidden-mobile {
  display: none;
}

.hidden-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
  .btn.hidden-mobile {
    display: inline-flex;
  }
  .nav__links.hidden-mobile {
    display: flex;
  }

  .hidden-desktop {
    display: none;
  }

  /* Footer grid at tablet */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  /* Footer grid at desktop */
  .footer__grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }

  /* Section padding adjustments */
  .section {
    padding: 80px 0;
  }

  .section--hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 32px;
  }
}

/* --- Responsive callout strip --- */
@media (max-width: 767px) {
  .callout-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .pricing-card__price {
    font-size: 2rem;
  }

  .scale-volume__price {
    font-size: 2.5rem;
  }

  .scale-volume {
    padding: 20px;
  }
}

/* --- Responsive comparison table --- */
@media (max-width: 767px) {
  .comp-table-wrap {
    border-radius: 12px;
  }
  .comp-table th,
  .comp-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
}
