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

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:           oklch(96.5% 0.006 195);
  --surface:      oklch(99.5% 0.003 195);
  --text:         oklch(20% 0.008 200);
  --text-2:       oklch(47% 0.01 200);
  --text-3:       oklch(65% 0.008 200);
  --blue:         oklch(52% 0.14 195);
  --blue-dark:    oklch(42% 0.14 195);
  --blue-light:   oklch(94% 0.04 195);
  --blue-border:  oklch(84% 0.07 195);
  --border:       oklch(88% 0.008 200);
  --green:        oklch(62% 0.14 155);
  --green-light:  oklch(95% 0.04 155);
  --green-border: oklch(80% 0.08 155);
  --amber:        oklch(68% 0.14 65);
  --amber-light:  oklch(96% 0.04 80);
  --amber-border: oklch(84% 0.08 75);
  --shadow-sm:    0 1px 2px oklch(30% 0.04 200 / 0.10), 0 1px 6px oklch(30% 0.04 200 / 0.08);
  --shadow:       0 1px 3px oklch(30% 0.04 200 / 0.12), 0 4px 12px oklch(30% 0.04 200 / 0.10);
  --shadow-lg:    0 4px 12px oklch(30% 0.04 200 / 0.12), 0 12px 32px oklch(30% 0.04 200 / 0.10);
  --font:         'Libre Franklin', -apple-system, sans-serif;
  --radius:       12px;
  --max-w:        1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
  font-kerning: normal;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(99.5% 0.003 195 / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 60px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.nav-logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-text { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color 0.15s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 600; }

/* ─── NAV AUTH ───────────────────────────────────────── */
.nav-auth { position: relative; display: flex; align-items: center; min-width: 74px; justify-content: flex-end; }
.nav-auth-btn {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: transparent; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  color: var(--text-2); transition: color .15s, background .15s; padding: 0;
  font-family: var(--font);
}
.nav-auth-btn:hover { background: var(--bg); color: var(--text); }
.nav-auth-btn.unauthd {
  width: auto; border-radius: 8px; padding: 8px 14px;
  border: 1px solid var(--border); font-size: 14px; font-weight: 600;
}
.nav-auth-btn.unauthd:hover { border-color: var(--text-3); color: var(--text); background: transparent; }
.nav-auth-btn.authed { background: var(--blue); color: #fff; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.nav-auth-btn.authed:hover { background: var(--blue-dark); }
.nav-auth-btn.unauthd #nav-person-icon,
.nav-auth-btn.authed  #nav-person-icon { display: none; }
.nav-auth-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px; min-width: 200px;
  box-shadow: var(--shadow); z-index: 200;
}
.nav-auth-dropdown.open { display: block; }
.nav-auth-email { font-size: 12px; color: var(--text-2); padding: 8px 12px 4px; display: block; }
.nav-auth-item {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 14px; color: var(--text); text-decoration: none; cursor: pointer;
  border: none; background: none; width: 100%; text-align: left; font-family: var(--font);
}
.nav-auth-item:hover { background: var(--bg); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  border-radius: 8px; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; padding: 10px 20px; }
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 12px oklch(52% 0.14 195 / 0.35);
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-outline {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border); padding: 10px 20px;
}
.btn-outline:hover { border-color: var(--text-3); color: var(--text); }
.btn-block { width: 100%; padding: 13px; border-radius: 10px; justify-content: center; font-size: 15px; }

