:root {
  --bg: #0a0908;
  --bg-card: #131110;
  --bg-card-hover: #1c1916;
  --fg: #f0ece4;
  --fg-muted: #9a9088;
  --accent: #D4A017;
  --accent-warm: #F5C842;
  --accent-dim: rgba(212, 160, 23, 0.12);
  --border: rgba(240, 236, 228, 0.08);
  --success: #4ade80;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --pad-section: clamp(4rem, 8vw, 7rem);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

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: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-login-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}
.nav-login-btn:hover {
  color: var(--fg);
  background: var(--accent-dim);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232, 114, 74, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-warm);
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-warm); transform: translateY(-1px); }
.btn-sm {
  font-size: 0.82rem !important;
  padding: 0.4rem 1rem !important;
}

.pos-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 340px;
}
.pos-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 1rem;
  opacity: 0.5;
}
.pos-card--highlight {
  border-color: var(--accent);
  opacity: 1;
  background: rgba(212, 160, 23, 0.06);
}
.pos-icon { font-size: 1.1rem; font-weight: 700; }
.pos-card:not(.pos-card--highlight) .pos-icon { color: var(--fg-muted); }
.pos-card--highlight .pos-icon { color: var(--accent); }
.pos-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--fg); }
.pos-lock { font-size: 0.75rem; color: var(--fg-muted); }
.pos-card--highlight .pos-lock { color: var(--accent); font-weight: 600; }
.pos-unlock { font-size: 0.75rem; color: var(--accent); font-weight: 600; }

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.agent-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--success);
  margin-bottom: 1.25rem;
}
.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.05); }
}
.agent-tasks { display: flex; flex-direction: column; gap: 0.9rem; }
.task-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--fg-muted);
}
.task-done .task-check { color: var(--success); flex-shrink: 0; font-weight: 600; margin-top: 1px; }

/* ── FEATURES ── */
.features {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
}
.features-header { margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
}
.process-header { margin-bottom: 4rem; }
.process-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.step-content p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow { color: var(--border); flex-shrink: 0; }

/* ── OBJECTIONS ── */
.objections {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
}
.objection-header { margin-bottom: 2.5rem; }
.objection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.objection h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.objection p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
  text-align: center;
}
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  max-width: 680px;
  margin: 0 auto 1.25rem;
}
.closing-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
}
.pricing-header { margin-bottom: 3.5rem; text-align: center; }
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--fg);
}
.pricing-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.pricing-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: rgba(212, 160, 23, 0.4);
  background: rgba(212, 160, 23, 0.04);
}
.pricing-card-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  white-space: nowrap;
}
.pricing-card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-top: 0.25rem;
}
.pricing-card-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-warm);
  line-height: 1;
}
.pricing-card-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
  margin-left: 0.15rem;
}
.pricing-card-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
  min-height: 2.75rem;
}
.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--fg);
  flex: 1;
  margin: 0.25rem 0;
}
.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card-cta {
  margin-top: auto;
  text-align: center;
  width: 100%;
  padding: 0.8rem 1.25rem;
  font-size: 0.95rem;
}
.pricing-foot {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ── FAQ ── */
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
}
.faq-header { margin-bottom: 3rem; text-align: center; }
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--fg);
}
.faq-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.faq-list { margin-bottom: 2.5rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: rgba(212, 160, 23, 0.3);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  padding-right: 1.75rem;
  position: relative;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-top: 0.85rem;
}
.faq-item p a {
  color: var(--accent);
  text-decoration: none;
}
.faq-item p a:hover { text-decoration: underline; }
.faq-foot {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.faq-foot a {
  color: var(--accent);
  text-decoration: none;
}
.faq-foot a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-meta p {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--fg);
}

/* ── EARLY ACCESS CTA ── */
.early-access {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
}
.ea-inner {
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 4rem);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.ea-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.ea-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 0.85rem;
}
.ea-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.ea-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto 0.75rem;
}
.ea-form input[type="email"] {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.ea-form input[type="email"]:focus {
  border-color: var(--accent);
}
.ea-form input[type="email"]::placeholder {
  color: var(--fg-muted);
}
.ea-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.ea-btn:hover:not(:disabled) { background: var(--accent-warm); }
.ea-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.ea-btn-loading svg {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ea-privacy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.ea-success {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}
.ea-success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ea-success-headline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.ea-success-sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

@media (max-width: 500px) {
  .ea-form { flex-direction: column; }
  .ea-btn { justify-content: center; }
}

/* ── CREDIBILITY ── */
.credibility {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
}
.cred-header { margin-bottom: 2.5rem; }
.cred-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  max-width: 560px;
}
.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}
.cred-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.cred-pill-icon { font-size: 0.9rem; }
.cred-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cred-stat { display: flex; flex-direction: column; gap: 0.35rem; }
.cred-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
}
.cred-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.45;
}
.cred-stat-sep { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 3rem; }
  .hero-visual { justify-content: flex-start; }
  .agent-card { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .objection-grid { grid-template-columns: 1fr; }
  .process-steps { gap: 1.5rem; }
  .step-arrow { display: none; }
  .cred-stats { flex-direction: column; gap: 1.5rem; }
  .cred-stat-sep { width: 40px; height: 1px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}