/* ====================
   CREATOR COUNSEL THEME
   ==================== */
:root {
  --bg: #090B12;
  --surface: #0F1117;
  --surface-2: #161B24;
  --border: rgba(255,255,255,0.06);
  --amber: #F59E0B;
  --amber-dim: rgba(245,158,11,0.12);
  --amber-glow: rgba(245,158,11,0.06);
  --text: #E8EAF0;
  --text-2: #8B93A7;
  --text-3: #5A6277;
  --red: #EF4444;
  --red-dim: rgba(239,68,68,0.15);
  --green: #10B981;
  --green-dim: rgba(16,185,129,0.12);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 10px;
  --max: 1160px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,11,18,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  color: var(--amber);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ---- SHARED ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { color: var(--amber); font-style: italic; }
.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.65;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  width: fit-content;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-headline em { color: var(--amber); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-cta-primary {
  padding: 14px 28px;
  background: var(--amber);
  color: #090B12;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.15s;
}
.hero-cta-secondary {
  padding: 14px 28px;
  background: transparent;
  color: var(--text-2);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}
.hero-cta-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}

/* ---- DOC SCANNER ---- */
.doc-scanner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03) inset;
  position: relative;
}
.doc-scanner-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.doc-scanner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.doc-scanner-dot.red { background: #FF5F57; }
.doc-scanner-dot.amber { background: #FFBD2E; }
.doc-scanner-dot.green { background: #28C840; }
.doc-scanner-title {
  margin-left: 6px;
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--sans);
}
.doc-body {
  padding: 20px;
  position: relative;
}
.doc-line {
  height: 8px;
  background: var(--surface-2);
  border-radius: 4px;
  margin-bottom: 8px;
}
.doc-line-title {
  width: 60%;
  height: 14px;
  background: var(--text-3);
  margin-bottom: 16px;
}
.doc-line-body { width: 100%; }
.doc-line-body.short { width: 70%; }
.doc-clause {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid transparent;
}
.doc-clause-flagged {
  background: var(--red-dim);
  border-color: rgba(239,68,68,0.2);
}
.doc-clause-text {
  font-size: 10px;
  line-height: 1.5;
  color: var(--text-2);
  font-family: var(--sans);
}
.doc-clause-flagged .doc-clause-text { color: #FCA5A5; }
.doc-clause-ok {
  background: var(--green-dim);
  border-color: rgba(16,185,129,0.15);
}
.doc-clause-ok .doc-clause-text { color: #6EE7B7; }
.flag-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  background: rgba(239,68,68,0.2);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #FCA5A5;
  letter-spacing: 0.05em;
}
.ok-badge {
  flex-shrink: 0;
  padding: 2px 6px;
  background: var(--green-dim);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #6EE7B7;
}
.scanner-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  animation: scan 2.5s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes scan {
  0% { top: 0; opacity: 0.6; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0.2; }
}
.upload-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-3);
  padding: 8px;
}

/* ---- WHAT IT CHECKS ---- */
.checks {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.checks-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.checks .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.checks .section-sub { margin: 0 auto; }
.checks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.check-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.check-card:hover { border-color: rgba(245,158,11,0.2); }
.check-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-dim);
  border-radius: 10px;
  color: var(--amber);
  margin-bottom: 16px;
}
.check-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.check-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ---- BUILT FOR CREATORS ---- */
.built-for {
  padding: 100px 24px;
}
.built-for-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.built-for-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.bf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bf-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-dim);
  border-radius: 50%;
  margin-top: 2px;
}
.bf-item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
/* Report preview */
.report-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.report-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.report-risk {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.report-risk.severe {
  background: var(--red-dim);
  color: #FCA5A5;
}
.report-summary { padding: 20px; border-bottom: 1px solid var(--border); }
.report-summary-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.report-summary-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), #EF4444);
  border-radius: 3px;
}
.report-summary-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
}
.report-red-flags { padding: 20px; }
.report-red-flags h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.report-flag {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.report-flag:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.report-flag-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--amber);
  font-family: var(--serif);
  flex-shrink: 0;
  padding-top: 2px;
}
.report-flag-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.report-flag-impact {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ---- REGULATED PROMOTIONS ---- */
.regulated {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.regulated-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.regulated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.regulated-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 600px;
}
.regulated-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.regulated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reg-card {
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.reg-card-icon {
  color: var(--amber);
  margin-bottom: 14px;
}
.reg-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.reg-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 24px;
}
.hiw-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: 60px 0;
}
.hiw-step {
  padding: 32px;
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
}
.hiw-step:last-child { border-right: 1px solid var(--border); }
.hiw-step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--amber);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}
.hiw-step-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.hiw-step-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.hiw-step-arrow {
  display: none;
}
.hiw-report-structure { margin-top: 60px; }
.hiw-report-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 20px;
}
.report-sections {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.report-section {
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  text-align: center;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: var(--max); margin: 0 auto; }
.pricing .section-header { text-align: center; margin-bottom: 60px; }
.pricing .section-sub { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), 0 20px 50px rgba(245,158,11,0.08);
  position: relative;
}
.pricing-card-header { padding: 28px; border-bottom: 1px solid var(--border); }
.pricing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--amber);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.price-dollar {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-2);
}
.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-period {
  font-size: 14px;
  color: var(--text-3);
  margin-left: 4px;
}
.pricing-desc {
  font-size: 13px;
  color: var(--text-3);
}
.pricing-features {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.pricing-feature.on { color: var(--text-2); }
.pricing-feature.off { color: var(--text-3); }
.pricing-cta {
  margin: 0 28px 28px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.15s;
}
.pricing-cta:hover {
  border-color: rgba(245,158,11,0.3);
  color: var(--text);
}
.pricing-cta.primary {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}
.pricing-cta.primary:hover { opacity: 0.9; }
.pricing-expert {
  margin-top: 32px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.expert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.expert-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.expert-text p {
  font-size: 13px;
  color: var(--text-2);
}
.expert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.closing-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.closing-content { max-width: 680px; margin: 0 auto 48px; }
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-headline em { color: var(--amber); font-style: italic; }
.closing-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 36px;
}
.closing-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.closing-cta-primary {
  padding: 14px 32px;
  background: var(--amber);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
}
.closing-cta-secondary {
  padding: 14px 32px;
  background: transparent;
  color: var(--text-2);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
}
.closing-disclaimer {
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.disclaimer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  white-space: nowrap;
  padding-top: 2px;
}
.closing-disclaimer p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--amber);
  font-size: 15px;
}
.footer-legal {
  font-size: 12px;
  color: var(--text-3);
  max-width: 480px;
}
.footer-copy { font-size: 12px; color: var(--text-3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .doc-scanner { max-width: 360px; margin: 0 auto; }
  .built-for-inner { grid-template-columns: 1fr; }
  .checks-grid { grid-template-columns: repeat(2, 1fr); }
  .regulated-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { border-right: 1px solid var(--border); border-bottom: none; }
  .hiw-step:last-child { border-bottom: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .report-sections { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 60px 16px 80px; }
  .checks { padding: 60px 16px; }
  .built-for { padding: 60px 16px; }
  .regulated { padding: 60px 16px; }
  .hiw-inner { padding: 60px 16px; }
  .pricing { padding: 60px 16px; }
  .closing { padding: 60px 16px; }
  .nav-links { display: none; }
  .checks-grid { grid-template-columns: 1fr; }
  .regulated-grid { grid-template-columns: 1fr; }
  .report-sections { grid-template-columns: repeat(2, 1fr); }
  .expert-inner { flex-direction: column; align-items: flex-start; }
  .hiw-report-structure { display: none; }
}