/* ============================================================
   REVONT AI — style.css  v4  (Modern + Interactive)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   Variables
   ============================================================ */
:root {
  --bg:           #0a0a0b;
  --bg-2:         #0f0f10;
  --card:         #141416;
  --card-2:       #1a1a1c;
  --gold:         #c9a84c;
  --gold-dim:     rgba(201,168,76,.10);
  --gold-dim2:    rgba(201,168,76,.06);
  --gold-border:  rgba(201,168,76,.28);
  --gold-glow:    rgba(201,168,76,.18);
  --text:         #ffffff;
  --text-body:    #f0eeea;
  --text-muted:   #6b6b70;
  --border:       #2a2a2e;
  --r:            8px;
  --r-lg:         12px;
  --r-xl:         18px;
  --t:            .2s ease;
  --t-lg:         .38s cubic-bezier(.4,0,.2,1);
  --max-w:        1180px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* MODERN HEADINGS — Space Grotesk */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--text); }

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section--alt { background: var(--bg-2); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}

.section-header { margin-bottom: 3.75rem; }
.section-header h2 { margin-bottom: .875rem; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; line-height: 1.75; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ============================================================
   Animations
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .08s; }
.fade-up.d2 { transition-delay: .16s; }
.fade-up.d3 { transition-delay: .24s; }
.fade-up.d4 { transition-delay: .32s; }
.fade-up.d5 { transition-delay: .40s; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem;
  font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 600;
  letter-spacing: .02em; border-radius: var(--r);
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: all var(--t);
}
.btn--gold { background: var(--gold); border-color: var(--gold); color: #0a0a0b; font-weight: 700; }
.btn--gold:hover { background: #d4b45a; border-color: #d4b45a; color: #0a0a0b; box-shadow: 0 0 28px rgba(201,168,76,.4); transform: translateY(-1px); }
.btn--outline { background: transparent; border-color: var(--gold-border); color: var(--gold); }
.btn--outline:hover { background: var(--gold-dim); border-color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); transform: translateY(-1px); }
.btn--ghost { background: var(--card); border-color: var(--border); color: var(--text-muted); }
.btn--ghost:hover { border-color: var(--gold-border); color: var(--text-body); }
.btn--lg { padding: 1rem 2.5rem; font-size: .95rem; }

/* Apply for Access — header gold shimmer button */
.btn--apply {
  background: linear-gradient(110deg, #a87c28 0%, #c9a84c 30%, #f0d078 52%, #c9a84c 72%, #a87c28 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  border: 1px solid rgba(201,168,76,.5);
  color: #0a0a0b;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(201,168,76,.28), inset 0 1px 0 rgba(255,255,255,.2);
  animation: applyPulse 3.2s ease-in-out infinite;
  transition: background-position .55s ease, box-shadow var(--t), transform var(--t);
}
@keyframes applyPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(201,168,76,.28), inset 0 1px 0 rgba(255,255,255,.2); }
  50%       { box-shadow: 0 0 36px rgba(201,168,76,.55), inset 0 1px 0 rgba(255,255,255,.2); }
}
.btn--apply:hover {
  background-position: 0 0;
  box-shadow: 0 0 44px rgba(201,168,76,.6), 0 4px 18px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.2);
  transform: translateY(-1px);
  color: #0a0a0b;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42,42,46,.4);
  transition: padding var(--t-lg), border-color var(--t-lg), background var(--t-lg);
}
.nav.scrolled { padding: .7rem 0; border-bottom-color: var(--border); background: rgba(10,10,11,.95); }
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav__logo-link { display: block; flex-shrink: 0; }
.nav__logo-img {
  height: 36px; width: auto; display: block;
}

.nav__links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav__links a { font-size: .875rem; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color var(--t); }
.nav__links a:hover, .nav__links a.active { color: var(--text-body); }
.nav__right { display: flex; align-items: center; gap: 1.25rem; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-body); border-radius: 2px; transition: all var(--t); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(10,10,11,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 1.75rem 2rem 2.25rem;
  flex-direction: column; gap: 1.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: 1rem; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color var(--t); }
.nav__mobile a:hover { color: var(--text-body); }
.nav__mobile .btn { align-self: flex-start; margin-top: .5rem; }

@media (max-width: 860px) {
  .nav__links, .nav__right .btn { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  background: var(--bg); position: relative; overflow: hidden; padding-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 8% 55%, rgba(201,168,76,.055) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 92% 20%, rgba(201,168,76,.035) 0%, transparent 60%);
  animation: heroBg 18s ease-in-out infinite alternate; pointer-events: none;
}
@keyframes heroBg { 0%{opacity:.5;transform:scale(1)} 100%{opacity:1;transform:scale(1.06) translate(1%,-1%)} }

.hero__inner { position: relative; z-index: 1; width: 100%; padding: 60px 0 80px; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.hero__text .eyebrow { margin-bottom: 1.5rem; }
.hero__text h1 { margin-bottom: 1.5rem; }
.hero__sub { font-size: 1.1rem; color: var(--text-muted); max-width: 460px; line-height: 1.75; margin-bottom: 2.5rem; }
.hero__actions { display: flex; align-items: center; gap: .875rem; flex-wrap: wrap; }

/* ============================================================
   PRODUCT MOCKUP
   ============================================================ */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.mock-wrap {
  position: relative;
  transform: perspective(1100px) rotateX(2deg) rotateY(-5deg);
  transition: transform .7s ease;
}
.mock-wrap:hover { transform: perspective(1100px) rotateX(0deg) rotateY(-2deg); }

.mock-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  width: 360px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.08), inset 0 1px 0 rgba(255,255,255,.05);
}
.mock-header { padding: 1.125rem 1.375rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.mock-profile { display: flex; align-items: center; gap: .75rem; }
.mock-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--gold); font-family: 'Inter', sans-serif; }
.mock-handle { display: block; font-size: .78rem; font-weight: 600; color: var(--text-body); font-family: 'Inter', sans-serif; }
.mock-period  { display: block; font-size: .68rem; color: var(--text-muted); }
.mock-live { font-size: .65rem; font-weight: 700; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 20px; padding: .25rem .625rem; letter-spacing: .08em; animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.6} }

