:root {
  --ink: #080C17;
  --ink-2: #0D1320;
  --ink-3: #111827;
  --ink-4: #1A2235;
  --gold: #8D7240;
  --gold-light: #A68B58;
  --gold-dim: rgba(141, 114, 64, 0.12);
  --gold-dark: #6A5730;
  --accent: #6A5730;
  --accent-light: #8D7240;
  --accent-dim: rgba(106, 87, 48, 0.12);
  --cream: #E7E8EA;
  --cream-2: #B0B7C3;
  --muted: #6B748A;
  --muted-2: #3F4659;
  --border: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --r: 10px;
  --r-lg: 18px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── CANVAS BACKGROUND ── */
#bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: rgba(9,9,15,0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 17px;
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--cream-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  display: flex; gap: 10px;
}
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .2s;
  border: none;
}
.btn-ghost {
  background: transparent;
  color: var(--cream-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: var(--ink-3); color: var(--cream); }
.btn-gold {
  background: var(--gold);
  color: #0D0900;
  font-weight: 600;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-accent {
  background: var(--accent);
  color: var(--cream);
  font-weight: 600;
}
.btn-accent:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-dim); }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5vw; }
section { position: relative; z-index: 1; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 140px 5vw 100px;
  position: relative; overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(240,165,0,0.25);
  color: var(--gold-light);
  font-size: 12px; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp .6s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero h1 .accent-word { color: var(--accent); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--cream-2); line-height: 1.6;
  max-width: 580px; margin: 24px auto 48px;
  animation: fadeUp .7s .2s ease both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .7s .3s ease both;
}
.hero-scroll {
  margin-top: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeUp .7s .5s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink-2); padding: 14px 0;
}
.marquee-inner {
  display: flex; gap: 60px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-size: 13px; font-weight: 500; letter-spacing: .5px;
  color: var(--muted); white-space: nowrap;
}
.marquee-inner span.hi { color: var(--gold); }
.marquee-inner span.t { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 20px; height: 1px; background: var(--muted);
}

/* ── TWO PLATFORMS ── */
.platforms {
  padding: 120px 0;
  background: var(--ink-2);
}
.platforms-intro { text-align: center; margin-bottom: 70px; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.1;
}
.section-title em { font-style: normal; }
.section-sub {
  font-size: 17px; color: var(--cream-2); margin-top: 14px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.platform-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.platform-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  padding: 48px 40px 44px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.platform-card:hover { transform: translateY(-4px); }
.platform-card.pro { background: var(--ink-3); }
.platform-card.pro:hover { border-color: rgba(240,165,0,0.4); }
.platform-card.creator { background: var(--ink-3); }
.platform-card.creator:hover { border-color: rgba(0,212,160,0.4); }
.card-glow {
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  filter: blur(80px); opacity: .25; pointer-events: none;
}
.pro .card-glow { background: var(--gold); }
.creator .card-glow { background: var(--accent); }
.platform-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 6px;
  margin-bottom: 24px;
}
.pro .platform-tag { background: var(--gold-dim); color: var(--gold-light); }
.creator .platform-tag { background: var(--accent-dim); color: var(--accent-light); }
.platform-domain {
  font-family: 'DM Mono', monospace;
  font-size: 13px; color: var(--muted); margin-bottom: 12px;
}
.platform-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800; line-height: 1.15;
  letter-spacing: -.5px; margin-bottom: 14px;
}
.platform-card p { color: var(--cream-2); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--cream-2);
}
.feat-icon {
  width: 18px; height: 18px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 10px;
}
.pro .feat-icon { background: var(--gold-dim); color: var(--gold); }
.creator .feat-icon { background: var(--accent-dim); color: var(--accent); }
.platform-price {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px;
}
.price-from { font-size: 12px; color: var(--muted); }
.price-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
}
.pro .price-num { color: var(--gold); }
.creator .price-num { color: var(--accent); }
.price-unit { font-size: 13px; color: var(--muted); }

