/* ============================================================
   WPPBX MARKETING — stylesheet
   ============================================================ */

:root {
  --bg:        #0a0d11;
  --bg-1:      #0d1117;
  --surface:   #141920;
  --surface-2: #1a1f27;
  --border:    #252b33;
  --border-2:  #30363d;

  --text:      #e5edf4;
  --text-muted:#8b949e;
  --text-dim:  #6e7681;

  --y:         #ffd500;
  --y-deep:    #ffb800;
  --y-glow:    rgba(255,213,0,0.35);

  --accent:    #ffd500;
  --accent-2:  #ff9a00;
  --ok:        #3fb950;
  --warn:      #ffa657;
  --err:       #f85149;
  --blue:      #63a5fc;

  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --ease:      cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur:       0.28s;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Single scroll container on <html> only.
   overflow-x: hidden on <html> also implicitly promotes overflow-y
   to auto, so the single scrollbar lives on the root element.
   <body> keeps its default `overflow: visible` and is NOT a scroll
   container, so no second scrollbar appears. */
html { overflow-x: hidden; }
body { position: relative; }

body::before {
  /* Very subtle dotted noise for texture — fixed to viewport */
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ------------ background orbs ------------ */
.bg-orbs {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  mix-blend-mode: screen;
  animation: orb-float 22s ease-in-out infinite alternate;
}
.orb-1 {
  width: 780px; height: 780px;
  left: -260px; top: -200px;
  background: radial-gradient(circle, rgba(255,213,0,0.45), transparent 65%);
}
.orb-2 {
  width: 620px; height: 620px;
  right: -220px; top: 380px;
  background: radial-gradient(circle, rgba(255,154,0,0.35), transparent 70%);
  animation-delay: -6s;
}
.orb-3 {
  width: 900px; height: 900px;
  left: 20%; top: 1400px;
  background: radial-gradient(circle, rgba(99,165,252,0.25), transparent 70%);
  animation-delay: -12s;
  opacity: 0.35;
}
@keyframes orb-float {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(90px,-50px) scale(1.08); }
}

/* ------------ cursor spotlight (desktop) ------------ */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255,213,0,0.08), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-spotlight { opacity: 1; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,13,17,0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-brand-mark {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--y), var(--y-deep));
  color: #1a1e24;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(255,213,0,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}
/* Trademark superscript. Solid yellow on the dark page background gives
   maximum contrast. No pill background (same-hue background hid the
   glyph in the previous iteration). */
.nav-brand .tm,
.tm {
  font-size: 0.65em;
  color: var(--y);
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
  line-height: 0;
  letter-spacing: 0;
  text-shadow: 0 0 8px rgba(255,213,0,0.35);
}
.nav-links {
  display: flex;
  gap: 0.2rem;
  margin-left: 1rem;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta { margin-left: auto; display: flex; gap: 0.5rem; }
.nav-burger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.04); }
.nav-mobile.open { display: flex; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.05rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.85rem; }
.btn-lg { padding: 0.85rem 1.4rem; font-size: 1rem; border-radius: 12px; }
.btn-primary {
  background: linear-gradient(135deg, var(--y) 0%, var(--y-deep) 55%, var(--accent-2) 100%);
  color: #1a1e24;
  box-shadow: 0 4px 18px rgba(255,213,0,0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255,213,0,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
  color: #0d1117;
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #4a5259; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.hero-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 40%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,213,0,0.18), transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem 0.35rem 0.7rem;
  border: 1px solid rgba(255,213,0,0.25);
  border-radius: 999px;
  background: rgba(255,213,0,0.05);
  color: var(--y);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.kicker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--y);
  box-shadow: 0 0 0 3px rgba(255,213,0,0.2);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,213,0,0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(255,213,0,0.06); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 auto 1.3rem;
  max-width: 980px;
}
.hero-title-accent {
  background: linear-gradient(110deg, var(--y) 0%, #fff8a8 50%, var(--y) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer { 0% {background-position: 0%; } 100% { background-position: 200%; } }

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(20,25,32,0.5);
  backdrop-filter: blur(10px);
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--y);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
.hero-stat-sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  margin-top: 3.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,213,0,0.6), transparent);
  animation: scroll-fall 1.8s ease-in-out infinite;
}
@keyframes scroll-fall {
  0%   { transform: scaleY(0.2); transform-origin: top; }
  50%  { transform: scaleY(1);   transform-origin: top; }
  51%  { transform: scaleY(1);   transform-origin: bottom; }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

/* ============================================================
   PITCH ROW
   ============================================================ */
.pitch-row {
  padding: 3rem 0 5rem;
}
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.pitch-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,25,32,0.9), rgba(13,17,23,0.95));
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.pitch-card:hover {
  border-color: rgba(255,213,0,0.4);
  transform: translateY(-2px);
}
.pitch-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,213,0,0.14), transparent 55%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.pitch-card:hover .pitch-card-glow { opacity: 1; }
.pitch-card-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(255,213,0,0.1);
  color: var(--y);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.pitch-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.4rem;
}
.pitch-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   SECTION PRIMITIVES
   ============================================================ */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 0.9rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.section-lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.feature {
  position: relative;
  padding: 1.8rem 1.6rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,25,32,0.9), rgba(13,17,23,0.95));
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.feature:hover {
  border-color: rgba(255,213,0,0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.feature-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,213,0,0.18), rgba(255,213,0,0.05));
  color: var(--y);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,213,0,0.22);
}
.feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}
.feature p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.58;
  margin: 0 0 1rem;
}
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-chips li {
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(255,213,0,0.06);
  color: var(--y);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255,213,0,0.15);
}

/* ============================================================
   TERMINAL SHOWCASE
   ============================================================ */