.mock-metrics { display: flex; align-items: stretch; border-bottom: 1px solid var(--border); }
.mock-metric { flex: 1; padding: 1rem .875rem; text-align: center; }
.mock-metric + .mock-metric { border-left: 1px solid var(--border); }
.mock-metric__val { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: .25rem; }
.mock-metric__label { display: block; font-size: .65rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }

.mock-chart-area { padding: 1rem 1.375rem .5rem; background: rgba(255,255,255,.015); }
.mock-chart { width: 100%; height: 80px; display: block; }
.mock-line { stroke-dasharray: 700; stroke-dashoffset: 700; animation: mockLineDraw 1.8s cubic-bezier(.4,0,.2,1) forwards .4s; }
.mock-area { opacity: 0; animation: mockAreaFade .8s ease forwards 1.8s; }
@keyframes mockLineDraw { to { stroke-dashoffset: 0; } }
@keyframes mockAreaFade { to { opacity: 1; } }

.mock-posts { padding: .875rem 1.375rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .6rem; }
.mock-posts__title { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .25rem; }
.mock-post { display: flex; align-items: center; gap: .625rem; }
.mock-post__name { font-size: .73rem; color: var(--text-body); width: 110px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-post__bar-wrap { flex: 1; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.mock-post__bar { height: 100%; background: linear-gradient(90deg, rgba(201,168,76,.5), var(--gold)); border-radius: 4px; transform: scaleX(0); transform-origin: left; animation: barSlide .9s ease forwards; }
@keyframes barSlide { to { transform: scaleX(1); } }
.mock-post:nth-child(2) .mock-post__bar { animation-delay: .2s; }
.mock-post:nth-child(3) .mock-post__bar { animation-delay: .4s; }
.mock-post:nth-child(4) .mock-post__bar { animation-delay: .6s; }
.mock-post__score { font-size: .72rem; font-weight: 700; color: var(--gold); width: 22px; text-align: right; flex-shrink: 0; }

.mock-insight { padding: .875rem 1.375rem; border-top: 1px solid var(--border); background: var(--gold-dim2); display: flex; align-items: flex-start; gap: .625rem; font-size: .75rem; color: var(--text-muted); line-height: 1.5; }
.mock-insight__arrow { color: var(--gold); font-size: .8rem; flex-shrink: 0; margin-top: .05rem; }

.mock-badge {
  position: absolute; background: var(--card); border: 1px solid var(--gold-border);
  border-radius: 10px; padding: .625rem .875rem;
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.mock-badge__icon { font-size: .85rem; }
.mock-badge__text { font-size: .75rem; font-weight: 600; color: var(--text-body); font-family: 'Inter', sans-serif; }
.mock-badge__sub  { font-size: .65rem; color: var(--text-muted); display: block; }
.mock-badge-1 { top: -20px; right: -30px; animation: float1 3.2s ease-in-out infinite; }
.mock-badge-2 { bottom: 40px; left: -40px; animation: float2 4s ease-in-out infinite .8s; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ============================================================
   FEATURE CARDS (hover charts)
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.feat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; transition: border-color var(--t), transform var(--t-lg), box-shadow var(--t-lg); cursor: default;
}
.feat-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px var(--gold-dim); }
.feat-card__body { padding: 2rem 2rem 1.5rem; }
.feat-card__icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 1.25rem; }
.feat-card__body h3 { font-size: 1.15rem; margin-bottom: .625rem; }
.feat-card__body p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
.feat-card__chart { height: 160px; background: var(--card-2); border-top: 1px solid var(--border); display: flex; align-items: flex-end; padding: 1.25rem; overflow: hidden; transition: background var(--t); }
.feat-card:hover .feat-card__chart { background: rgba(28,26,18,.9); }
.chart-svg { width: 100%; height: 100%; overflow: visible; }

/* Bar chart */
.c-bar { transform-box: fill-box; transform-origin: 50% 100%; transform: scaleY(0); transition: transform .55s cubic-bezier(.34,1.56,.64,1); fill: rgba(201,168,76,.4); }
.c-bar--peak { fill: var(--gold); }
.feat-card:hover .c-bar { transform: scaleY(1); }
.feat-card:hover .c-bar:nth-child(1) { transition-delay: .00s; }
.feat-card:hover .c-bar:nth-child(2) { transition-delay: .06s; }
.feat-card:hover .c-bar:nth-child(3) { transition-delay: .12s; }
.feat-card:hover .c-bar:nth-child(4) { transition-delay: .18s; }
.feat-card:hover .c-bar:nth-child(5) { transition-delay: .24s; }

/* Line chart */
.c-line { stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset .9s cubic-bezier(.4,0,.2,1); }
.feat-card:hover .c-line { stroke-dashoffset: 0; }
.c-line--dim { stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset .9s cubic-bezier(.4,0,.2,1) .2s; }
.feat-card:hover .c-line--dim { stroke-dashoffset: 0; }
.c-area { opacity: 0; transition: opacity .6s ease .7s; }
.feat-card:hover .c-area { opacity: 1; }

/* Calendar dots */
.c-dot { opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0); transition: transform .3s ease, opacity .3s ease; }
.feat-card:hover .c-dot { opacity: 1; transform: scale(1); }
.feat-card:hover .c-dot:nth-child(n)  { transition-delay: calc((var(--i, 0)) * 0.04s); }
/* Individual delays */
.feat-card:hover .c-dot:nth-child(1)  { transition-delay: .00s; }
.feat-card:hover .c-dot:nth-child(2)  { transition-delay: .03s; }
.feat-card:hover .c-dot:nth-child(3)  { transition-delay: .06s; }
.feat-card:hover .c-dot:nth-child(4)  { transition-delay: .09s; }
.feat-card:hover .c-dot:nth-child(5)  { transition-delay: .12s; }
.feat-card:hover .c-dot:nth-child(6)  { transition-delay: .15s; }
.feat-card:hover .c-dot:nth-child(7)  { transition-delay: .18s; }
.feat-card:hover .c-dot:nth-child(8)  { transition-delay: .21s; }
.feat-card:hover .c-dot:nth-child(9)  { transition-delay: .24s; }
.feat-card:hover .c-dot:nth-child(10) { transition-delay: .27s; }
.feat-card:hover .c-dot:nth-child(11) { transition-delay: .30s; }
.feat-card:hover .c-dot:nth-child(12) { transition-delay: .33s; }
.feat-card:hover .c-dot:nth-child(13) { transition-delay: .36s; }
.feat-card:hover .c-dot:nth-child(14) { transition-delay: .39s; }
.feat-card:hover .c-dot:nth-child(15) { transition-delay: .42s; }
.feat-card:hover .c-dot:nth-child(16) { transition-delay: .45s; }
.feat-card:hover .c-dot:nth-child(17) { transition-delay: .48s; }
.feat-card:hover .c-dot:nth-child(18) { transition-delay: .51s; }
.feat-card:hover .c-dot:nth-child(19) { transition-delay: .54s; }
.feat-card:hover .c-dot:nth-child(20) { transition-delay: .57s; }
.feat-card:hover .c-dot:nth-child(21) { transition-delay: .60s; }
.feat-card:hover .c-dot:nth-child(22) { transition-delay: .63s; }
.feat-card:hover .c-dot:nth-child(23) { transition-delay: .66s; }
.feat-card:hover .c-dot:nth-child(24) { transition-delay: .69s; }
.feat-card:hover .c-dot:nth-child(25) { transition-delay: .72s; }
.feat-card:hover .c-dot:nth-child(26) { transition-delay: .75s; }
.feat-card:hover .c-dot:nth-child(27) { transition-delay: .78s; }
.feat-card:hover .c-dot:nth-child(28) { transition-delay: .81s; }

