:root {
  --bg: #0e0e11;
  --bg-2: #16161a;
  --bg-card: #1c1c21;
  --fg: #f0ede6;
  --fg-2: #9997a0;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --radius: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
}

* { 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;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 14, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-asymmetric {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  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(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── CHAT WIDGET ── */
.hero-right { position: relative; }
.chat-window {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.08);
}
.chat-header {
  background: var(--bg-card);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.chat-dots { display: flex; gap: 6px; }
.chat-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border);
}
.chat-dots span:first-child { background: #ff5f57; }
.chat-dots span:nth-child(2) { background: #febc2e; }
.chat-dots span:nth-child(3) { background: #28c840; }
.chat-title { font-size: 13px; font-weight: 500; color: var(--fg); flex: 1; }
.chat-online {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 10px;
}
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 80%; font-size: 14px; line-height: 1.5; padding: 10px 14px; border-radius: 12px; }
.msg-bot { align-self: flex-start; background: var(--bg-card); color: var(--fg); border-bottom-left-radius: 4px; }
.msg-user { align-self: flex-end; background: var(--accent); color: #0e0e11; font-weight: 600; border-bottom-right-radius: 4px; }
.msg-bot.confirmed { background: rgba(39, 200, 64, 0.15); border: 1px solid rgba(39, 200, 64, 0.3); }
.chat-input-area {
  margin: 0 20px 20px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--fg-2);
  font-size: 13px;
}
.chat-widget-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--fg-2);
}

/* ── PROOF BAR ── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--bg-2);
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  text-align: center;
  margin-bottom: 16px;
}
.proof-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.type-tag {
  font-size: 13px;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── SERVICES ── */
.services {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-icon { margin-bottom: 20px; }
.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-example {
  font-size: 13px;
  color: var(--fg-2);
  background: var(--bg-card);
  padding: 12px 14px;
  border-radius: 8px;
  border-left: 2px solid var(--accent);
}
.example-label { color: var(--accent); font-weight: 600; }

/* ── PROCESS ── */
.process {
  padding: 80px 24px 100px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.process .section-headline { max-width: 1100px; margin: 16px auto 60px; }
.process .section-label { max-width: 1100px; margin: 0 auto 16px; }
.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.step { flex: 1; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 280px;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  flex-shrink: 0;
  margin-top: -40px;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 760px; margin: 0 auto; }
.manifesto-rule {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-2);
  margin-bottom: 28px;
}
.manifesto-rule.manifesto-center { margin: 40px 0 28px; text-align: center; }
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto-opportunity {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.75;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.manifesto-opportunity strong { color: var(--accent); }

/* ── CLOSING ── */
.closing {
  padding: 80px 24px 100px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-vision {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  max-width: 540px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.footer-tagline { font-size: 13px; color: var(--fg-2); }
.footer-meta { font-size: 12px; color: var(--fg-2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-asymmetric { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-headline { font-size: 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 20px 48px; }
  .hero-headline { font-size: 44px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 22px; }
  .services, .process, .manifesto, .closing { padding: 60px 20px; }
  .services-grid { gap: 16px; }
}