/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-light: #111d35;
  --navy-mid: #1a2d4a;
  --amber: #e8a43a;
  --amber-dim: #c88c2a;
  --amber-glow: rgba(232, 164, 58, 0.15);
  --cream: #f5f0e8;
  --text-primary: #f0ebe3;
  --text-secondary: #9aa5b8;
  --text-muted: #5c6f8a;
  --border: rgba(232, 164, 58, 0.18);
  --border-light: rgba(240, 235, 227, 0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 64px;
  max-width: 520px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 164, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 164, 58, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-text {}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-headline {
  font-size: clamp(48px, 7vw, 80px);
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.05;
}
.hero-lede {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; max-width: 100px; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ===== DASHBOARD MOCK ===== */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.dashboard-mock {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,164,58,0.08);
}
.mock-header {
  background: var(--navy-mid);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mock-dots span:first-child { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #ffbd2e; }
.mock-dots span:nth-child(3) { background: #28ca41; }
.mock-title { font-size: 12px; color: var(--text-secondary); flex: 1; text-align: center; }
.mock-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #28ca41; font-weight: 600; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #28ca41; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.mock-body { padding: 16px; }
.mock-row { display: grid; grid-template-columns: 1fr 0.8fr 1.5fr 0.7fr; padding: 8px 10px; font-size: 11px; color: var(--text-secondary); gap: 8px; align-items: center; border-radius: 6px; }
.mock-row:nth-child(odd) { background: rgba(255,255,255,0.02); }
.mock-row.header-row { font-weight: 600; color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border-light); padding-bottom: 10px; margin-bottom: 4px; }
.tag { padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 600; }
.tag.hot { background: rgba(239,68,68,0.2); color: #f87171; }
.tag.warm { background: rgba(234,179,8,0.2); color: #fbbf24; }
.tag.new { background: rgba(59,130,246,0.2); color: #60a5fa; }
.ok { color: #28ca41; font-weight: 600; }
.pending { color: var(--text-muted); }
.mock-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.metric { background: rgba(232,164,58,0.06); border: 1px solid var(--border); border-radius: 10px; padding: 12px; text-align: center; }
.metric-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.metric-val { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--amber); }
.metric-sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* ===== HOW IT WORKS ===== */
.howitworks { padding: 120px 0; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 48px; }
.timeline-line { position: absolute; top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px); height: 2px; background: linear-gradient(90deg, var(--amber) 0%, rgba(232,164,58,0.3) 100%); }
.step { padding: 0 24px; position: relative; }
.step-icon { margin-bottom: 20px; }
.step-day { font-size: 12px; font-weight: 700; color: var(--amber); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.step-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--cream); margin-bottom: 12px; line-height: 1.2; }
.step-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ===== FEATURES ===== */
.features { padding: 120px 0; background: var(--navy); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature { padding: 48px 40px; background: var(--navy-light); border: 1px solid var(--border-light); transition: border-color 0.3s, background 0.3s; }
.feature:hover { background: var(--navy-mid); border-color: var(--border); }
.feature-icon { margin-bottom: 24px; }
.feature-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--cream); margin-bottom: 14px; line-height: 1.25; }
.feature-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ===== DASHBOARD SECTION ===== */
.dashboard-section { padding: 120px 0; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); }
.dashboard-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dashboard-left {}
.dashboard-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; }
.dashboard-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.dashboard-features li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: var(--text-primary); }
.dashboard-features svg { flex-shrink: 0; margin-top: 2px; }
.dashboard-right {}
.dashboard-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  padding: 28px;
}
.dc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.dc-title { font-size: 14px; font-weight: 600; color: var(--cream); }
.dc-badge { font-size: 11px; font-weight: 700; background: rgba(40,202,65,0.15); color: #28ca41; padding: 4px 10px; border-radius: 100px; }
.dc-chart { margin-bottom: 28px; }
.chart-bars { display: flex; align-items: flex-end; gap: 12px; height: 100px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); position: relative; }
.chart-y-label { position: absolute; left: -40px; top: 50%; transform: translateY(-50%) rotate(-90deg); font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; background: linear-gradient(to top, var(--amber), rgba(232,164,58,0.4)); border-radius: 4px 4px 0 0; min-height: 4px; transition: height 0.4s ease; }
.bar-label { font-size: 10px; color: var(--text-muted); }
.dc-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.dc-stat { text-align: center; }
.dc-stat-val { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; color: var(--amber); }
.dc-stat-key { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.dc-recent {}
.dc-recent-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.dc-event { display: flex; gap: 12px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 12px; }
.dc-event:last-child { border-bottom: none; }
.event-time { color: var(--text-muted); flex-shrink: 0; min-width: 50px; }
.event-text { color: var(--text-secondary); }

/* ===== MANIFESTO ===== */
.manifesto { padding: 100px 0; background: var(--navy-light); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.manifesto-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.manifesto-quote-mark { margin-bottom: 32px; display: flex; justify-content: center; }
.manifesto-text { font-family: 'Fraunces', serif; font-size: clamp(24px, 3.5vw, 36px); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.45; margin-bottom: 28px; }
.manifesto-attr { font-size: 15px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* ===== CLOSING ===== */
.closing { padding: 120px 0; background: var(--navy); text-align: center; }
.closing-content { max-width: 720px; margin: 0 auto; }
.closing-headline { font-size: clamp(36px, 5vw, 60px); color: var(--cream); margin-bottom: 24px; }
.closing-sub { font-size: 19px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.closing-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tag-pill { background: var(--navy-light); border: 1px solid var(--border); color: var(--text-secondary); padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 500; }

/* ===== FOOTER ===== */
.site-footer { padding: 40px 0; background: var(--navy-light); border-top: 1px solid var(--border-light); }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 24px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--cream); }
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 24px; border-top: 1px solid var(--border-light); }

/* ===== DEMO SECTION ===== */
.demo-section { padding: 120px 0; background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%); }
.demo-header { text-align: center; margin-bottom: 56px; }
.demo-header .section-sub { margin-left: auto; margin-right: auto; }

