/* ── Variables ── */
:root {
  --bg: #F7F4EF;
  --fg: #0D2E33;
  --fg-muted: #5A6E72;
  --accent: #E8734A;
  --accent-dark: #C95E32;
  --teal: #0D3B3E;
  --teal-light: #1A5256;
  --border: #DDD8D0;
  --surface: #FFFFFF;
  --radius: 8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: 'Instrument Sans', system-ui, sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; line-height: 1.15; }

/* ── Section label ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ── HERO ── */
.hero { background: var(--teal); color: #fff; padding: 6rem 2rem 5rem; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.hero-left .hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,115,74,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.hero h1 { font-size: clamp(2.5rem, 4vw, 3.8rem); color: #fff; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 480px; margin-bottom: 3rem; line-height: 1.7; }

.hero-proof { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; gap: 0.25rem; }
.proof-num { font-family: 'Instrument Serif', serif; font-size: 1.8rem; color: var(--accent); line-height: 1; }
.proof-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }

/* Agent Dashboard */
.agent-dashboard { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; overflow: hidden; backdrop-filter: blur(4px); }
.dashboard-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.dashboard-title { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.dashboard-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }

.dashboard-agents { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.agent-row { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); transition: all 0.2s; }
.agent-row.agent-active { border-color: rgba(74,222,128,0.25); background: rgba(74,222,128,0.06); }
.agent-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.agent-icon.el { background: rgba(232,115,74,0.2); color: var(--accent); }
.agent-icon.pa { background: rgba(100,180,255,0.15); color: #64B4FF; }
.agent-icon.sch { background: rgba(74,222,128,0.15); color: #4ADE80; }
.agent-icon.cf { background: rgba(180,140,255,0.15); color: #B48CFF; }
.agent-info { flex: 1; min-width: 0; }
.agent-name { font-size: 0.8rem; font-weight: 600; color: #fff; margin-bottom: 0.15rem; }
.agent-status { font-size: 0.72rem; color: rgba(255,255,255,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.agent-badge { font-size: 0.65rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 20px; background: rgba(74,222,128,0.15); color: #4ADE80; letter-spacing: 0.04em; text-transform: uppercase; flex-shrink: 0; }
.agent-badge.done { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

.dashboard-footer { padding: 0.9rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ── OUTCOMES ── */
.outcomes { padding: 7rem 2rem; background: var(--surface); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--teal); margin-bottom: 4rem; }
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.outcome-card { background: var(--bg); padding: 3rem 2.5rem; }
.outcome-stat { font-family: 'Instrument Serif', serif; font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--accent); margin-bottom: 0.75rem; line-height: 1; }
.outcome-desc { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; }

/* ── THE GAP ── */
.thegap { padding: 7rem 2rem; background: var(--bg); }
.thegap-inner { max-width: 1100px; margin: 0 auto; }
.thegap h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--teal); margin-bottom: 3.5rem; max-width: 600px; }
.gap-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.gap-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,115,74,0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.gap-icon-green { background: rgba(74,222,128,0.1); color: #2A9D5C; }
.gap-col h3 { font-family: 'Instrument Sans', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 1.2rem; }
.gap-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.gap-list li { font-size: 0.95rem; color: var(--fg); padding-left: 1.5rem; position: relative; }
.gap-list li::before { content: '—'; position: absolute; left: 0; color: var(--fg-muted); font-size: 0.85rem; }
.gap-list-green li::before { content: '✓'; color: #2A9D5C; font-weight: 700; }
.gap-callout { background: var(--teal); color: #fff; padding: 2rem 2.5rem; border-radius: 12px; }
.gap-callout p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.howitworks { padding: 7rem 2rem; background: var(--surface); }
.howitworks-inner { max-width: 900px; margin: 0 auto; }
.howitworks h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--teal); margin-bottom: 4rem; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; align-items: start; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { font-family: 'Instrument Serif', serif; font-size: 3rem; color: var(--accent); line-height: 1; opacity: 0.5; }
.step h3 { font-family: 'Instrument Sans', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--teal); margin-bottom: 0.75rem; }
.step p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; }

/* ── WHO IT'S FOR ── */
.whositfor { padding: 7rem 2rem; background: var(--teal); color: #fff; }
.whositfor-inner { max-width: 1100px; margin: 0 auto; }
.whositfor .section-label { color: var(--accent); }
.whositfor h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; margin-bottom: 4rem; }
.profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.profile { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2.5rem; }
.profile-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(232,115,74,0.15); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.profile h3 { font-family: 'Instrument Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.profile p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── CLOSING ── */
.closing { padding: 8rem 2rem; background: var(--bg); }
.closing-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.closing h2 { font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--teal); margin-bottom: 1.5rem; line-height: 1.3; }
.closing p { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 1rem; }
.closing-stat { font-size: 1rem; color: var(--accent); font-weight: 600; margin: 2rem 0; }
.closing-divider { width: 60px; height: 2px; background: var(--accent); margin: 3rem auto; }
.closing-vision { display: flex; flex-direction: column; gap: 1.25rem; }
.vision-line { font-size: 1rem; color: var(--fg-muted); }
.closing-cta { margin-top: 3rem; }
.closing-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.closing-btn:hover { background: var(--accent-dark); }

/* ── FOOTER ── */
.site-footer { padding: 3rem 2rem; background: var(--teal); color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.footer-logo { font-family: 'Instrument Serif', serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-meta { text-align: right; }
.footer-compliance { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; justify-content: flex-end; }
.compliance-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); padding: 0.25rem 0.6rem; border-radius: 4px; }
.footer-copy { font-size: 0.75rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { order: -1; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .gap-split { grid-template-columns: 1fr; gap: 2rem; }
  .profiles { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 0.75rem; }
  .step-num { font-size: 2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .footer-compliance { justify-content: flex-start; }
  .hero-proof { gap: 1.5rem; }
  .proof-item { min-width: 100px; }
}