.c-label { opacity: 0; transition: opacity .4s ease .8s; font-family: 'Inter', sans-serif; }
.feat-card:hover .c-label { opacity: 1; }
.c-grid { stroke: rgba(255,255,255,.04); stroke-width: 1; }
.c-axis { stroke: rgba(255,255,255,.08); stroke-width: 1; }

/* ============================================================
   TIKTOK CREATOR DEMO SECTION
   ============================================================ */
.demo-section { background: var(--bg-2); }

.demo-tabs {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 2.5rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: .375rem;
  width: fit-content;
}
.demo-tab {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 1.125rem; border-radius: 7px;
  font-family: 'Inter', sans-serif; font-size: .825rem; font-weight: 600;
  color: var(--text-muted); background: none; border: none; cursor: pointer;
  transition: all var(--t);
}
.demo-tab.active { background: var(--card-2); color: var(--text-body); border: 1px solid var(--border); }
.demo-tab:hover:not(.active) { color: var(--text-body); }
.demo-tab svg { width: 14px; height: 14px; }

.demo-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Video grid */
.demo-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.demo-video-card {
  aspect-ratio: 9/16;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.demo-video-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.5); }
.demo-video-card.active { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim), 0 12px 32px rgba(0,0,0,.5); }

.demo-video-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.demo-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 50%); }