/* ── STATS BAND ── */
.stats-band {
  padding: 80px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px; font-weight: 800; line-height: 1;
  letter-spacing: -2px; margin-bottom: 8px;
}
.stat-num .u { font-size: 28px; opacity: .6; }
.stat-item:nth-child(1) .stat-num { color: var(--gold); }
.stat-item:nth-child(2) .stat-num { color: var(--accent); }
.stat-item:nth-child(3) .stat-num { color: var(--gold); }
.stat-item:nth-child(4) .stat-num { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted); letter-spacing: .3px; }

/* ── HOW IT WORKS ── */
.how { padding: 120px 0; }
.how-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.how-left { position: sticky; top: 100px; }
.how-left h2 { margin-bottom: 20px; }
.how-left p { color: var(--cream-2); font-size: 16px; margin-bottom: 32px; }
.arch-visual {
  background: var(--ink-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 28px 24px; font-family: 'DM Mono', monospace;
  font-size: 12px; line-height: 1.8; color: var(--muted);
}
.arch-visual .c { color: var(--cream-2); }
.arch-visual .g { color: var(--gold); }
.arch-visual .t { color: var(--accent); }
.arch-visual .m { color: var(--muted-2); }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 28px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  transition: opacity .3s;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 1px;
  color: var(--muted-2); min-width: 36px; margin-top: 3px;
}
.step-body h4 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 18px; margin-bottom: 8px; letter-spacing: -.2px;
}
.step-body p { font-size: 14px; color: var(--cream-2); line-height: 1.6; }
.step-chip {
  display: inline-block; margin-top: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 5px;
}
.chip-gold { background: var(--gold-dim); color: var(--gold-light); }
.chip-accent { background: var(--accent-dim); color: var(--accent-light); }
.chip-both {
  background: linear-gradient(90deg, var(--gold-dim), var(--accent-dim));
  color: var(--cream-2);
}

