/* ============================================
   JV TikTok AgenHub — Complete Styles
   ============================================ */

/* === MOTION TOKENS === */
:root {
  --black: #1a0e15;
  --ink: #21141c;
  --burgundy: #2d1018;
  --red: #e50923;
  --red-soft: #ff3b4f;
  --silver: #d0d3d8;
  --muted: #a0a4ab;
  --off: #f5f1ec;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --shadow-red: 0 0 40px rgba(229, 9, 35, 0.3);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Motion tokens */
  --fast: 0.3s;
  --normal: 0.65s;
  --slow: 1.2s;
  --cinematic: 2s;
  --ease-micro: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-panel: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-choreo: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-sine: cubic-bezier(0.37, 0, 0.63, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--off);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(129, 7, 22, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(50, 10, 25, 0.1), transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(40, 8, 20, 0.12), transparent 40%),
    var(--black);
  overflow-x: hidden;
}

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

button, input, select, textarea {
  font: inherit;
}

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

/* ============================================
   HONEYPOT HIDDEN CLASS
   ============================================ */
.hidden {
  display: none !important;
}

/* ============================================
   PAGE PROGRESS BAR
   ============================================ */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100;
  pointer-events: none;
}

.page-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  transform-origin: left;
  will-change: transform;
}

/* ============================================
   SIGNAL CANVAS
   ============================================ */
#signalCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.56;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(26, 14, 21, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: background var(--fast) ease, border-color var(--fast) ease;
}

.site-header.scrolled {
  background: rgba(26, 14, 21, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

/* === Brand Logo (JV Enterprise JPEG with white bg) === */
.brand-mark {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 160px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand-copy {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark,
.header-actions,
.main-nav,
.journey-switch,
.button-row,
.flow-line,
.service-tags,
.mini-flow,
.count-ladder,
.day-timeline,
.unlock-flow {
  display: flex;
  align-items: center;
}

/* === Main Nav (desktop) === */
.main-nav {
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.78rem;
  color: rgba(243, 238, 233, 0.8);
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--red);
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: white;
  border: 1px solid var(--red);
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background var(--fast) ease, transform var(--fast) ease;
}

.nav-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
}

/* === Header Actions === */
.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.journey-switch {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  gap: 4px;
}

.switch-btn {
  border: 0;
  min-width: 82px;
  height: 34px;
  color: var(--muted);
  background: transparent;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  transition: background var(--fast) ease, color var(--fast) ease;
}

.switch-btn.active {
  background: var(--red);
  color: white;
  box-shadow: 0 0 20px rgba(229, 9, 35, 0.45);
}

/* ============================================
   HAMBURGER (MOBILE)
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 31;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: transform var(--fast) ease, opacity var(--fast) ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(26, 14, 21, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--normal) var(--ease-panel);
}

.mobile-nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  z-index: 30;
  background: rgba(26, 14, 21, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  transform: translateX(100%);
  transition: transform var(--normal) var(--ease-panel);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 0;
  color: var(--off);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--fast) ease;
}

.mobile-nav a:hover {
  color: var(--red-soft);
}

.mobile-nav .cta {
  display: inline-flex;
  justify-content: center;
  width: auto;
  margin-top: 24px;
  border-bottom: none;
  font-size: 0.85rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.78rem;
  transition: transform var(--fast) ease, box-shadow var(--fast) ease, background var(--fast) ease;
  position: relative;
  overflow: hidden;
}

.cta {
  background: linear-gradient(135deg, #ff1632, #a40417);
  color: white;
  box-shadow: var(--shadow-red);
}

.cta.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.68rem;
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--off);
}

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

.cta:disabled {
  opacity: 0.7;
  pointer-events: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  margin: 0 0 16px;
  color: var(--red-soft);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 900;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.91;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  max-width: 980px;
  text-shadow: 0 0 32px rgba(229, 9, 35, 0.28);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
}

h3 {
  color: var(--off);
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.1;
}

p {
  color: rgba(245, 241, 236, 0.78);
  line-height: 1.65;
}

/* ============================================
   SECTION INTRO
   ============================================ */
.section-pad {
  padding: clamp(90px, 12vw, 170px) clamp(18px, 6vw, 86px);
}

.section-intro {
  max-width: 980px;
  margin-bottom: 56px;
}

.section-intro p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.08rem;
}

/* ============================================
   FLOW ARROWS (shared — NO border/background/padding)
   ============================================ */
.flow-arrow,
.pipe-arrow,
.inline-arrow,
.arrow-icon,
.why-arrow,
.ecosystem-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--red-soft);
}