.showcase {
  padding: 5rem 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.showcase-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.showcase-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.showcase-ctas { margin-top: 1.8rem; }

.terminal-frame {
  border-radius: 14px;
  background: linear-gradient(180deg, #0d1117, #080b0f);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.55),
              0 0 0 1px rgba(255,213,0,0.06);
  transform: perspective(1200px) rotateY(-2deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.terminal-frame:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}
.terminal-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: #181c22;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.term-dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-a { background: #febc2e; }
.dot-g { background: #28c840; }
.term-title {
  position: absolute; left: 0; right: 0; text-align: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
}
.terminal-body {
  margin: 0;
  padding: 1.3rem 1.4rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #d7e0ea;
  overflow-x: auto;
}
.terminal-body code { background: none; padding: 0; color: inherit; }
.c-p { color: var(--y); font-weight: 600; }
.c-k { color: #63a5fc; font-weight: 600; }
.c-s { color: #ffa657; }
.c-m { color: var(--ok); font-weight: 700; }
.c-v { color: #7ee787; font-weight: 600; }
.c-c { color: #6e7681; font-style: italic; }

/* ============================================================
   STEPS (HOW IT WORKS)
   ============================================================ */
.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(20,25,32,0.9), rgba(13,17,23,0.95));
  position: relative;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.step:hover {
  border-color: rgba(255,213,0,0.35);
  transform: translateX(4px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--y);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.9;
}
.step-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.4rem;
}
.step-body p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}
.step-visual {
  display: grid; place-items: center;
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,213,0,0.08);
  border: 1px solid rgba(255,213,0,0.2);
  color: var(--y);
  font-size: 1.8rem;
  justify-self: end;
}

/* ============================================================
   AUDIENCE SPLIT
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.aud-card {
  position: relative;
  padding: 2.5rem 2.2rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(20,25,32,0.96), rgba(13,17,23,0.95));
  overflow: hidden;
  transition: border-color 0.35s var(--ease),
              transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  display: block;
  color: inherit;
}
.aud-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(255,213,0,0.35);
  border-color: rgba(255,213,0,0.55);
}
.aud-card-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,213,0,0.22), transparent 55%);
  opacity: 0.4;
  transition: opacity 0.35s var(--ease);
}
.aud-card:hover .aud-card-bg { opacity: 1; }
.aud-buy .aud-card-bg  { background: radial-gradient(circle at 100% 0%, rgba(99,165,252,0.25), transparent 55%); }
.aud-sell .aud-card-bg { background: radial-gradient(circle at 0% 100%, rgba(255,213,0,0.3), transparent 55%); }
.aud-card-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,213,0,0.12);
  color: var(--y);
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}
.aud-buy .aud-card-icon { background: rgba(99,165,252,0.15); color: var(--blue); }
.aud-card-body { position: relative; z-index: 1; }
.aud-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 0.7rem;
}
.aud-card-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.4rem;
}
.aud-card-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600;
  color: var(--y);
  font-size: 0.95rem;
  transition: gap 0.3s var(--ease);
}
.aud-buy .aud-card-cta { color: var(--blue); }
.aud-card:hover .aud-card-cta { gap: 0.7rem; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  padding: 6rem 0;
}
.quote-mark {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 2.6rem 2.2rem;
  border: 1px solid rgba(255,213,0,0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,213,0,0.04), rgba(20,25,32,0.95)),
    radial-gradient(circle at 0% 0%, rgba(255,213,0,0.08), transparent 55%);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
}
.quote-open {
  position: absolute;
  top: -0.3rem; left: 1.2rem;
  font-size: 7rem;
  line-height: 1;
  color: var(--y);
  opacity: 0.2;
  font-family: Georgia, serif;
}
.quote-mark p { margin: 0; }
.quote-accent {
  display: block;
  margin-top: 1rem;
  color: var(--y);
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 860px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(20,25,32,0.7);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item[open] {
  border-color: rgba(255,213,0,0.35);
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: background var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255,255,255,0.02); }
.faq-item summary i {
  transition: transform 0.3s var(--ease);
  color: var(--y);
  font-size: 1.05rem;
}
.faq-item[open] summary i { transform: rotate(-180deg); }
.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.3rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}
.faq-item p a { color: var(--y); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 7rem 0 8rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,213,0,0.14), transparent 55%),
    radial-gradient(circle at 0% 50%, rgba(255,154,0,0.1), transparent 45%);
  pointer-events: none;
}
.final-cta-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1rem;
}
.final-cta-wrap .accent {
  background: linear-gradient(110deg, var(--y), #fff8a8 50%, var(--y));
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}
.final-cta-wrap p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin: 0 0 2.5rem;
}
.final-cta-buttons {
  display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 4rem;
  padding-bottom: 1.2rem;
  background: rgba(8,11,14,0.85);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .nav-brand { margin-bottom: 1rem; }
.footer-blurb {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1.2rem;
}
.footer-entity {
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 0 0 0.9rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--y); }
.footer-bottom {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.78rem;
  position: relative;
}
.footer-wordmark {
  position: absolute;
  left: 0; right: 0;
  bottom: -4rem;
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 14rem);
  letter-spacing: -0.05em;
  line-height: 0.8;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,213,0,0.12), transparent 80%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-block; margin-left: auto; }
  .pitch-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .step { grid-template-columns: 56px 1fr; }
  .step-visual { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1rem; padding: 1rem 1.4rem; border-radius: 18px; }
  .hero-stat-sep { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 4.5rem 0 4rem; }
  .section { padding: 4.5rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-wordmark { font-size: 4.5rem; bottom: -2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.05s !important;
  }
  .orb { animation: none !important; }
  .hero-title-accent, .final-cta-wrap .accent { animation: none !important; }
}