/* ─── SECTION SHARED ─────────────────────────────────── */
section { padding: 80px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
  letter-spacing: -0.025em; color: var(--text);
  line-height: 1.12; margin-bottom: 16px; text-wrap: balance;
}
.section-sub {
  font-size: 16px; color: var(--text-2);
  line-height: 1.75; max-width: 520px;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px 64px; overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: 100px; padding: 5px 12px 5px 8px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.02em; margin-bottom: 20px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 20px; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: 17px; color: var(--text-2); line-height: 1.75; margin-bottom: 36px; max-width: 440px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ─── TEAM PANEL (hero visual) ───────────────────────── */
.team-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 40px oklch(52% 0.14 195 / 0.10), 0 2px 8px oklch(30% 0.04 200 / 0.10);
  overflow: hidden; animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.panel-chrome {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
}
.chrome-dots { display: flex; gap: 5px; flex-shrink: 0; }
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dot:nth-child(1) { background: #ff5f57; }
.chrome-dot:nth-child(2) { background: #febc2e; }
.chrome-dot:nth-child(3) { background: #28c840; }
.chrome-url {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 5px; padding: 4px 10px; font-size: 11px; color: var(--text-3);
  font-family: 'SF Mono', 'Consolas', monospace;
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.panel-header {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.panel-header-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.panel-header-badge {
  font-size: 11px; font-weight: 600; color: var(--green);
  background: var(--green-light); border: 1px solid var(--green-border);
  border-radius: 100px; padding: 3px 9px;
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.agents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.agent-chip { background: var(--surface); padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; }
.agent-chip-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--blue-light); display: flex;
  align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.agent-chip-info { flex: 1; min-width: 0; }
.agent-chip-name { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.agent-chip-role { font-size: 11px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.agent-online { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--green); font-weight: 600; margin-top: 5px; }
.online-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse-green 2.4s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse-green { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.agent-chip:nth-child(1) { animation: fadeUp 0.4s ease 0.35s both; }
.agent-chip:nth-child(2) { animation: fadeUp 0.4s ease 0.45s both; }
.agent-chip:nth-child(3) { animation: fadeUp 0.4s ease 0.55s both; }
.agent-chip:nth-child(4) { animation: fadeUp 0.4s ease 0.65s both; }
.agent-chip:nth-child(5) { animation: fadeUp 0.4s ease 0.75s both; }
.agent-chip:nth-child(6) { animation: fadeUp 0.4s ease 0.85s both; }
.panel-footer { padding: 10px 16px; border-top: 1px solid var(--border); font-size: 11px; color: var(--text-3); text-align: center; }

/* ─── SECURITY / TRUST DARK SECTION ──────────────────── */
.security { background: var(--text); padding: 80px 24px; }
.security .section-title { color: #fff; text-wrap: balance; }
.security .section-sub   { color: rgba(255,255,255,0.55); max-width: 480px; }
.security-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; margin-top: 48px;
}
.security-left { display: flex; flex-direction: column; gap: 20px; }

.incident-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
}
.incident-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 10px;
}
.incident-card p {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.75; font-style: italic;
}

.security-text p {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 14px;
}
.security-text p:last-child { margin-bottom: 0; }

.security-cta {
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.security-cta a {
  color: oklch(80% 0.1 195);
  text-decoration: underline; text-underline-offset: 2px;
}

.trust-pills { display: flex; flex-direction: column; gap: 10px; }
.trust-pill {
  opacity: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.trust-pill-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: oklch(52% 0.14 195 / 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.trust-pill-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.trust-pill-text strong { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; }

.privacy-claim {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin-top: 4px;
}
.privacy-claim {
  opacity: 0;
}
.privacy-claim p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; }

.trust-pills.animated .trust-pill:nth-child(1) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.trust-pills.animated .trust-pill:nth-child(2) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.10s both; }
.trust-pills.animated .trust-pill:nth-child(3) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.20s both; }
.trust-pills.animated .trust-pill:nth-child(4) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.30s both; }
.trust-pills.animated .privacy-claim        { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.45s both; }

/* Template preview cards (homepage) */
.template-preview-card { opacity: 0; }
.template-preview-grid.animated .template-preview-card:nth-child(1) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.template-preview-grid.animated .template-preview-card:nth-child(2) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.10s both; }
.template-preview-grid.animated .template-preview-card:nth-child(3) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.20s both; }
.template-preview-grid.animated .template-preview-card:nth-child(4) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.30s both; }

/* How steps (homepage) */
.how-steps .step { opacity: 0; }
.how-steps.animated .step:nth-child(1) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.how-steps.animated .step:nth-child(2) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.10s both; }
.how-steps.animated .step:nth-child(3) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.20s both; }