.flow-arrow svg,
.pipe-arrow svg,
.inline-arrow svg,
.arrow-icon svg,
.why-arrow svg,
.ecosystem-arrow svg {
  display: block;
}

/* Override any inherited tag styles on arrow icons */
.pipe-arrow {
  border: none !important;
  background: none !important;
  padding: 0 !important;
}

/* ============================================
   HERO SECTION (data-hero)
   ============================================ */
.panel-dark {
  background: transparent;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 116px clamp(18px, 6vw, 86px) 76px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 14, 21, 0.9) 0%, rgba(26, 14, 21, 0.55) 32%, rgba(26, 14, 21, 0.05) 78%),
    linear-gradient(180deg, rgba(26, 14, 21, 0.05), rgba(26, 14, 21, 0.85));
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent, transparent 5px, rgba(255, 255, 255, 0.03) 6px);
  mix-blend-mode: screen;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  min-width: 0;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-sub {
  max-width: 540px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

/* Hero video UI floating panel */
.hero-video-ui {
  position: absolute;
  right: 18%;
  top: 23%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(26, 14, 21, 0.46);
  backdrop-filter: blur(12px);
  animation: floatPanel 5s ease-in-out infinite;
  z-index: 1;
}

.hero-video-ui span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-signal-value {
  display: block;
  color: #fff;
  font-size: 1.6rem;
}

/* Flow line */
.flow-line {
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.flow-line span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 238, 233, 0.86);
  padding: 10px 13px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.button-row {
  gap: 14px;
  flex-wrap: wrap;
}

/* Metric rail */
.metric-rail {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 4vw, 60px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 10px;
}

.metric-rail div {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(18px);
  padding: 18px;
}

.metric-rail span,
.level-detail span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.metric-rail strong {
  display: block;
  margin-top: 8px;
  font-size: 1.7rem;
}

/* ============================================
   6B. REVENUE SYSTEM — CLEAN DESIGN
   ============================================ */
.revenue-section {
  position: relative;
  background: linear-gradient(180deg, rgba(26, 14, 21, 0.6), var(--black));
  overflow: hidden;
}

.revenue-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) clamp(24px, 6vw, 80px) clamp(60px, 8vh, 120px);
}

/* Text block */
.revenue-text-block {
  margin-bottom: clamp(40px, 5vh, 72px);
}

.revenue-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.rev-line {
  display: block;
}

.revenue-desc {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(243, 238, 233, 0.65);
  line-height: 1.7;
}

/* Comparison strip */
.revenue-compare {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(229, 9, 35, 0.06), rgba(255, 255, 255, 0.02));
  margin-bottom: clamp(32px, 4vh, 56px);
}

.rev-compare-old,
.rev-compare-new {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.rev-compare-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.rev-compare-old .rev-compare-label {
  color: rgba(243, 238, 233, 0.4);
}

.rev-compare-new .rev-compare-label {
  color: var(--red);
}

.rev-compare-old span:last-child {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(243, 238, 233, 0.5);
  text-decoration: line-through;
  text-decoration-color: rgba(229, 9, 35, 0.5);
}

.rev-compare-new span:last-child {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rev-compare-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(229, 9, 35, 0.12);
  border: 1px solid rgba(229, 9, 35, 0.25);
}

/* Pipeline flow */
.revenue-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vh, 56px);
}

.pipe-step {
  padding: clamp(10px, 1.4vw, 14px) clamp(16px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  color: rgba(245, 241, 236, 0.9);
  text-transform: uppercase;
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: background 0.3s, border-color 0.3s;
}

.pipe-step:hover {
  background: rgba(229, 9, 35, 0.1);
  border-color: rgba(229, 9, 35, 0.35);
}

.pipe-connector {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--red);
  opacity: 0.7;
}

/* Dashboard panel */
.revenue-dashboard {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
}

.dash-chart {
  min-width: 200px;
}