.demo-video-score {
  position: absolute; top: 8px; right: 8px;
  background: rgba(10,10,11,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border); border-radius: 6px;
  padding: .25rem .5rem; font-family: 'Space Grotesk', sans-serif;
  font-size: .75rem; font-weight: 700; color: var(--gold);
}
.demo-video-card.active .demo-video-score { background: var(--gold); color: #0a0a0b; border-color: var(--gold); }

.demo-video-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem;
}
.demo-video-title { display: block; font-size: .72rem; font-weight: 600; color: var(--text); margin-bottom: .2rem; font-family: 'Inter', sans-serif; }
.demo-video-views { display: block; font-size: .65rem; color: rgba(255,255,255,.6); }
.demo-video-hook {
  display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .18rem .5rem; border-radius: 4px; margin-top: .3rem;
}
.hook--excellent { background: rgba(201,168,76,.25); color: var(--gold); }
.hook--strong    { background: rgba(100,200,100,.2); color: #7ec87e; }
.hook--good      { background: rgba(100,160,255,.2); color: #7eb5ff; }
.hook--average   { background: rgba(255,180,50,.2);  color: #ffb432; }
.hook--weak      { background: rgba(255,100,100,.2); color: #ff7070; }

/* Demo analysis panel */
.demo-panel {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; position: sticky; top: 100px;
  min-height: 520px;
}

.demo-panel__empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 520px; gap: 1rem; color: var(--text-muted);
  text-align: center; padding: 2rem;
}
.demo-panel__empty svg { width: 40px; height: 40px; opacity: .3; }
.demo-panel__empty p { font-size: .9rem; max-width: 200px; line-height: 1.6; }

.demo-panel__content { display: none; flex-direction: column; height: 100%; }
.demo-panel__content.active { display: flex; }

.demo-panel__header {
  padding: 1.375rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.demo-panel__title { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: .25rem; }
.demo-panel__views { font-size: .75rem; color: var(--text-muted); }

/* Circular score */
.demo-score-circle {
  position: relative; width: 64px; height: 64px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.demo-score-circle svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.demo-score-track { fill: none; stroke: var(--border); stroke-width: 4; }
.demo-score-fill {
  fill: none; stroke: var(--gold); stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 163; /* 2π×26 */
  stroke-dashoffset: 163;
  transition: stroke-dashoffset .8s cubic-bezier(.4,0,.2,1) .2s;
}
.demo-score-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--gold);
  position: relative; z-index: 1;
}

.demo-panel__body { padding: 1.375rem 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; flex: 1; }

/* Hook bar */
.demo-hook-row { display: flex; flex-direction: column; gap: .5rem; }
.demo-hook-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); display: flex; justify-content: space-between; }
.demo-hook-bar-wrap { height: 6px; background: var(--border); border-radius: 6px; overflow: hidden; }
.demo-hook-bar-fill { height: 100%; background: linear-gradient(90deg, rgba(201,168,76,.5), var(--gold)); border-radius: 6px; transform: scaleX(0); transform-origin: left; transition: transform .7s cubic-bezier(.34,1.2,.64,1) .3s; }
.demo-hook-strength { font-size: .75rem; font-weight: 600; color: var(--gold); }

/* Retention mini-chart */
.demo-retention { }
.demo-ret-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .625rem; display: block; }
.demo-ret-svg { width: 100%; height: 70px; display: block; }
.demo-ret-line { stroke-dasharray: 400; stroke-dashoffset: 400; transition: stroke-dashoffset .8s ease .4s; }
.demo-ret-area { opacity: 0; transition: opacity .5s ease .9s; }

/* Insights */
.demo-insights { }
.demo-insights-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .75rem; display: block; }
.demo-insights-list { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.demo-insights-list li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .82rem; color: var(--text-body); line-height: 1.55;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .35s ease, transform .35s ease;
}
.demo-insights-list li.show { opacity: 1; transform: translateX(0); }
.demo-insights-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-size: .75rem; margin-top: .1rem; }

/* Recommendation */
.demo-rec {
  background: var(--gold-dim2); border: 1px solid var(--gold-border);
  border-radius: var(--r); padding: 1rem 1.125rem;
  font-size: .82rem; color: var(--text-muted); line-height: 1.6;
  opacity: 0; transition: opacity .4s ease .8s;
}
.demo-rec.show { opacity: 1; }
.demo-rec strong { color: var(--gold); font-weight: 600; display: block; margin-bottom: .375rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

/* ============================================================
   PLANS
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.plan-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2.5rem; display: flex; flex-direction: column;
  transition: border-color var(--t-lg), transform var(--t-lg), box-shadow var(--t-lg);
}
.plan-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,.45), 0 0 0 1px var(--gold-dim); }
.plan-card__tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-border); padding: .28rem .75rem; border-radius: 4px; margin-bottom: 1.5rem; width: fit-content; }
.plan-card h3 { font-size: 1.6rem; margin-bottom: .75rem; }
.plan-card__desc { font-size: .9rem; color: var(--text-muted); font-style: italic; margin-bottom: 2rem; line-height: 1.65; }
.plan-card__rule { height: 1px; background: var(--border); margin-bottom: 2rem; }
.plan-card__features { list-style: none; display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2.5rem; flex: 1; }
.plan-card__features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--text-body); line-height: 1.55; }
.plan-card__features li::before { content: '→'; color: var(--gold); font-size: .78rem; flex-shrink: 0; margin-top: .15rem; }
@media (max-width: 720px) { .plans-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STATS (with counter animation)
   ============================================================ */
.stats-strip { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; }
.stat-item { flex: 1; text-align: center; padding: 0 2.5rem; }
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-item__value { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--gold); margin-bottom: .375rem; letter-spacing: -0.02em; }
.stat-item__label { font-size: .8rem; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }
@media (max-width: 600px) {
  .stats-inner { flex-direction: column; gap: 2.5rem; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); padding-top: 2.5rem; }
}

/* ============================================================
   CTA
   ============================================================ */
.cta-block { text-align: center; padding: 120px 0; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.04) 0%, transparent 70%); pointer-events: none; }
.cta-block__inner { position: relative; z-index: 1; }
.cta-block h2 { margin-bottom: 1rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-block p { font-size: 1.05rem; color: var(--text-muted); max-width: 400px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cta-block__btns { display: flex; align-items: center; justify-content: center; gap: .875rem; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--bg); padding: 180px 0 90px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 70% at 65% 50%, rgba(201,168,76,.05) 0%, transparent 65%); pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 5rem 0 2.5rem; }
.footer__top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer__logo-img { height: 32px; width: auto; display: block; margin-bottom: 1rem; }
.footer__brand p { font-size: .875rem; color: var(--text-muted); max-width: 260px; line-height: 1.7; }
.footer__nav h4 { font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.375rem; }
.footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer__nav ul a { font-size: .875rem; color: var(--text-muted); text-decoration: none; transition: color var(--t); }
.footer__nav ul a:hover { color: var(--text-body); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2.5rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--text-muted); }
.footer__bottom em { font-style: italic; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; } }

