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

:root {
  --bg: #070d14;
  --surface: #0b1623;
  --green: #22c55e;
  --green-dim: rgba(34,197,94,0.12);
  --green-glow: rgba(34,197,94,0.2);
  --text: #e2eaf4;
  --text-muted: #6b8aab;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(7,13,20,0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.nav-badge {
  font-size: 12px;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 3px 10px;
}

.hero {
  min-height: 100vh;
  padding: 120px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%; left: -200px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
}
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(34,197,94,0.06), 0 24px 48px rgba(0,0,0,0.4);
}
.agent-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.02);
}
.agent-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}
.agent-dot.active {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.agent-status { font-size: 12px; color: var(--text-muted); font-family: monospace; }
.agent-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.agent-task { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.task-icon {
  width: 20px; height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  background: var(--green-dim);
  color: var(--green);
}
.agent-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
}
.metric-label { font-size: 12px; color: var(--text-muted); }
.metric-val { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.metric-val.green { color: var(--green); }

.reply-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.reply-header {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.reply-item { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.reply-item:last-child { border-bottom: none; }
.reply-name { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.reply-text { font-size: 13px; color: var(--text-muted); font-style: italic; }

.features { padding: 100px 28px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.feature-card { background: var(--surface); padding: 36px 32px; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

.proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.proof-inner { max-width: 1100px; margin: 0 auto; padding: 60px 28px; display: flex; align-items: center; }
.proof-stat { flex: 1; padding: 0 40px; }
.proof-stat:first-child { padding-left: 0; }
.proof-divider { width: 1px; height: 80px; background: var(--border); }
.proof-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.proof-text { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

.process { padding: 100px 28px; max-width: 1100px; margin: 0 auto; }
.process-steps { display: flex; align-items: center; margin-top: 60px; }
.step { flex: 1; }
.step-arrow { font-size: 20px; color: var(--text-muted); padding: 0 20px; opacity: 0.5; }
.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.25;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.step-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

.manifesto { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 1100px; margin: 0 auto; padding: 80px 28px; text-align: center; }
.manifesto-label { font-size: 12px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.015em;
  max-width: 800px;
  margin: 0 auto;
  font-style: normal;
}

.closing { padding: 120px 28px; max-width: 1100px; margin: 0 auto; position: relative; text-align: center; }
.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.footer { border-top: 1px solid var(--border); background: var(--surface); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 40px 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); }
.footer-meta { font-size: 13px; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-inner { flex-direction: column; gap: 40px; }
  .proof-stat { padding: 0; text-align: center; }
  .proof-divider { display: none; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-arrow { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0; text-align: center; }
}
/* ===== CTA Buttons ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
.cta-btn-primary {
  background: var(--green);
  color: #070d14;
}
.cta-btn-primary:hover { background: #16a34a; transform: translateY(-1px); }
.cta-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.cta-btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* ===== Hero CTA row ===== */
.hero-cta-row { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }

/* ===== Nav links ===== */
.nav-inner { justify-content: flex-start; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  background: var(--green);
  color: #070d14;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: #16a34a; }
.nav-logo { text-decoration: none; color: var(--text); }

/* ===== Closing CTA row ===== */
.closing-cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ===== Pricing Section ===== */
.pricing { padding: 100px 28px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--green);
  box-shadow: 0 0 40px rgba(34,197,94,0.12);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #070d14;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-period { font-size: 16px; color: var(--text-muted); }
.plan-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }

.plan-features { list-style: none; margin-bottom: 32px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.feat-check { color: var(--green); font-weight: 700; flex-shrink: 0; }

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.15s;
}
.plan-cta-primary { background: var(--green); color: #070d14; }
.plan-cta-primary:hover { background: #16a34a; }
.plan-cta-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.plan-cta-secondary:hover { border-color: var(--green); color: var(--green); }

/* Comparison Table */
.pricing-compare { margin-top: 20px; }
.compare-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-align: center;
}
.compare-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.compare-row:last-child { border-bottom: none; }
.compare-row-header {
  background: rgba(255,255,255,0.02);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-row-highlight { background: rgba(34,197,94,0.05); color: var(--text); }
.compare-green { color: var(--green); font-weight: 600; }
.compare-red { color: #ef4444; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 60px; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 12px 16px; font-size: 13px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .compare-table { display: none; }
  .hero-cta-row { flex-direction: column; }
  .closing-cta-row { flex-direction: column; align-items: center; }
}

/* ===== Demo Widget ===== */
.demo-widget {
  padding: 100px 28px;
  border-top: 1px solid var(--border);
}
.demo-inner { max-width: 780px; margin: 0 auto; }
.demo-header { text-align: center; margin-bottom: 48px; }
.demo-title { margin-bottom: 16px; }
.demo-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

/* Form */
.demo-form { padding: 32px 36px; }
.demo-form-row { display: flex; gap: 16px; margin-bottom: 20px; }
.demo-field { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.demo-field-role { flex: 0.8; }
.demo-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.demo-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-muted); opacity: 0.6; }
.demo-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.demo-input::placeholder { color: var(--text-muted); opacity: 0.5; }
.demo-input:focus { border-color: var(--green); }

.demo-run-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #070d14;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}
.demo-run-btn:hover:not(:disabled) { background: #16a34a; transform: translateY(-1px); }
.demo-run-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.demo-btn-icon { font-size: 11px; }

.demo-error {
  margin-top: 14px;
  font-size: 13px;
  color: #ef4444;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 6px;
  padding: 10px 14px;
}

/* Output panel */
.demo-output { padding: 0 0 24px; }

.demo-status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(34,197,94,0.04);
}
.demo-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.demo-status-text { font-size: 13px; color: var(--green); font-family: monospace; }

.demo-section { padding: 20px 28px 0; }
.demo-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-section-icon { font-size: 13px; }

.demo-research-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
}

.demo-email-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.demo-email-subject-row {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(255,255,255,0.02);
}
.demo-email-field-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.demo-email-subject {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-display);
}
.demo-email-divider { display: none; }
.demo-email-body {
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  white-space: pre-wrap;
  min-height: 48px;
}
.demo-cursor {
  color: var(--green);
  font-weight: 300;
  font-size: 16px;
  animation: blink 0.9s step-end infinite;
  vertical-align: middle;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.demo-followup-list { display: flex; flex-direction: column; gap: 8px; }
.demo-followup-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
}
.demo-followup-day {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 4px;
  padding: 3px 8px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.demo-followup-title { font-size: 13px; color: var(--text-muted); }

.demo-cta-row {
  margin: 24px 28px 8px;
  background: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, rgba(34,197,94,0.04) 100%);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.demo-cta-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.demo-cta-btn {
  background: var(--green);
  color: #070d14;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.demo-cta-btn:hover { background: #16a34a; }

.demo-reset-btn {
  display: block;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  margin: 12px auto 0;
  padding: 6px 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.demo-reset-btn:hover { color: var(--text); }

@media (max-width: 700px) {
  .demo-form { padding: 24px 20px; }
  .demo-form-row { flex-direction: column; }
  .demo-field-role { flex: 1; }
  .demo-section { padding: 16px 20px 0; }
  .demo-status-bar { padding: 12px 20px; }
  .demo-cta-row { margin: 20px 16px 8px; flex-direction: column; align-items: flex-start; }
}