.chart-bars {
  height: clamp(120px, 16vh, 180px);
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.chart-bars i {
  flex: 1;
  background: linear-gradient(180deg, #ff5263, #7a0310);
  box-shadow: 0 0 18px rgba(229, 9, 35, 0.35);
  animation: barPulse 2.7s ease-in-out infinite;
  transform-origin: bottom;
  border-radius: 2px 2px 0 0;
}

.chart-bars i:nth-child(1) { height: 34%; animation-delay: 0s; }
.chart-bars i:nth-child(2) { height: 48%; animation-delay: 0.12s; }
.chart-bars i:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.chart-bars i:nth-child(4) { height: 58%; animation-delay: 0.36s; }
.chart-bars i:nth-child(5) { height: 72%; animation-delay: 0.48s; }
.chart-bars i:nth-child(6) { height: 86%; animation-delay: 0.6s; }
.chart-bars i:nth-child(7) { height: 100%; animation-delay: 0.72s; }

.dash-info span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.dash-info strong {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.dash-info p {
  font-size: 0.9rem;
  color: rgba(243, 238, 233, 0.55);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   6C. JV ENGINE — PINNED SCENE (data-engine)
   ============================================ */
.engine-section {
  position: relative;
  background: linear-gradient(180deg, rgba(35, 8, 14, 0.12), rgba(26, 14, 21, 0.5), var(--black));
}

.engine-pin-outer {
  position: relative;
}

.engine-pin {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

/* Persistent center product box — absolute, top-center, behind content */
.engine-center-object {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.engine-product-box {
  padding: 14px 28px;
  border: 1px solid rgba(229, 9, 35, 0.25);
  background: rgba(26, 14, 21, 0.5);
  color: var(--off);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  opacity: 0.15;
  will-change: transform, opacity;
}

/* Engine content */
.engine-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(18px, 6vw, 86px) 60px;
  height: 100%;
}

.engine-content .eyebrow,
.engine-content h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Engine stages — grid of cards, not a horizontal track */
.engine-stages {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.engine-stage {
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(229, 9, 35, 0.12), transparent);
  will-change: transform, opacity;
}

.stage-num {
  color: var(--red-soft);
  font-weight: 950;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
}

.engine-stage h3 {
  margin-bottom: 10px;
}

.engine-stage p {
  font-size: 0.9rem;
  color: rgba(243, 238, 233, 0.6);
}

/* Growth loop */
.growth-loop {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  border: 1px solid rgba(229, 9, 35, 0.26);
}

.growth-loop span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(229, 9, 35, 0.08);
  text-transform: uppercase;
  color: var(--silver);
  font-size: 0.78rem;
  text-align: center;
}

/* ============================================
   6D. SERVICES — CINEMATIC SCROLL (data-service-wrap)
   ============================================ */
.services-wrap {
  position: relative;
  background: var(--black);
}

.service-bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100svh;
  margin-bottom: -100svh;
  overflow: hidden;
}

.service-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  will-change: opacity, transform;
}

.service-bg img.active {
  opacity: 1;
  transform: scale(1);
}

.service-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 14, 21, 0.88) 0%, rgba(26, 14, 21, 0.5) 40%, rgba(26, 14, 21, 0.15) 80%),
    linear-gradient(180deg, rgba(26, 14, 21, 0.05), rgba(26, 14, 21, 0.7));
  z-index: 1;
}

.service-scene {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 6vw, 86px);
}

.service-copy {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 4vw, 42px);
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, rgba(26, 14, 21, 0.72), rgba(26, 14, 21, 0.12));
  backdrop-filter: blur(12px);
  border-radius: 0 8px 8px 0;
  max-width: 720px;
  will-change: transform, opacity;
}

.service-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-tags span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  color: rgba(245, 241, 236, 0.9);
  padding: 10px 13px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.count-ladder {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.count-ladder span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  color: rgba(245, 241, 236, 0.9);
  padding: 10px 13px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.mini-flow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
}

.mini-flow span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  color: rgba(245, 241, 236, 0.9);
  padding: 10px 13px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* Service 05 headline */
.service-05-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem) !important;
  line-height: 1.05;
}

.service-05-headline span {
  display: block;
}

/* Live -> GMV */
.live-gmv {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
  color: white;
}

/* ============================================
   6E. WHY JV — STRENGTH CARDS (data-why)
   ============================================ */
.why-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(18px, 6vw, 86px) clamp(60px, 8vw, 100px);
  background:
    radial-gradient(ellipse at 20% 40%, rgba(229, 9, 35, 0.06), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(229, 9, 35, 0.03), transparent 50%),
    rgba(26, 14, 21, 0.7);
  overflow: hidden;
}

.why-intro {
  max-width: 980px;
  margin-bottom: 56px;
}

.why-headline {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.92;
}

.why-hl-line {
  display: block;
}