/* Pricing summary cards (homepage) */
.pricing-summary-card { opacity: 0; }
.pricing-summary-grid.animated .pricing-summary-card:nth-child(1) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.pricing-summary-grid.animated .pricing-summary-card:nth-child(2) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.12s both; }
.pricing-summary-grid.animated .pricing-summary-card:nth-child(3) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.24s both; }

/* Timeline cards (how-it-works) */
.timeline-card { opacity: 0; }
.timeline-grid.animated .timeline-card:nth-child(1) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.timeline-grid.animated .timeline-card:nth-child(2) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.08s both; }
.timeline-grid.animated .timeline-card:nth-child(3) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.16s both; }
.timeline-grid.animated .timeline-card:nth-child(4) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.24s both; }
.timeline-grid.animated .timeline-card:nth-child(5) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.32s both; }
.timeline-grid.animated .timeline-card:nth-child(6) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.40s both; }

/* Challenge items (how-it-works) */
.challenge-item { opacity: 0; }
.challenges-grid.animated .challenge-item:nth-child(1) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.challenges-grid.animated .challenge-item:nth-child(2) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.10s both; }
.challenges-grid.animated .challenge-item:nth-child(3) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.20s both; }
.challenges-grid.animated .challenge-item:nth-child(4) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.30s both; }

/* Pricing cards (pricing page) */
.pricing-card { opacity: 0; }
.pricing-tiers.animated .pricing-card:nth-child(1) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.pricing-tiers.animated .pricing-card:nth-child(2) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.12s both; }
.pricing-tiers.animated .pricing-card:nth-child(3) { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.24s both; }

/* Team cards (teams page) */
.team-card { opacity: 0; }
.teams-grid.animated .team-card:nth-child(1)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.teams-grid.animated .team-card:nth-child(2)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.06s both; }
.teams-grid.animated .team-card:nth-child(3)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.12s both; }
.teams-grid.animated .team-card:nth-child(4)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.18s both; }
.teams-grid.animated .team-card:nth-child(5)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.24s both; }
.teams-grid.animated .team-card:nth-child(6)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.30s both; }
.teams-grid.animated .team-card:nth-child(7)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.36s both; }
.teams-grid.animated .team-card:nth-child(8)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.42s both; }
.teams-grid.animated .team-card:nth-child(9)  { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.48s both; }
.teams-grid.animated .team-card:nth-child(10) { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.54s both; }
.teams-grid.animated .team-card:nth-child(11) { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.60s both; }
.teams-grid.animated .team-card:nth-child(12) { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) 0.66s both; }

/* ─── DISCLAIMER BAND ────────────────────────────────── */
.disclaimer-band {
  background: var(--amber-light);
  border-top: 1px solid var(--amber-border);
  border-bottom: 1px solid var(--amber-border);
  padding: 36px 24px;
}
.disclaimer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 20px; align-items: start;
}
.disclaimer-icon { font-size: 22px; line-height: 1; margin-top: 3px; }
.disclaimer-text { font-size: 14px; color: var(--text-2); line-height: 1.75; }
.disclaimer-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.disclaimer-text a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }

/* ─── TEMPLATE PREVIEW CARDS ─────────────────────────── */
.template-previews { background: var(--bg); }
.template-preview-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 36px;
}
.template-preview-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none; display: block; color: inherit;
}
.template-preview-card:hover {
  border-color: var(--blue-border); transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.tp-icon { font-size: 24px; margin-bottom: 10px; }
.tp-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.tp-count { font-size: 11px; color: var(--text-3); margin-bottom: 8px; }
.tp-desc { font-size: 12px; color: var(--text-2); line-height: 1.55; }
.templates-footer { display: flex; align-items: center; justify-content: center; margin-top: 24px; }
.templates-footer a { font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.step {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.015em; }
.step p { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.how-footer { margin-top: 24px; }
.how-footer a { font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ─── HONEST EXPECTATIONS ────────────────────────────── */
.expectations { background: var(--bg); }
.expectations-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 48px; align-items: start;
}
.expectation-copy p {
  font-size: 15px; color: var(--text-2);
  line-height: 1.8; margin-bottom: 16px;
}
.expectation-copy p:last-child { margin-bottom: 0; }
.expectation-quotes { display: flex; flex-direction: column; gap: 12px; }
.quote-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.quote-card p { font-size: 14px; color: var(--text); line-height: 1.65; font-weight: 500; font-style: italic; }
.quote-placeholder {
  background: var(--surface); border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 24px;
  text-align: center; color: var(--text-3);
  font-size: 13px; line-height: 1.6;
}

/* ─── PRICING SUMMARY (homepage lean) ────────────────── */
.pricing-summary { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 24px; }
.pricing-summary-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 40px;
}
.pricing-summary-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm);
  position: relative;
}
.pricing-summary-card.featured {
  border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow-sm);
}
.ps-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue);
  background: color-mix(in oklch, var(--blue) 12%, transparent);
  border-radius: 20px; padding: 2px 8px; margin-bottom: 8px;
}
.ps-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ps-tagline { font-size: 12px; color: var(--text-2); margin-bottom: 16px; line-height: 1.4; }
.ps-price { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 2px; }
.ps-price sup { font-size: 16px; vertical-align: super; font-weight: 600; }
.ps-period { font-size: 12px; color: var(--text-3); margin-bottom: 16px; }
.ps-feature { font-size: 12px; color: var(--text-2); padding: 10px 0; border-top: 1px solid var(--border); line-height: 1.5; }
.pricing-summary-footer { margin-top: 20px; text-align: center; }
.pricing-summary-footer a { font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ─── FULL PRICING (pricing page) ────────────────────── */
.pricing { background: var(--bg); padding-top: 60px; padding-bottom: 80px; }
.pricing-guide {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 24px; margin-bottom: 40px; padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.pricing-guide-item { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.pricing-guide-item strong { color: var(--text); font-weight: 600; }
.pricing-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; cursor: pointer;
}
.pricing-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); }
.pricing-card.selected { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); }
.pricing-card.selected .btn { background: var(--blue); color: #fff; border-color: var(--blue); }
.pricing-card.selected .btn:hover { background: var(--blue-dark); }
.pricing-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: 100px; padding: 4px 10px; margin-bottom: 16px;
}
.pricing-badge.popular { color: #fff; background: var(--blue); border-color: var(--blue); margin-bottom: 8px; }
.pricing-name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.pricing-tagline { font-size: 13px; color: var(--text-2); margin-bottom: 20px; }
.pricing-price {
  font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 2px; display: flex; align-items: baseline; gap: 8px;
}
.pricing-price sup { font-size: 20px; vertical-align: super; font-weight: 600; }
.pricing-price-orig { color: var(--text-3); }
.pricing-price-orig .pricing-struck { text-decoration: line-through; }
.pricing-price-sale { font-size: 0.75em; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.pricing-price-sale sup { font-size: 15px; }
.pricing-period { font-size: 13px; color: var(--text-3); margin-bottom: 22px; }
.pricing-sale-tag {
  display: inline-block; background: var(--green-light); color: var(--green);
  border: 1px solid var(--green-border); font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px;
}
.pricing-slots {
  display: flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 22px;
}
.pricing-slots-num { font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; }
.pricing-slots-label { font-size: 12px; color: var(--blue); font-weight: 600; line-height: 1.3; }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.check {
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; color: var(--blue);
}
.check svg { display: block; }
.pricing-note { font-size: 12px; color: var(--text-3); margin-top: 36px; line-height: 1.6; }

/* ─── EARLY ACCESS / PAGE CTA ────────────────────────── */
.early-access {
  background: var(--blue-light);
  border-top: 1px solid var(--blue-border);
  border-bottom: 1px solid var(--blue-border);
  padding: 64px 24px;
}
.early-access-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.early-access-logo-wrap {
  margin: 0 auto -64px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.early-access-logo-wrap.robot-visible {
  opacity: 1;
  transform: translateY(0);
}
.early-access-logo {
  width: min(500px, 90%); height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.14));
}
.page-hero-logo { width: 72px; height: auto; margin: 0 auto 16px; }
.page-cta-logo { width: 72px; height: auto; margin-bottom: 12px; }
.early-access h2 {
  font-size: clamp(24px, 3vw, 32px); font-weight: 800;
  letter-spacing: -0.025em; color: var(--text); margin-bottom: 12px; text-wrap: balance;
}
.early-access p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 32px; }
.page-cta { background: var(--blue-light); border-top: 1px solid var(--blue-border); padding: 56px 24px; }
.page-cta-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.page-cta h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; letter-spacing: -0.02em; color: var(--text); text-wrap: balance; }
.page-cta p { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-top: 6px; }
.page-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ─── MODAL ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: oklch(20% 0.008 200 / 0.55); backdrop-filter: blur(4px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--surface); border-radius: 16px; padding: 36px;
  width: 100%; max-width: 460px;
  box-shadow: 0 24px 64px oklch(20% 0.008 200 / 0.22);
  position: relative; transform: translateY(14px) scale(0.98);
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%; border: none;
  background: var(--bg); color: var(--text-2);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.modal-close:hover { background: var(--border); }
