:root {
  --bg: #faf9f7;
  --bg-alt: #f2f0ed;
  --fg: #111111;
  --fg-muted: #666666;
  --accent: #e8552a;
  --accent-dark: #c43d15;
  --dark: #111111;
  --dark-mid: #1e1e1e;
  --dark-muted: #888888;
  --border: #e0ddd8;
  --white: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid white;
  border-radius: 3px;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-gradient-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  color: #aaaaaa;
  max-width: 440px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-num { font-size: 26px; font-weight: 700; color: var(--white); }
.meta-label { font-size: 12px; color: #888888; }
.meta-divider { width: 1px; height: 36px; background: #333333; }

/* FRAME WINDOW */
.hero-right { position: relative; }
.frame-window {
  background: #1a1a1a;
  border-radius: 16px;
  border: 1px solid #333333;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.frame-bar {
  background: #242424;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.frame-dots { display: flex; gap: 6px; }
.frame-dots span { width: 12px; height: 12px; border-radius: 50%; background: #444; }
.frame-dots span:first-child { background: #ff5f57; }
.frame-dots span:nth-child(2) { background: #ffbd2e; }
.frame-dots span:last-child { background: #28ca41; }
.frame-title { font-size: 12px; color: #888; }
.frame-preview { padding: 20px; }
.preview-grid { display: flex; flex-direction: column; gap: 16px; }
.preview-scene {
  background: #222;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #333;
}
.scene-label { font-size: 11px; color: #666; margin-bottom: 8px; font-weight: 500; }
.scene-content { display: flex; gap: 8px; }
.content-block { background: #2a2a2a; border-radius: 4px; }
.content-block.c-biz { flex: 2; height: 28px; }
.content-block.c-voice { flex: 1; height: 28px; }
.content-block.c-cta { flex: 1; height: 28px; }
.content-block.c-headshot { width: 48px; height: 48px; border-radius: 50%; flex: none; }
.content-block.c-quote { flex: 1; height: 28px; }
.preview-progress { margin-top: 4px; }
.progress-label { display: flex; justify-content: space-between; font-size: 11px; color: #666; margin-bottom: 6px; }
.progress-bar { background: #333; border-radius: 3px; height: 6px; overflow: hidden; }
.progress-fill { width: 73%; height: 100%; background: var(--accent); border-radius: 3px; }
.frame-status {
  background: #1e1e1e;
  border-top: 1px solid #333;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #28ca41; }

/* PROBLEM */
.problem {
  background: var(--bg);
  padding: 120px 0;
}
.problem-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.problem-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}
.problem-body { font-size: 17px; color: #444; margin-bottom: 20px; line-height: 1.7; }
.problem-quote {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--dark);
  border-radius: 12px;
}
.problem-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: white;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 12px;
}
.problem-quote cite { font-size: 13px; color: #888; }

/* AGENT */
.agent {
  background: var(--bg-alt);
  padding: 120px 0;
}
.agent-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.agent-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.agent-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 64px;
}
.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.agent-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.agent-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.agent-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.agent-card p { font-size: 14px; color: #666; line-height: 1.6; }
.agent-output {
  background: var(--dark);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.output-label { font-size: 13px; color: #888; white-space: nowrap; }
.output-list { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.output-list span { font-size: 15px; color: white; font-weight: 500; }
.output-list .sep { color: #555; }

/* HOW IT WORKS */
.hiw-inner { max-width: 1280px; margin: 0 auto; padding: 120px 40px; }
.hiw-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hiw-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 80px;
}
.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
}
.step { flex: 1; }
.step-num { font-size: 48px; font-weight: 900; color: var(--accent); margin-bottom: 16px; line-height: 1; }
.step-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-body p { font-size: 15px; color: #666; line-height: 1.6; }
.step-connector { flex: 0 0 60px; height: 2px; background: linear-gradient(to right, var(--border), transparent); }
.hiw-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 32px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.stat-num { font-size: 36px; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 15px; color: #666; }

/* PRICING */
.pricing { background: var(--bg); padding: 120px 0; }
.pricing-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.pricing-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.pricing-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 48px;
  max-width: 480px;
  margin-bottom: 24px;
}
.tier-name { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.tier-price { font-size: 56px; font-weight: 900; color: white; margin-bottom: 16px; line-height: 1; }
.currency { font-size: 28px; vertical-align: top; margin-top: 8px; display: inline-block; }
.per { font-size: 18px; font-weight: 400; color: #888; }
.tier-desc { font-size: 15px; color: #aaa; margin-bottom: 32px; line-height: 1.6; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tier-features li { font-size: 15px; color: white; display: flex; align-items: center; gap: 10px; }
.tier-features li::before { content: ''; width: 20px; height: 20px; background: var(--accent); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.tier-features li::before { content: '✓'; font-size: 11px; color: white; background: var(--accent); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pricing-note { font-size: 14px; color: #888; }

/* CLOSING */
.closing { background: var(--dark); padding: 120px 0; }
.closing-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}
.closing-sub { font-size: 18px; color: #aaa; max-width: 560px; line-height: 1.7; margin-bottom: 56px; }
.closing-vision {
  max-width: 600px;
  padding: 32px;
  border-left: 3px solid var(--accent);
}
.closing-vision p { font-size: 16px; color: #888; line-height: 1.8; font-style: italic; }

/* FOOTER */
.site-footer { background: #0d0d0d; padding: 48px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; gap: 8px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-name { font-weight: 700; font-size: 15px; color: white; }
.footer-desc { font-size: 13px; color: #555; }
.footer-copy { font-size: 12px; color: #444; margin-top: 8px; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-inner { padding: 14px 20px; }
  .nav-tagline { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 20px; }
  .hero-right { order: -1; }
  .problem-content { grid-template-columns: 1fr; gap: 40px; }
  .agent-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .hiw-inner, .problem-inner, .agent-inner, .pricing-inner, .closing-inner { padding-left: 20px; padding-right: 20px; }
  .pricing-card { padding: 32px 24px; }
  .agent-output { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
}