.why-subtitle {
  margin-top: 20px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(243, 238, 233, 0.7);
  line-height: 1.6;
  max-width: 680px;
}

/* === Strength Cards Grid === */
.why-strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.why-strength-card {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.why-strength-card:hover {
  border-color: rgba(229, 9, 35, 0.3);
  box-shadow: 0 4px 32px rgba(229, 9, 35, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.why-strength-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.why-strength-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-strength-card:hover .why-strength-img img {
  transform: scale(1.06);
}

.why-strength-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-strength-num {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-strength-body h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  color: white;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-strength-body p {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: rgba(243, 238, 233, 0.65);
  line-height: 1.65;
  margin: 0;
}

/* === Bottom Comparison Strip === */
.why-compare-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 40px;
}

.why-compare-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}

.why-compare-label-jv {
  color: var(--red-soft);
}

.why-compare-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.why-compare-flow span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(243, 238, 233, 0.7);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.why-compare-flow svg {
  color: rgba(143, 146, 153, 0.4);
  flex-shrink: 0;
}

.why-compare-jv .why-compare-flow span {
  border-color: rgba(229, 9, 35, 0.2);
  color: var(--off);
  background: rgba(229, 9, 35, 0.05);
}

.why-compare-jv .why-compare-flow svg {
  color: var(--red);
}

.why-dead-end {
  border-color: rgba(255, 255, 255, 0.04) !important;
  color: rgba(143, 146, 153, 0.35) !important;
  background: none !important;
}

.why-loop-end {
  border-color: rgba(229, 9, 35, 0.4) !important;
  color: var(--red-soft) !important;
  background: rgba(229, 9, 35, 0.12) !important;
  font-weight: 900 !important;
}

.why-vs-divider {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Caption — initially hidden, GSAP reveals */
.why-caption {
  text-align: center;
  color: var(--silver);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  will-change: transform, opacity;
}

/* ============================================
   6G. INNOVARK / ECOSYSTEM PARTNERSHIP (data-innovark)
   ============================================ */
.innovark-section {
  position: relative;
  padding: clamp(90px, 12vw, 170px) clamp(18px, 6vw, 86px);
  overflow: hidden;
}

.innovark-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(229, 9, 35, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(35, 8, 14, 0.3), transparent 60%),
    rgba(2, 1, 3, 0.98);
  z-index: 0;
}

.innovark-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.innovark-left h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.innovark-support {
  max-width: 480px;
  margin-top: 20px;
  font-size: 1.05rem;
  color: rgba(243, 238, 233, 0.7);
}

.innovark-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.innovark-logo-dark {
  padding: 32px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

/* White bg PNG — transparent background, no blend mode needed */
.innovark-img-white {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  will-change: opacity, transform;
}

.innovark-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.innovark-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Logo on light card — transparent PNG, normal display */
.innovark-logo-color {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.innovark-metric-num {
  color: var(--off);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.innovark-metric-label {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   6H. BUSINESS CONTACT (data-biz-contact)
   ============================================ */
.contact-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(35, 8, 14, 0.15), rgba(26, 14, 21, 0.4)),
    var(--black);
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}

.contact-headline {
  will-change: clip-path;
}

/* ============================================
   PREMIUM FORM
   ============================================ */
.premium-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
  padding: clamp(18px, 4vw, 34px);
}

.premium-form label {
  display: grid;
  gap: 9px;
  color: rgba(243, 238, 233, 0.76);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.premium-form .full,
.form-submit {
  grid-column: 1 / -1;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  color: white;
  padding: 14px;
  outline: 0;
  transition: border-color var(--fast) ease, box-shadow var(--fast) ease;
}

.premium-form textarea {
  min-height: 120px;
  resize: vertical;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: rgba(229, 9, 35, 0.82);
  box-shadow: 0 0 0 3px rgba(229, 9, 35, 0.14), 0 0 20px rgba(229, 9, 35, 0.08);
}

.premium-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238f9299' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Form success / error messages */
.form-message {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 18px auto 0;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.form-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}
.form-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* ============================================
   7A. CREATOR HERO (data-creator-hero)
   ============================================ */
.creator-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 6vw, 86px);
  overflow: hidden;
}

.creator-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.creator-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 14, 21, 0.75), rgba(26, 14, 21, 0.15) 58%, rgba(26, 14, 21, 0.4)),
    linear-gradient(180deg, rgba(26, 14, 21, 0.02), rgba(26, 14, 21, 0.8));
}

.creator-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  min-width: 0;
}