.modal-header { margin-bottom: 24px; }
.modal-header h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--text-2); letter-spacing: 0.01em; }
.form-field input, .form-field textarea {
  font-family: var(--font); font-size: 14px; color: var(--text);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s; width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px oklch(52% 0.14 195 / 0.12);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-error {
  font-size: 13px; color: oklch(40% 0.18 25); display: none;
  padding: 8px 12px; background: oklch(96% 0.04 25);
  border-radius: 6px; border: 1px solid oklch(80% 0.08 25);
}
.form-error::before { content: "Error: "; font-weight: 700; }
.form-success { display: none; text-align: center; padding: 8px 0; }
.form-success-icon { font-size: 36px; margin-bottom: 12px; }
.form-success h3 { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.form-success p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ─── PAGE HERO (sub-pages) ──────────────────────────── */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 56px;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: 100px; padding: 4px 12px 4px 8px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 16px; text-wrap: balance; max-width: 700px;
}
.page-hero p { font-size: 16px; color: var(--text-2); line-height: 1.75; max-width: 560px; }

/* ─── TEAMS PAGE ─────────────────────────────────────── */
.teams { background: var(--bg); padding-top: 60px; padding-bottom: 80px; }
.teams-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 40px;
}
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 14px;
  display: flex; flex-direction: column; gap: 6px;
  cursor: pointer; transition: border-color 0.15s, background 0.15s, transform 0.1s;
  box-shadow: var(--shadow-sm); user-select: none;
}
.team-card:hover { border-color: var(--blue-border); background: var(--blue-light); transform: translateY(-1px); }
.team-card.tc-active, .team-card.tc-active:hover { border-color: var(--blue); background: var(--blue-light); }
.tc-icon { font-size: 22px; line-height: 1; }
.tc-name { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; }
.tc-count { font-size: 11px; color: var(--text-3); }
.team-expand {
  margin-top: 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.te-body { transition: opacity 0.14s ease; }
.te-body.te-fading { opacity: 0; }
.te-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.te-icon { font-size: 32px; line-height: 1; }
.te-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.te-meta { font-size: 12px; color: var(--blue); font-weight: 600; }
.te-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 600px; margin-bottom: 22px; }
.te-agents-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 10px;
}
.te-agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.te-agent {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 13px;
  display: flex; align-items: flex-start; gap: 10px;
}
.te-agent-emoji { font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.te-agent-info { flex: 1; min-width: 0; }
.te-agent-name { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.te-agent-desc { font-size: 11px; color: var(--text-2); line-height: 1.4; }

/* ─── /trust PAGE ────────────────────────────────────── */
.trust-section { padding: 64px 24px; }
.trust-section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; align-items: start; }

.byok-claim-block {
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--radius); padding: 20px 24px; margin-top: 24px;
}
.byok-claim-block p { font-size: 15px; color: var(--text-2); line-height: 1.75; }
.byok-quote {
  font-size: 15px; font-weight: 600; color: var(--text);
  border-left: 3px solid var(--blue); padding-left: 16px;
  margin: 20px 0; font-style: italic; line-height: 1.6;
}
.trust-text p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.trust-text p:last-child { margin-bottom: 0; }

.incident-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.incident-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
}
.incident-cve {
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  color: var(--text-3); background: var(--bg);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 4px 8px; white-space: nowrap; font-family: 'SF Mono', 'Consolas', monospace;
}
.incident-body h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.incident-body p { font-size: 13px; color: var(--text-2); line-height: 1.65; }