/* ============================================================
   ABOUT PAGE — INTERACTIVE
   ============================================================ */

/* Data vs Intelligence toggle */
.dvs-section { background: var(--bg-2); }
.dvs-wrap { max-width: 900px; margin: 0 auto; }
.dvs-toggle {
  display: flex; align-items: center; gap: .375rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: .375rem; width: fit-content; margin: 0 auto 2.5rem;
}
.dvs-btn {
  padding: .625rem 1.25rem; border-radius: 7px; border: 1px solid transparent;
  font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 600;
  color: var(--text-muted); background: none; cursor: pointer; transition: all var(--t);
}
.dvs-btn.active { background: var(--card-2); color: var(--text-body); border-color: var(--border); }
.dvs-btn:hover:not(.active) { color: var(--text-body); }

.dvs-display { position: relative; min-height: 320px; }
.dvs-panel { position: absolute; inset: 0; transition: opacity .4s ease, transform .4s ease; }
.dvs-panel.hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }

/* Raw data panel (messy) */
.dvs-raw {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.75rem;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.dvs-raw-metric {
  background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1rem; text-align: center;
}
.dvs-raw-metric__val { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text-muted); margin-bottom: .25rem; }
.dvs-raw-metric__label { font-size: .72rem; color: var(--text-muted); }
.dvs-raw-chart { grid-column: 1/-1; background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1rem; }
.dvs-raw-chart-title { font-size: .7rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; }
.dvs-raw-bars { display: flex; align-items: flex-end; gap: .5rem; height: 60px; }
.dvs-raw-bar { flex: 1; background: rgba(255,255,255,.08); border-radius: 3px 3px 0 0; }
.dvs-raw-bottom { grid-column: 1/-1; padding: .75rem; background: rgba(255,100,100,.05); border: 1px dashed rgba(255,100,100,.15); border-radius: var(--r); font-size: .825rem; color: var(--text-muted); text-align: center; }

/* Revont intelligence panel */
.dvs-intel {
  background: var(--card); border: 1px solid var(--gold-border); border-radius: var(--r-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.125rem;
}
.dvs-intel-header { display: flex; align-items: center; justify-content: space-between; }
.dvs-intel-header h4 { font-size: 1rem; }
.dvs-intel-badge { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border-radius: 20px; padding: .25rem .75rem; }
.dvs-intel-score { display: flex; align-items: center; gap: 1.5rem; }
.dvs-intel-score-item { }
.dvs-intel-score-label { font-size: .7rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .375rem; }
.dvs-intel-score-val { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); }
.dvs-intel-insights { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.dvs-intel-insights li { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--text-body); line-height: 1.55; }
.dvs-intel-insights li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-size: .8rem; }
.dvs-intel-rec { background: var(--gold-dim2); border: 1px solid var(--gold-border); border-radius: var(--r); padding: 1rem 1.125rem; font-size: .875rem; color: var(--text-muted); line-height: 1.6; }
.dvs-intel-rec strong { color: var(--gold); font-weight: 600; }

/* Who it's for — 3 interactive cards */
.for-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.for-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2rem; cursor: pointer;
  transition: border-color var(--t), transform var(--t-lg), background var(--t);
}
.for-card:hover { border-color: var(--gold-border); background: rgba(201,168,76,.03); transform: translateY(-3px); }
.for-card__icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.for-card__title { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.for-card__sub { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.for-card__expand {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .3s ease, margin-top .3s ease;
  opacity: 0; margin-top: 0;
}
.for-card:hover .for-card__expand { max-height: 300px; opacity: 1; margin-top: 1.25rem; }
.for-card__expand-inner { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.for-card__list { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.for-card__list li { font-size: .82rem; color: var(--text-muted); line-height: 1.55; display: flex; align-items: flex-start; gap: .5rem; }
.for-card__list li::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-size: .8rem; font-weight: 700; }

/* About stats */
.about-stats { display: flex; align-items: center; justify-content: center; gap: 0; border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; background: var(--card); margin-top: 3rem; }
.about-stat { flex: 1; padding: 2rem 1.5rem; text-align: center; }
.about-stat + .about-stat { border-left: 1px solid var(--border); }
.about-stat__val { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); display: block; margin-bottom: .375rem; }
.about-stat__label { font-size: .78rem; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }

/* Not-for section */
.not-for-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: .5rem; }
.not-for-card {
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-lg); padding: 1.5rem; text-align: center;
}
.not-for-card__x { font-size: 1.25rem; color: var(--text-muted); margin-bottom: .75rem; display: block; }
.not-for-card__text { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 760px) {
  .for-grid, .not-for-grid { grid-template-columns: 1fr; }
  .dvs-raw { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   APPLY PAGE
   ============================================================ */
.apply-hero { padding: 180px 0 80px; position: relative; overflow: hidden; background: var(--bg); }
.apply-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 75% at 80% 50%, rgba(201,168,76,.04) 0%, transparent 65%); pointer-events: none; }
.apply-hero__inner { position: relative; z-index: 1; }
.apply-hero h1 { margin-bottom: 1rem; }
.apply-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 440px; line-height: 1.75; }
.apply-body { background: var(--bg-2); padding: 60px 0 110px; }
.apply-form-wrap { max-width: 660px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: .845rem; font-weight: 600; color: var(--text-body); margin-bottom: .5rem; }
.form-req { color: var(--gold); margin-left: 2px; }
.form-control { width: 100%; padding: .875rem 1.125rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); color: var(--text-body); font-family: 'Inter', sans-serif; font-size: .9rem; outline: none; -webkit-appearance: none; appearance: none; transition: border-color var(--t), box-shadow var(--t); }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-control::placeholder { color: var(--text-muted); opacity: .7; }
.form-control--select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b70' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.125rem center; padding-right: 2.75rem; }
.form-control--select option { background: #1a1a1c; color: var(--text-body); }
.form-control--textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-checkboxes { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: .25rem; }
.form-checkbox { display: flex; align-items: center; gap: .5rem; cursor: pointer; user-select: none; }
.form-checkbox input[type="checkbox"] { width: 17px; height: 17px; border-radius: 3px; cursor: pointer; accent-color: var(--gold); flex-shrink: 0; }
.form-checkbox span { font-size: .875rem; color: var(--text-body); }
.form-submit-area { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 1.125rem; }
.form-note { font-size: .8rem; color: var(--text-muted); font-style: italic; line-height: 1.6; }
.form-success { display: none; background: var(--card); border: 1px solid var(--gold-border); border-radius: var(--r-xl); padding: 3.5rem 2rem; text-align: center; }
.form-success.visible { display: block; }
.form-success__icon { display: block; width: 52px; height: 52px; color: var(--gold); margin: 0 auto 1.5rem; }
.form-success h3 { font-size: 1.6rem; margin-bottom: .875rem; }
.form-success p { color: var(--text-muted); max-width: 360px; margin: 0 auto; line-height: 1.75; }

/* ============================================================
   INTELLIGENCE PAGE
   ============================================================ */
.report-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.report-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.875rem; transition: border-color var(--t), transform var(--t); }
.report-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.report-card__num { font-size: .7rem; font-weight: 700; letter-spacing: .14em; color: var(--gold); margin-bottom: 1rem; display: block; font-family: 'Inter', sans-serif; }
.report-card h3 { font-size: 1rem; margin-bottom: .6rem; }
.report-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
.report-card__badge { display: inline-block; font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border-radius: 20px; padding: .2rem .6rem; margin-bottom: .6rem; }
@media (max-width: 900px) { .report-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .report-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps-wrap { max-width: 640px; }
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 1.75rem; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 15px; top: 36px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--border), transparent); }
.step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--card); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: .875rem; color: var(--gold); font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; }
.step__body { padding-bottom: 2.75rem; }
.step__body h3 { font-size: 1.05rem; margin-bottom: .5rem; margin-top: .25rem; }
.step__body p { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }

.manifesto-inner { max-width: 660px; margin: 0 auto; }
.manifesto-inner h2 { margin-bottom: 2.25rem; }
.manifesto-inner p { font-size: 1rem; color: var(--text-muted); line-height: 1.875; margin-bottom: 1.5rem; }
.manifesto-inner p strong { color: var(--text-body); font-weight: 500; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) { .section { padding: 80px 0; } }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { justify-content: flex-start; }
  .mock-wrap { transform: none !important; }
  .mock-badge-1, .mock-badge-2 { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-panel { position: static; }
  .demo-video-grid { grid-template-columns: repeat(3,1fr); }
  .about-stats { flex-direction: column; }
  .about-stat + .about-stat { border-left: none; border-top: 1px solid var(--border); }
}
@media (max-width: 768px) { .section { padding: 70px 0; } }
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero__sub { font-size: 1rem; }
  .page-hero { padding: 150px 0 70px; }
  .mock-card { width: 100%; }
  .demo-video-grid { grid-template-columns: repeat(2,1fr); }
  .cta-block { padding: 80px 0; }
}

/* ============================================================
   INTELLIGENCE PAGE — INTERACTIVE REPORT PREVIEW
   ============================================================ */
.report-card { cursor: pointer; }
.report-card.active {
  border-color: var(--gold);
  background: rgba(201,168,76,.03);
  box-shadow: 0 0 0 2px var(--gold-dim), 0 16px 48px rgba(0,0,0,.4);
  transform: translateY(-4px);
}

.rp-strip {
  margin-top: 1.5rem;
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.rp-strip.open { max-height: 500px; opacity: 1; }

.rp-strip__bar {
  padding: 1.125rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: rgba(201,168,76,.03);
  display: flex; align-items: center; gap: 1rem;
}
.rp-strip__num { font-size: .68rem; font-weight: 700; letter-spacing: .2em; color: var(--gold); font-family: 'Inter', sans-serif; }
.rp-strip__title { font-family: 'Space Grotesk', sans-serif; font-size: .95rem; font-weight: 600; color: var(--text); }
.rp-strip__close { margin-left: auto; font-size: .75rem; color: var(--text-muted); cursor: pointer; transition: color var(--t); }
.rp-strip__close:hover { color: var(--text-body); }
.rp-strip__body { padding: 1.5rem 1.75rem; }
.rp-panel { display: none; }
.rp-panel.active { display: block; }

/* Panel 1 – Account Audit */
.rp-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.25rem; }
.rp-metric { background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1rem; text-align: center; }
.rp-metric__val { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: .2rem; }
.rp-metric__lbl { font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.rp-insight-tag { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-muted); background: var(--gold-dim2); border: 1px solid var(--gold-border); border-radius: var(--r); padding: .75rem 1.125rem; line-height: 1.5; }
.rp-insight-tag::before { content: '→'; color: var(--gold); font-size: .78rem; }