.creator-hero-headline {
  position: relative;
}

/* Both hl-1 and hl-2 are display:block, normal flow. NO absolute positioning. */
.creator-hl-1 {
  display: block;
  color: rgba(243, 238, 233, 0.5);
}

.creator-hl-2 {
  display: block;
}

.creator-cta {
  opacity: 0;
  will-change: transform, opacity;
}

/* ============================================
   7B. CREATOR BENEFITS
   ============================================ */
.creator-benefits {
  position: relative;
}

.creator-system {
  position: relative;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(18px);
  transition: transform var(--fast) ease, border-color var(--fast) ease;
  will-change: transform, opacity;
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 35, 0.55);
}

/* ============================================
   7C. CREATOR ECOSYSTEM
   ============================================ */
.ecosystem-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem) !important;
}

.ecosystem-headline > span:not(.ecosystem-arrow) {
  display: inline;
}

.creator-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.creator-stages article {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  background:
    linear-gradient(160deg, rgba(229, 9, 35, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  will-change: transform, opacity;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.creator-stages article:hover {
  border-color: rgba(229, 9, 35, 0.25);
  transform: translateY(-2px);
}

.creator-stages article span {
  color: var(--red-soft);
  font-weight: 950;
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}

/* ============================================
   7D. LEVEL JOURNEY
   ============================================ */
.level-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    rgba(26, 14, 21, 0.96);
  background-size: 54px 54px;
}

.level-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
  border-radius: 2px;
  overflow: hidden;
}

.level-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.5s var(--ease-micro);
  box-shadow: 0 0 12px rgba(229, 9, 35, 0.5);
}

.level-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(116px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.level {
  min-height: 150px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(4px);
  color: rgba(245, 241, 236, 0.72);
  text-transform: uppercase;
  cursor: pointer;
  display: grid;
  place-content: center;
  gap: 12px;
  transition: border-color var(--fast) ease, box-shadow var(--fast) ease, transform var(--fast) ease, color var(--fast) ease;
  will-change: transform;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.level span {
  color: var(--red-soft);
  font-size: 1.8rem;
  font-weight: 950;
}

.level.active {
  color: white;
  border-color: rgba(229, 9, 35, 0.72);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px) scale(1.03);
}

.level-detail {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(18px);
  padding: 28px;
  max-width: 760px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ============================================
   7E. FIRST 30 DAYS
   ============================================ */
.thirty-days {
  position: relative;
}

.day-timeline,
.unlock-flow {
  margin-top: 18px;
}

.day-timeline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.day-timeline span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 238, 233, 0.86);
  padding: 10px 13px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.unlock-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.unlock-flow span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 238, 233, 0.86);
  padding: 10px 13px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   7F. COMMUNITY WALL
   ============================================ */
.community-wall {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding: 100px clamp(18px, 6vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(26, 14, 21, 0.9), rgba(26, 14, 21, 0.58)),
    url("assets/creator-wall.png") center / cover;
}

.community-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.community-copy p:not(.eyebrow) {
  max-width: 540px;
  font-size: 1.08rem;
}

.wall-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.wall-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.wall-track span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 238, 233, 0.86);
  padding: 10px 13px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 42px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  margin-top: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
}

.footer-logo {
  width: 140px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(243, 238, 233, 0.5);
}