.arch-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.arch-table th {
  text-align: left; font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3);
  padding: 10px 16px; border-bottom: 2px solid var(--border);
}
.arch-table td { font-size: 14px; color: var(--text-2); padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.55; }
.arch-table tr:last-child td { border-bottom: none; }
.arch-table tr:hover td { background: var(--bg); }
.status-green { color: var(--green); font-weight: 700; font-size: 11px; white-space: nowrap; }
.status-amber { color: var(--amber); font-weight: 700; font-size: 11px; white-space: nowrap; }
.status-no { color: var(--text-3); font-weight: 700; font-size: 11px; white-space: nowrap; }

.rogue-long {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px; margin-top: 32px;
}
.rogue-long h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.rogue-long p { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.rogue-long p:last-child { margin-bottom: 0; }
.rogue-long strong { color: var(--text); font-weight: 600; }

/* ─── /how-it-works PAGE ─────────────────────────────── */
.hiw-timeline { background: var(--bg); padding: 64px 24px; }
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.timeline-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
}
.timeline-week { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.timeline-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.timeline-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

.hiw-challenges { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 24px; }
.challenges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
.challenge-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.challenge-num { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 6px; }
.challenge-item h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.challenge-item p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.hiw-steps { background: var(--bg); padding: 64px 24px; }
.hiw-feedback { background: var(--surface); border-top: 1px solid var(--border); padding: 64px 24px; }
.hiw-feedback-body { max-width: 640px; margin-top: 32px; }
.hiw-feedback-body p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.feedback-tips { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.feedback-tip {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start;
}
.tip-icon { font-size: 18px; line-height: 1; margin-top: 1px; }
.tip-text { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.tip-text strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }

/* ─── /faq PAGE ──────────────────────────────────────── */
.faq-stage { padding: 56px 24px; }
.faq-stage.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list {
  margin-top: 28px; display: flex; flex-direction: column; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item { background: var(--surface); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left;
  background: none; border: none; font-family: var(--font); transition: background 0.1s;
}
.faq-question:hover { background: var(--bg); }
.faq-chevron { flex-shrink: 0; transition: transform 0.2s ease; color: var(--text-3); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--text-2); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background: var(--text); color: rgba(255,255,255,0.5); padding: 36px 24px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 40px; width: auto; display: block; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 12px; }
.footer-hermes { max-width: var(--max-w); margin: 16px auto 0; padding: 0 24px; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-hermes a { color: rgba(255,255,255,0.6); text-decoration: underline; text-underline-offset: 2px; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.12s; }
.hero-left > *:nth-child(3) { animation-delay: 0.19s; }
.hero-left > *:nth-child(4) { animation-delay: 0.26s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  .pricing-tiers { grid-template-columns: repeat(2, 1fr); }
  .trust-body { grid-template-columns: 1fr; gap: 32px; }
  .security-body { grid-template-columns: 1fr; gap: 36px; }
  .teams-grid { grid-template-columns: repeat(3, 1fr); }
  .template-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-summary-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 20px; }
  .hero { padding: 52px 20px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .nav-links { display: none; }
  .agents-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .pricing-tiers { grid-template-columns: 1fr; max-width: 100%; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .te-agents-grid { grid-template-columns: repeat(2, 1fr); }
  .team-expand { padding: 20px 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { gap: 16px; }
  .expectations-body { grid-template-columns: 1fr; gap: 32px; }
  .timeline-grid { grid-template-columns: 1fr; gap: 16px; }
  .challenges-grid { grid-template-columns: 1fr; }
  .pricing-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .template-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .disclaimer-inner { grid-template-columns: 1fr; }
  .disclaimer-icon { display: none; }
  .page-cta-inner { flex-direction: column; }
  .trust-body { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .modal { padding: 28px 20px; }
  .pricing-summary-grid { grid-template-columns: 1fr; }
  .template-preview-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 24px; }
  .pricing-price { font-size: 34px; }
}

/* ─── FOCUS & REDUCED MOTION ─────────────────────────── */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
