/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a14;
  --bg-2: #0f0f1c;
  --surface: #14142a;
  --surface-2: #1a1a2e;
  --gold: #f5a623;
  --gold-dim: rgba(245, 166, 35, 0.15);
  --gold-mid: rgba(245, 166, 35, 0.4);
  --cream: #f0ece3;
  --cream-dim: rgba(240, 236, 227, 0.55);
  --cream-very-dim: rgba(240, 236, 227, 0.25);
  --text-dim: rgba(240, 236, 227, 0.35);
  --border: rgba(245, 166, 35, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--cream-dim);
  font-weight: 400;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.06);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--cream);
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-item { padding: 0 28px; }
.proof-item:first-child { padding-left: 0; }
.proof-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.proof-label {
  display: block;
  font-size: 11px;
  color: var(--cream-very-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 500;
}
.proof-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === HERO VISUAL === */
.hero-visual { position: relative; z-index: 1; }
.rfp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(245,166,35,0.05), 0 40px 80px rgba(0,0,0,0.5);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.rfp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.rfp-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
.rfp-badge {
  font-size: 11px;
  color: var(--text-dim);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.rfp-doc-lines { margin-bottom: 20px; }
.doc-line {
  height: 8px;
  background: rgba(240, 236, 227, 0.08);
  border-radius: 4px;
  margin-bottom: 8px;
}
.doc-line.thin { height: 6px; }
.doc-line.full { width: 100%; }
.doc-line.med { width: 75%; }

.rfp-ai-panel {
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid var(--gold-mid);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}
.ai-panel-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.ai-response-lines { margin-bottom: 12px; }
.ai-line {
  height: 7px;
  background: rgba(245, 166, 35, 0.2);
  border-radius: 3px;
  margin-bottom: 6px;
}
.ai-line.full { width: 100%; }
.ai-line.three-quarter { width: 75%; }
.ai-line.half { width: 50%; }
.ai-confidence {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--cream-very-dim);
}
.conf-bar {
  flex: 1;
  height: 4px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.conf-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}
.rfp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.tag-green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.tag-amber { background: rgba(245, 166, 35, 0.15); color: var(--gold); }
.tag-dim { background: rgba(240, 236, 227, 0.06); color: var(--cream-very-dim); }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  top: -80px;
  right: -80px;
}
.orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
  bottom: -60px;
  left: -60px;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 80px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* === SECTION COMMONS === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--cream);
  max-width: 640px;
  margin-bottom: 64px;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step-card { padding: 32px 0; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-mid);
  line-height: 1;
  margin-bottom: 20px;
}
.step-icon { margin-bottom: 20px; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
}
.step-formats {
  font-size: 11px;
  color: var(--gold);
  opacity: 0.6;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding: 60px 20px 0;
}

/* === OUTCOMES === */
.outcomes {
  padding: 120px 0;
  background: var(--bg);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.outcome-body {
  font-size: 16px;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}
.outcome-stat {
  margin-top: 48px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-context {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.6;
}
.outcome-cards { display: flex; flex-direction: column; gap: 24px; }
.outcome-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.outcome-card:hover { border-color: var(--gold-mid); }
.oc-icon { flex-shrink: 0; margin-top: 2px; }
.oc-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.oc-content p {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.65;
  font-weight: 300;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.manifesto-quote {
  max-width: 800px;
  margin-bottom: 48px;
  position: relative;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}
.manifesto-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 48px;
}
.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin-bottom: 48px;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--cream-dim);
  line-height: 1.75;
  font-weight: 300;
}
.manifesto-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-dim);
}
.pillar:first-child { padding-left: 0; }
.pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* === PRICING SIGNAL === */
.pricing-signal { padding: 120px 0; background: var(--bg); }
.pricing-content { }
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.tier-featured {
  border-color: var(--gold-mid);
  background: linear-gradient(180deg, rgba(245,166,35,0.06) 0%, var(--surface) 60%);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 12px;
}
.tier-price span { font-size: 18px; color: var(--cream-dim); font-weight: 400; }
.tier-desc {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 300;
}
.tier-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-features span {
  font-size: 13px;
  color: var(--cream-very-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.tier-features span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-dim);
  text-align: center;
}

/* === FOOTER === */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--cream-very-dim);
  line-height: 1.65;
  max-width: 340px;
}
.footer-meta {
  display: flex;
  gap: 80px;
}
.footer-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-very-dim);
  margin-bottom: 16px;
}
.footer-product, .footer-company {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-product a, .footer-company a {
  font-size: 14px;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-product a:hover, .footer-company a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 42px; }
  .hero-proof { gap: 0; }
  .proof-item { padding: 0 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 64px; }
  .manifesto-body { grid-template-columns: 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-meta { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .nav-tagline { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .section-inner { padding: 0 24px; }
  .manifesto-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .footer-bottom { padding: 24px; }
  .nav-inner { padding: 0 24px; }
  .hero-sub { font-size: 16px; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-sep { display: none; }
}