.demo-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

/* Form */
.demo-form { margin-bottom: 0; }
.demo-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.demo-field--wide { grid-column: 1 / -1; }
.demo-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.optional-hint { color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.demo-field input,
.demo-field select {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.demo-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6f8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.demo-field select option { background: var(--navy-mid); }
.demo-field input::placeholder { color: var(--text-muted); }
.demo-field input:focus,
.demo-field select:focus {
  outline: none;
  border-color: var(--amber);
}

/* CTA button */
.demo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  letter-spacing: 0.01em;
}
.demo-cta:hover:not(:disabled) { background: var(--amber-dim); }
.demo-cta:disabled { opacity: 0.6; cursor: not-allowed; }
.demo-cta-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10,22,40,0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.demo-cta.loading .demo-cta-spinner { display: block; }
.demo-cta.loading .demo-cta-text { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Error */
.demo-error {
  margin-top: 20px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}

/* Result */
.demo-result { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border-light); }
.demo-result-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}
.demo-result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.demo-result-agent { font-size: 13px; color: var(--text-muted); }

/* Timeline */
.demo-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.demo-step {
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.demo-step:hover { border-color: var(--border); }
.demo-step-header { display: flex; justify-content: space-between; align-items: center; }
.demo-step-day {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.demo-step-channel { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.demo-step-subject {
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}
.step-subject-label { color: var(--text-muted); font-weight: 600; }
.demo-step-body {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Waitlist CTA */
.demo-cta-waitlist {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.demo-cta-waitlist p { font-size: 15px; color: var(--text-secondary); margin-bottom: 12px; }
.demo-waitlist-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.demo-waitlist-link:hover { color: var(--amber-dim); border-color: var(--amber-dim); }

/* ===== STICKY NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.site-nav.visible { transform: translateY(0); }
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}
.site-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s;
  white-space: nowrap;
}
.site-nav-cta:hover { background: var(--amber-dim); }

/* ===== HERO CTA ROW ===== */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-cta-btn:hover { background: var(--amber-dim); }
.hero-cta-secondary {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-cta-secondary:hover { color: var(--text-primary); }

/* ===== FOUNDING AGENTS SECTION ===== */
.founding-agents {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  border-top: 1px solid var(--border-light);
}
.fa-inner { max-width: 1100px; margin: 0 auto; }
.fa-header { text-align: center; margin-bottom: 72px; }
.fa-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}
.fa-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}
.fa-counter {
  display: inline-flex;
  align-items: center;
  background: var(--amber-glow);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.fa-counter-filled {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  margin-right: 2px;
}
.fa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Benefits list */
.fa-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fa-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fa-benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--amber-glow);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.fa-benefit-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1.3;
}
.fa-benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Signup form */
.fa-form-wrap {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.fa-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.fa-field { display: flex; flex-direction: column; gap: 6px; }
.fa-field--wide { grid-column: 1 / -1; }
.fa-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.fa-optional {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.fa-field input,
.fa-field select {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.fa-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6f8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.fa-field select option { background: var(--navy-mid); }
.fa-field input::placeholder { color: var(--text-muted); }
.fa-field input:focus,
.fa-field select:focus { outline: none; border-color: var(--amber); }

/* Submit button */
.fa-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.fa-submit:hover:not(:disabled) { background: var(--amber-dim); }
.fa-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.fa-submit-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(10,22,40,0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.fa-submit.loading .fa-submit-spinner { display: block; }
.fa-submit.loading .fa-submit-text { opacity: 0.6; }

/* Error */
.fa-error {
  margin-top: 16px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
}

/* Success state */
.fa-success {
  text-align: center;
  padding: 20px 0;
}
.fa-success-icon { margin-bottom: 16px; }
.fa-success-heading {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.fa-success-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .dashboard-mock { max-width: 400px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .timeline-line { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-layout { grid-template-columns: 1fr; gap: 48px; }
  .demo-timeline { grid-template-columns: repeat(2, 1fr); }
  .fa-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 80px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .hero-cta-row { gap: 16px; }
  .hero-cta-btn { font-size: 14px; padding: 12px 22px; }
  .site-nav-inner { padding: 0 20px; }
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { padding: 36px 28px; }
  .mock-row { grid-template-columns: 1fr 1fr; }
  .mock-row span:nth-child(n+3) { display: none; }
  .dc-stats { grid-template-columns: repeat(2,1fr); }
  .closing-tags { gap: 8px; }
  .tag-pill { font-size: 12px; padding: 8px 14px; }
  .demo-card { padding: 24px 20px; }
  .demo-fields { grid-template-columns: 1fr; }
  .demo-field--wide { grid-column: auto; }
  .demo-timeline { grid-template-columns: 1fr; }
  .demo-result-header { flex-direction: column; gap: 4px; }
  .fa-form-fields { grid-template-columns: 1fr; }
  .fa-field--wide { grid-column: auto; }
  .fa-form-wrap { padding: 24px 20px; }
}