/* Panel 2 – Content Scoring */
.rp-post-list { display: flex; flex-direction: column; gap: .75rem; }
.rp-post { display: flex; align-items: center; gap: .875rem; padding: .75rem 1rem; background: var(--card-2); border-radius: var(--r); border: 1px solid var(--border); }
.rp-post__rank { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.rp-post__name { flex: 1; font-size: .84rem; color: var(--text-body); }
.rp-post__bar-wrap { width: 100px; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.rp-post__bar { height: 100%; background: linear-gradient(90deg, rgba(201,168,76,.4), var(--gold)); border-radius: 4px; }
.rp-post__score { font-size: .8rem; font-weight: 700; color: var(--gold); width: 28px; text-align: right; flex-shrink: 0; }
.rp-post__badge { font-size: .6rem; font-weight: 700; padding: .18rem .5rem; border-radius: 4px; letter-spacing: .06em; text-transform: uppercase; flex-shrink: 0; }

/* Panel 3 – Hook Analysis */
.rp-hook-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.rp-hook-stat { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); }
.rp-hook-stat-lbl { font-size: .72rem; color: var(--text-muted); }
.rp-vocab { display: flex; flex-wrap: wrap; gap: .5rem; }
.rp-vocab-pill {
  padding: .38rem .875rem; border-radius: 20px; font-size: .78rem; font-weight: 600;
  border: 1px solid; cursor: default; transition: all var(--t);
}
.rp-vocab-pill.works { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }
.rp-vocab-pill.weak  { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.07); color: var(--text-muted); }
.rp-vocab-pill.dead  { background: rgba(255,80,80,.06); border-color: rgba(255,80,80,.12); color: rgba(255,100,100,.6); text-decoration: line-through; }

/* Panel 4 – Repurposing Map */
.rp-repurpose { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; }
.rp-repurpose-card { background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.125rem; }
.rp-repurpose-card__lbl { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .5rem; display: block; }
.rp-repurpose-card p { font-size: .84rem; color: var(--text-body); line-height: 1.55; margin: 0; }
.rp-repurpose-card--out { border-color: var(--gold-border); }
.rp-repurpose-card--out .rp-repurpose-card__lbl { color: var(--gold); }
.rp-repurpose-arrow { font-size: 1.25rem; color: var(--gold); text-align: center; flex-shrink: 0; }

/* Panel 5 – Competitor Snapshot */
.rp-comp-tbl { width: 100%; border-collapse: collapse; font-size: .84rem; }
.rp-comp-tbl th { text-align: left; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); padding: .5rem .875rem; border-bottom: 1px solid var(--border); }
.rp-comp-tbl td { padding: .75rem .875rem; color: var(--text-body); border-bottom: 1px solid rgba(255,255,255,.03); }
.rp-comp-tbl tr.rp-you td { color: var(--gold); font-weight: 600; background: var(--gold-dim2); }
.rp-comp-tbl td.rp-win { color: var(--gold); font-weight: 600; }
.rp-comp-tbl td.rp-lose { color: rgba(255,100,100,.75); }

/* Panel 6 – Strategy Memo */
.rp-memo { display: flex; flex-direction: column; gap: .875rem; }
.rp-memo-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.125rem; background: var(--card-2); border-radius: var(--r-lg); border: 1px solid var(--border); transition: border-color var(--t); }
.rp-memo-item:hover { border-color: var(--gold-border); }
.rp-memo-item__num { width: 28px; height: 28px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: .7rem; font-weight: 800; color: var(--gold); flex-shrink: 0; }
.rp-memo-item__body { font-size: .875rem; color: var(--text-body); line-height: 1.6; }
.rp-memo-item__body strong { color: var(--gold); font-weight: 600; display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }

@media (max-width: 720px) {
  .rp-metrics { grid-template-columns: repeat(2,1fr); }
  .rp-repurpose { grid-template-columns: 1fr; }
  .rp-repurpose-arrow { transform: rotate(90deg); }
}

/* ============================================================
   INTELLIGENCE PAGE — INTERACTIVE PROCESS
   ============================================================ */
.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.proc-steps { display: flex; flex-direction: column; gap: .5rem; }
.proc-step {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem 1.5rem; border-radius: var(--r-lg);
  cursor: pointer; border: 1px solid transparent;
  transition: background var(--t), border-color var(--t);
}
.proc-step:hover:not(.active) { background: rgba(255,255,255,.025); }
.proc-step.active { background: rgba(201,168,76,.04); border-color: var(--gold-border); }
.proc-step__num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--card-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: .875rem; font-weight: 700; color: var(--text-muted);
  transition: all var(--t);
}
.proc-step.active .proc-step__num { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }
.proc-step__body h3 { font-size: 1rem; margin-bottom: .375rem; margin-top: .2rem; }
.proc-step__body p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

.proc-visual { position: sticky; top: 110px; }
.proc-vis { display: none; }
.proc-vis.active { display: block; }

/* Shared visual card shell */
.proc-vis-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.proc-vis-card__top {
  padding: .875rem 1.25rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .625rem;
  background: rgba(255,255,255,.02);
}
.proc-vis-card__dot { width: 8px; height: 8px; border-radius: 50%; }
.proc-vis-card__body { padding: 1.5rem; }

/* Step 1 – Approval status */
.pv-status-track { display: flex; flex-direction: column; gap: 1rem; }
.pv-status-row { display: flex; align-items: center; gap: 1rem; }
.pv-status-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .875rem; flex-shrink: 0; }
.pv-status-icon.done { background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold); }
.pv-status-icon.pending { background: var(--card-2); border: 1px solid var(--border); color: var(--text-muted); }
.pv-status-label { font-size: .875rem; font-weight: 500; }
.pv-status-label.done { color: var(--gold); }
.pv-status-label.pending { color: var(--text-muted); }
.pv-status-time { margin-left: auto; font-size: .72rem; color: var(--text-muted); }
.pv-status-line { width: 1px; height: 20px; background: var(--border); margin-left: 17px; }

