:root {
  --bg: #0D0D0B;
  --bg-alt: #131310;
  --bg-card: #1A1A16;
  --fg: #F9F7F4;
  --fg-muted: #9B9B92;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-dim2: rgba(245, 158, 11, 0.06);
  --border: #272720;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
}

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

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

/* ==================== HERO ==================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 40px 100px;
  border-bottom: 1px solid var(--border);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
}

.hero-bg-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-footnote {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0D0D0B;
}

.btn-primary:hover {
  background: #E8920A;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  padding: 16px 36px;
  font-size: 17px;
}

/* ==================== HERO CARD ==================== */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-card-dot.green { background: #4ADE80; }
.hero-card-dot.amber { background: var(--accent); }
.hero-card-dot.red { background: #F87171; }

.hero-card-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

.hero-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card-section { display: flex; flex-direction: column; gap: 8px; }

.hero-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-card-value {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

.badge-green { background: rgba(74, 222, 128, 0.12); color: #4ADE80; }
.badge-amber { background: var(--accent-dim); color: var(--accent); }

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hero-card-stat { display: flex; flex-direction: column; gap: 4px; }

.hero-card-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}

.hero-card-stat-key {
  font-size: 11px;
  color: var(--fg-muted);
}

.hero-card-email { display: flex; flex-direction: column; gap: 6px; }

.hero-card-email-to { font-size: 12px; color: var(--fg-muted); }
.hero-card-email-sub { font-size: 13px; font-weight: 500; color: var(--fg); }
.hero-card-email-snippet {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
  font-style: italic;
}
.hero-card-email-meta { font-size: 11px; color: var(--fg-muted); }

/* ==================== TICKER ==================== */
.hero-ticker {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.hero-ticker-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.hero-ticker-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ==================== MANIFESTO ==================== */
.manifesto {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-stat-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.manifesto-stat {
  flex: 1;
  padding: 32px;
}

.manifesto-divider {
  width: 1px;
  background: var(--border);
}

.manifesto-stat-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.manifesto-stat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.manifesto-quote {
  max-width: 800px;
}

.manifesto-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-text-accent {
  color: var(--fg);
  font-weight: 500;
  font-size: 20px;
}

/* ==================== HOW IT WORKS ==================== */
.hiw {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}

.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}

.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 60px;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.hiw-step:last-child { border-bottom: none; }

.hiw-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim2);
  border-right: 1px solid var(--border);
  padding: 28px;
  letter-spacing: 0.05em;
}

.hiw-step-content {
  padding: 28px 32px;
}

.hiw-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.hiw-step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ==================== FEATURES ==================== */
.features {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 32px;
  transition: background 0.2s ease;
}

.feature-card:hover { background: var(--bg-alt); }

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ==================== PROOF ==================== */
.proof {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-emails {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-email {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.proof-email-alt {
  border-left: 3px solid var(--accent);
}

.proof-email-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  flex-wrap: wrap;
  gap: 8px;
}

.proof-email-meta { display: flex; flex-direction: column; gap: 4px; }
.proof-email-to { font-size: 13px; font-weight: 600; color: var(--fg); }
.proof-email-date { font-size: 12px; color: var(--fg-muted); }

.proof-email-outcome { display: flex; gap: 8px; flex-wrap: wrap; }

.proof-email-body { padding: 20px; }

.proof-email-subject {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 10px;
}

.proof-email-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.proof-email-insight {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
  background: rgba(245,158,11,0.04);
}

/* ==================== PRICING ==================== */
.pricing {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pricing-card-alt {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-card-primary {
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(245,158,11,0.03) 100%);
  border-color: rgba(245,158,11,0.3);
}

.pricing-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-card-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pricing-card-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-card-tagline {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 24px;
}

.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-card-features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-card-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8L6.5 11.5L13 5' stroke='%23F59E0B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card-cta { margin-top: auto; }

.pricing-footnote {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== CLOSING ==================== */
.closing {
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.closing-bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.closing-cta-footnote {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--fg); }

.footer-bottom {
  font-size: 12px;
  color: var(--fg-muted);
  width: 100%;
}

.footer-bottom a {
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--accent); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-stat-row { flex-direction: column; }
  .manifesto-divider { display: none; }
  .hiw-step { grid-template-columns: 60px 1fr; }
}

@media (max-width: 600px) {
  .hero, .manifesto, .hiw, .features, .proof, .pricing, .closing, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
  .pricing-card { padding: 24px; }
  .hiw-step-content { padding: 20px; }
}