.site-footer > div:last-child {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.site-footer a,
.site-footer span {
  color: rgba(243, 238, 233, 0.72);
  font-size: 0.88rem;
  transition: color var(--fast) ease;
}

.site-footer a:hover {
  color: var(--red-soft);
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes dash {
  to { stroke-dashoffset: -240; }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes barPulse {
  0%, 100% { filter: brightness(0.78); transform: scaleY(0.82); }
  50% { filter: brightness(1.25); transform: scaleY(1); }
}

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

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .hero-line,
  .rev-line,
  .revenue-desc,
  .revenue-compare,
  .revenue-pipeline,
  .revenue-dashboard,
  .why-caption,
  .creator-cta,
  .innovark-img-white,
  .why-strength-card,
  .why-compare-strip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .creator-hl-1 {
    color: rgba(243, 238, 233, 0.5) !important;
  }
}

/* ============================================
   RESPONSIVE — 1080px
   ============================================ */
@media (max-width: 1080px) {
  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  /* Why JV strength cards: 2 col on tablet */
  .why-strengths-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Header layout change */
  .site-header {
    grid-template-columns: auto auto;
  }

  /* Hide CTA on tablet to prevent nav overlap */
  .header-actions .cta.small {
    display: none;
  }

  /* Logo tablet sizes */
  .brand-logo {
    width: 140px;
    max-height: 42px;
  }

  .innovark-img-white {
    max-height: 50px;
  }

  .innovark-logo-color {
    height: 24px;
  }

  .footer-logo {
    width: 120px;
    max-height: 38px;
  }

  /* Revenue pipeline wrap on tablet */
  .revenue-pipeline {
    gap: 0;
  }

  .pipe-connector {
    width: 20px;
    height: 20px;
  }

  .pipe-connector svg {
    width: 12px;
    height: 12px;
  }

  /* Why compare stack */
  .why-compare {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Benefit grid stack */
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  /* Creator stages stack */
  .creator-stages {
    grid-template-columns: 1fr;
  }

  /* Innovark stack */
  .innovark-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Metric rail becomes static */
  .metric-rail {
    position: static;
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
  }

  /* Service copy max-width */
  .service-copy {
    max-width: 720px;
  }

  /* Engine stages responsive */
  .engine-stages {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .engine-stage {
    min-height: auto;
  }

  /* Growth loop responsive */
  .growth-loop {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE — 720px
   ============================================ */
@media (max-width: 720px) {
  .site-header {
    padding: 12px;
    gap: 10px;
  }

  /* Hide brand copy text and small CTA */
  .brand-copy,
  .cta.small {
    display: none;
  }

  /* Logo mobile sizes */
  .brand-logo {
    width: 110px;
    max-height: 34px;
  }

  .innovark-img-white {
    max-height: 44px;
  }

  .innovark-logo-color {
    height: 22px;
  }

  .footer-logo {
    width: 100px;
    max-height: 32px;
  }

  .header-actions {
    gap: 8px;
  }

  .switch-btn {
    min-width: 74px;
  }

  /* Smaller headings */
  h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  /* Sections padding */
  .hero-section,
  .creator-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Service scenes: mobile — one at a time, fade in/out */
  .service-bg {
    display: none;
  }

  .service-scene {
    min-height: 80vh;
    padding: 80px 18px;
    display: flex;
    align-items: center;
  }

  .service-copy {
    max-width: 100%;
    opacity: 0;
    will-change: opacity;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(26, 14, 21, 0.94), rgba(26, 14, 21, 0.74)),
      linear-gradient(180deg, rgba(26, 14, 21, 0.1), rgba(26, 14, 21, 0.96));
  }

  /* Single column grids */
  .metric-rail,
  .growth-loop,
  .premium-form,
  .revenue-dashboard,
  .revenue-compare,
  .site-footer {
    grid-template-columns: 1fr;
  }

  /* Revenue mobile */
  .revenue-compare {
    flex-direction: column;
    text-align: center;
  }

  .rev-compare-arrow {
    transform: rotate(90deg);
  }

  .revenue-pipeline {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

  .pipe-connector {
    transform: rotate(90deg);
    margin: 4px auto;
  }

  .revenue-headline {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  /* Why JV strength cards: 1 col on mobile */
  .why-strengths-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-strength-img {
    height: 160px;
  }

  .why-strength-body {
    padding: 18px;
  }

  .why-compare-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .why-vs-divider {
    text-align: center;
  }

  /* Ecosystem headline stacks vertically, arrows rotate */
  .ecosystem-headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .ecosystem-arrow svg {
    transform: rotate(90deg);
  }

  /* Flow arrows rotate on mobile */
  .flow-arrow svg {
    transform: rotate(90deg);
  }

  /* Innovark mobile */
  .innovark-cards {
    grid-template-columns: 1fr;
  }

  /* Creator stages mobile */
  .creator-stages {
    grid-template-columns: 1fr;
  }

  /* Engine stages 2-col grid on mobile */
  .engine-stages {
    grid-template-columns: 1fr 1fr;
  }

  .engine-stage {
    min-height: 220px;
  }

  /* Level map */
  .level-map {
    grid-template-columns: repeat(7, 132px);
  }

  /* Service 05 headline smaller */
  .service-05-headline {
    font-size: clamp(1.4rem, 6.5vw, 2.2rem) !important;
  }

  /* Service copy padding */
  .service-copy {
    padding: 20px;
  }

  /* Footer stack */
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer > div:last-child {
    justify-items: start;
  }

  /* Mobile nav full-width */
  .mobile-nav {
    max-width: 100%;
  }
}