/* ── PRICING ── */
.pricing { padding: 120px 0; background: var(--ink-2); }
.pricing-tabs {
  display: flex; gap: 8px; margin: 40px auto 56px;
  background: var(--ink-3);
  border: 1px solid var(--border-2);
  border-radius: 12px; padding: 6px; width: fit-content;
}
.ptab {
  padding: 10px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all .2s; color: var(--muted); border: none;
  background: transparent;
}
.ptab.active-gold { background: var(--gold); color: #0D0900; font-weight: 600; }
.ptab.active-accent { background: var(--accent); color: #001A12; font-weight: 600; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.price-card {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: all .3s; position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.price-card.featured-gold {
  border-color: rgba(240,165,0,0.4);
  background: linear-gradient(160deg, rgba(240,165,0,0.06) 0%, var(--ink-3) 60%);
}
.price-card.featured-accent {
  border-color: rgba(0,212,160,0.4);
  background: linear-gradient(160deg, rgba(0,212,160,0.06) 0%, var(--ink-3) 60%);
}
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 5px;
}
.badge-gold { background: var(--gold-dim); color: var(--gold-light); }
.badge-accent { background: var(--accent-dim); color: var(--accent-light); }
.price-plan { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-big { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; letter-spacing: -2px; }
.price-card.featured-gold .price-big { color: var(--gold); }
.price-card.featured-accent .price-big { color: var(--accent); }
.price-mo { font-size: 13px; color: var(--muted); }
.price-desc { font-size: 14px; color: var(--cream-2); margin-bottom: 28px; line-height: 1.5; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-features li { display: flex; gap: 9px; font-size: 13px; color: var(--cream-2); align-items: flex-start; }
.pf-icon { margin-top: 2px; font-size: 14px; }
.pf-gold { color: var(--gold); }
.pf-accent { color: var(--accent); }

/* ── MARKET ── */
.market { padding: 120px 0; }
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.market-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mcard {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 20px;
  transition: all .3s;
}
.mcard:hover { border-color: var(--border-2); transform: translateY(-2px); }
.mcard-num {
  font-family: 'Syne', sans-serif; font-size: 32px;
  font-weight: 800; letter-spacing: -1px; line-height: 1;
  margin-bottom: 6px;
}
.mcard:nth-child(1) .mcard-num, .mcard:nth-child(3) .mcard-num { color: var(--gold); }
.mcard:nth-child(2) .mcard-num, .mcard:nth-child(4) .mcard-num { color: var(--accent); }
.mcard-label { font-size: 12px; color: var(--muted); line-height: 1.4; }
.mcard.span-2 { grid-column: span 2; display: flex; align-items: center; gap: 20px; }
.mcard.span-2 .mcard-num { font-size: 40px; }
.market-text h2 { margin-bottom: 18px; }
.market-text p { color: var(--cream-2); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.competitor-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.competitor-row:last-child { border-bottom: none; }
.comp-name { flex: 1; font-weight: 500; }
.comp-tag { font-size: 11px; color: var(--muted); background: var(--ink-3); border-radius: 4px; padding: 3px 8px; }
.comp-weakness { font-size: 12px; color: var(--muted); flex: 2; }
.comp-win {
  font-size: 11px; color: var(--accent-light);
  background: var(--accent-dim); border-radius: 4px; padding: 3px 8px;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { color: var(--cream-2); font-size: 18px; max-width: 480px; margin: 0 auto 48px; }
.cta-double {
  display: flex; gap: 48px; justify-content: center; align-items: stretch;
  flex-wrap: wrap;
}
.cta-card {
  background: var(--ink-3); border: 1px solid var(--border-2);
  border-radius: var(--r-lg); padding: 36px 36px 32px;
  width: 300px; text-align: left;
  transition: all .3s;
}
.cta-card:hover { transform: translateY(-4px); }
.cta-card.cta-pro:hover { border-color: rgba(240,165,0,.4); }
.cta-card.cta-cre:hover { border-color: rgba(0,212,160,.4); }
.cta-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.cta-card p { font-size: 14px; color: var(--cream-2); margin-bottom: 24px; line-height: 1.55; }

/* ── FOOTER ── */
footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 60px 5vw 36px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 14px 0 20px; max-width: 280px; }
.footer-location {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
}
.loc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.footer-col h5 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--cream); }

/* ── SUBSCRIBE SECTION ── */
.subscribe { padding: 120px 0 60px; }
.sub-card {
  background: var(--ink-2);
  border: 1px solid var(--border-2);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sub-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 200px;
  background: radial-gradient(circle, rgba(141, 114, 64, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.sub-card h2 { margin-bottom: 16px; }
.sub-card p { color: var(--cream-2); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.sub-form {
  display: flex; gap: 12px; max-width: 620px; margin: 0 auto 20px;
  background: rgba(255,255,255,0.03);
  padding: 8px; border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
}
.sub-form:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 0 20px rgba(141, 114, 64, 0.1);
}
.sub-form input, .sub-form select {
  flex: 1; background: transparent; border: none;
  padding: 0 16px; color: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  min-width: 0;
}
.sub-form select {
  border-left: 1px solid var(--border);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236B748A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.sub-form input:focus, .sub-form select:focus { outline: none; }
.sub-form select option { background: var(--ink-2); color: var(--cream); }

@media (max-width: 600px) {
  .sub-form { flex-direction: column; padding: 12px; gap: 8px; }
  .sub-form input, .sub-form select { 
    height: 48px; border: 1px solid var(--border); border-radius: 8px; 
    width: 100%;
  }
  .sub-form select { border-left: 1px solid var(--border); }
  .sub-form button { width: 100%; height: 48px; justify-content: center; }
}
.sub-note { font-size: 12px !important; color: var(--muted) !important; margin-bottom: 0 !important; }

/* ── HIDDEN PLATFORM PANELS ── */
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  .platform-grid, .how-grid, .market-grid, .pricing-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-double { flex-direction: column; align-items: center; }
  .how-left { position: static; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
  .stat-item:last-child { border-bottom: none; }
  .nav-links { display: none; }
}
