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

:root {
  --bg: #0D0D0F;
  --surface: #141417;
  --surface-2: #1C1C21;
  --fg: #FAFAFA;
  --fg-muted: #A1A1AA;
  --fg-dim: #52525B;
  --accent: #F97316;
  --accent-dim: #7C2D12;
  --accent-glow: rgba(249, 115, 22, 0.15);
  --border: #27272A;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

/* Nav */
.nav { border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-logo-mark { display: inline-block; width: 10px; height: 10px; background: var(--accent); border-radius: 2px; }
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* Hero */
.hero { padding: 5rem 2rem 4rem; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 600; margin-bottom: 1.25rem; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.hero-highlight { color: var(--accent); }
.hero-sub { color: var(--fg-muted); font-size: 1.1rem; line-height: 1.7; max-width: 480px; }

/* Automation Diagram */
.automation-diagram { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.diagram-label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.diagram-arrow { display: flex; align-items: center; color: var(--fg-dim); padding-left: 0.5rem; }
.diagram-node { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; }
.diagram-node--bot { background: rgba(249, 115, 22, 0.08); border: 1px solid rgba(249, 115, 22, 0.2); color: #FED7AA; }
.diagram-node--crm { background: rgba(139, 92, 246, 0.08); border: 1px solid rgba(139, 92, 246, 0.2); color: #C4B5FD; }
.diagram-node--email { background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.2); color: #86EFAC; }
.diagram-node--deal { background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(59, 130, 246, 0.2); color: #93C5FD; }
.node-icon { flex-shrink: 0; }

/* What */
.what { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.what-inner { max-width: 1100px; margin: 0 auto; }
.what-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-dim); font-weight: 600; margin-bottom: 2.5rem; }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.what-card { padding: 2rem; background: var(--surface); }
.what-card-icon { color: var(--accent); margin-bottom: 1rem; }
.what-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.what-card p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.6; }

/* Features */
.features { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.features-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.features-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 600; margin-bottom: 1.25rem; }
.features-headline { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1.25rem; }
.features-body { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2.5rem; }
.features-metrics { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.metric-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.metric-label { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.feature-item:last-child { margin-bottom: 0; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 0.35rem; }
.feature-item h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.feature-item p { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6; }

/* Manifesto */
.manifesto { padding: 5rem 2rem; border-top: 1px solid var(--border); background: var(--surface); }
.manifesto-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.manifesto-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-dim); font-weight: 600; margin-bottom: 2rem; }
.manifesto-quote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 600; line-height: 1.4; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 1.5rem; font-style: normal; }
.manifesto-body { color: var(--fg-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.manifesto-cta { color: var(--accent); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-top: 1.5rem; }

/* Closing */
.closing { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem; text-align: center; }
.closing-sub { color: var(--fg-muted); font-size: 1.05rem; line-height: 1.7; max-width: 650px; margin: 0 auto 2.5rem; text-align: center; }
.closing-vision { border-top: 1px solid var(--border); padding-top: 2.5rem; text-align: center; }
.closing-vision p { color: var(--fg-dim); font-size: 0.9rem; line-height: 1.8; max-width: 550px; margin: 0 auto; }

/* Pricing */
.pricing { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-dim); font-weight: 600; margin-bottom: 2.5rem; text-align: center; }
.pricing-grid { display: flex; justify-content: center; }
.pricing-card { background: var(--surface); border: 1px solid var(--accent); border-radius: 16px; padding: 2.5rem 3rem; max-width: 420px; width: 100%; text-align: center; box-shadow: 0 0 40px var(--accent-glow); }
.pricing-badge { display: inline-block; background: var(--accent); color: #0D0D0F; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0.75rem; border-radius: 999px; margin-bottom: 1.5rem; }
.pricing-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.pricing-price { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.25rem; color: var(--fg); }
.pricing-price sup { font-size: 1.5rem; font-weight: 600; vertical-align: super; margin-right: 0.1rem; }
.pricing-period { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 2rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); color: var(--fg-muted); font-size: 0.9rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--accent); flex-shrink: 0; }
.pricing-cta { display: block; width: 100%; padding: 0.9rem 1.5rem; background: var(--accent); color: #0D0D0F; font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-align: center; border-radius: 10px; text-decoration: none; transition: opacity 0.15s; }
.pricing-cta:hover { opacity: 0.88; }
.pricing-cta-label { font-size: 0.75rem; font-weight: 500; opacity: 0.7; display: block; margin-top: 0.25rem; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo-mark { display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 2px; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.footer-tagline { color: var(--fg-dim); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-inner { grid-template-columns: 1fr; gap: 3rem; }
  .what-grid { grid-template-columns: 1fr; }
  .features-metrics { gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .nav { padding: 1rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .what { padding: 3rem 1rem; }
  .features { padding: 3rem 1rem; }
  .manifesto { padding: 3rem 1rem; }
  .closing { padding: 3rem 1rem; }
}

@media (max-width: 480px) {
  .features-metrics { flex-direction: column; gap: 1.25rem; }
}