/* Step 2 – Data upload */
.pv-upload-area { border: 1.5px dashed var(--border); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; margin-bottom: 1.25rem; }
.pv-upload-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.pv-upload-label { font-size: .84rem; color: var(--text-muted); margin-bottom: .375rem; }
.pv-upload-sub { font-size: .74rem; color: var(--text-muted); opacity: .6; }
.pv-file { display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem; background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r); margin-top: .625rem; }
.pv-file__icon { font-size: 1.1rem; }
.pv-file__name { font-size: .82rem; color: var(--text-body); flex: 1; }
.pv-file__status { font-size: .72rem; color: var(--gold); font-weight: 600; }

/* Step 3 – Report */
.pv-report-cover { background: var(--card-2); border: 1px solid var(--gold-border); border-radius: var(--r-lg); padding: 1.375rem; margin-bottom: 1rem; }
.pv-report-cover__eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; display: block; }
.pv-report-cover__title { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.pv-sections { display: flex; flex-direction: column; gap: .4rem; }
.pv-section-row { display: flex; align-items: center; gap: .625rem; font-size: .78rem; color: var(--text-muted); }
.pv-section-row::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-border); flex-shrink: 0; }
.pv-section-row.done { color: var(--text-body); }
.pv-section-row.done::before { background: var(--gold); }
.pv-report-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600; color: var(--gold); background: var(--gold-dim); border-radius: 20px; padding: .3rem .875rem; margin-top: .875rem; }

/* Step 4 – Roadmap call */
.pv-cal { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 1rem; }
.pv-cal-day { text-align: center; font-size: .68rem; color: var(--text-muted); padding: .375rem 0; font-weight: 600; }
.pv-cal-cell { width: 100%; aspect-ratio: 1; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .74rem; color: var(--text-muted); cursor: default; }
.pv-cal-cell.prev { opacity: .3; }
.pv-cal-cell.booked { background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold); font-weight: 700; }
.pv-cal-event { background: var(--gold-dim2); border: 1px solid var(--gold-border); border-radius: var(--r); padding: .75rem 1rem; display: flex; align-items: center; gap: .75rem; font-size: .84rem; color: var(--gold); font-weight: 600; }

@media (max-width: 860px) {
  .proc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .proc-visual { position: static; }
}

/* ============================================================
   INTELLIGENCE PAGE — DASHBOARD vs REPORT (replaces manifesto)
   ============================================================ */
.dvr-section { }
.dvr-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.dvr-col__lbl {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: .875rem; display: flex; align-items: center; gap: .5rem;
}
.dvr-col--report .dvr-col__lbl { color: var(--gold); }
.dvr-col__lbl::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.dvr-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.dvr-col--report .dvr-card { border-color: var(--gold-border); }

.dvr-card__head {
  padding: .875rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  display: flex; align-items: center; gap: .625rem;
}
.dvr-col--report .dvr-card__head { background: var(--gold-dim2); color: var(--gold); border-bottom-color: var(--gold-border); }

/* Dashboard card — chaotic numbers grid */
.dvr-noise { display: grid; grid-template-columns: repeat(3,1fr); gap: .625rem; padding: 1rem; }
.dvr-noise-cell { background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r); padding: .75rem .875rem; }
.dvr-noise-cell__val { font-size: 1.25rem; font-weight: 700; color: var(--text-muted); display: block; font-family: 'Space Grotesk', sans-serif; }
.dvr-noise-cell__lbl { font-size: .65rem; color: var(--text-muted); opacity: .6; }
.dvr-noise-chart { grid-column: 1/-1; background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r); padding: .875rem; display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.dvr-noise-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(255,255,255,.08); }
.dvr-noise-q { grid-column: 1/-1; text-align: center; font-size: .78rem; color: rgba(255,100,100,.55); font-style: italic; padding: .5rem; }

/* Report card — clean & actionable */
.dvr-clean { padding: 1.25rem; display: flex; flex-direction: column; gap: .875rem; }
.dvr-clean-insight { display: flex; align-items: flex-start; gap: .625rem; font-size: .84rem; color: var(--text-body); line-height: 1.6; }
.dvr-clean-insight::before { content: '→'; color: var(--gold); flex-shrink: 0; font-size: .78rem; margin-top: .1rem; }
.dvr-clean-action { background: var(--gold-dim2); border: 1px solid var(--gold-border); border-radius: var(--r); padding: .875rem 1rem; font-size: .84rem; color: var(--text-muted); line-height: 1.6; }
.dvr-clean-action strong { color: var(--gold); font-weight: 600; display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .375rem; }

/* VS badge */
.dvr-vs-col { display: flex; align-items: flex-start; justify-content: center; padding-top: 52px; }
.dvr-vs-badge {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--card-2); display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
}

/* 4 difference chips */
.dvr-diffs { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.dvr-diff {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem; text-align: center;
  transition: border-color var(--t), transform var(--t);
}
.dvr-diff:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.dvr-diff__icon { font-size: 1.5rem; display: block; margin-bottom: .875rem; }
.dvr-diff__label { font-family: 'Space Grotesk', sans-serif; font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .375rem; display: block; }
.dvr-diff__sub { font-size: .78rem; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 760px) {
  .dvr-grid { grid-template-columns: 1fr; }
  .dvr-vs-col { display: none; }
  .dvr-diffs { grid-template-columns: repeat(2,1fr); }
}
