/* ============================================
   agent.chat — design tokens
   Carrier-agnostic professional palette: deep navy + warm coral accent
   ============================================ */
:root {
  --c-ink: #0b1f3a;          /* deep navy, primary brand */
  --c-ink-2: #14315c;
  --c-ink-3: #1f4480;
  --c-paper: #f7f8fb;
  --c-paper-2: #ffffff;
  --c-line: #e3e7ee;
  --c-mute: #6b7587;
  --c-text: #1a2233;
  --c-accent: #e85a3c;        /* coral CTA */
  --c-accent-2: #ffb547;      /* warm gold for "magic moments" */
  --c-success: #1b8a5a;
  --c-warn: #b8590f;
  --c-info: #2a6df4;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-1: 0 1px 2px rgba(11, 31, 58, 0.06), 0 2px 8px rgba(11, 31, 58, 0.04);
  --shadow-2: 0 4px 16px rgba(11, 31, 58, 0.08), 0 12px 32px rgba(11, 31, 58, 0.06);
  --shadow-3: 0 12px 40px rgba(11, 31, 58, 0.18);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", sans-serif;
  --font-mono: "SF Mono", Menlo, Consolas, "Roboto Mono", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-paper);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-ink-3); }

/* ============================================
   Header & Footer
   ============================================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: var(--c-paper-2);
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(11, 31, 58, 0.18));
  animation: swirl-spin 18s linear infinite;
  transform-origin: center;
}

.brand:hover .brand-mark {
  animation-duration: 4s;
}

@keyframes swirl-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark { animation: none; }
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--c-ink);
  letter-spacing: -0.3px;
}

.brand-tagline {
  font-size: 13px;
  color: var(--c-mute);
  border-left: 1px solid var(--c-line);
  padding-left: 12px;
  margin-left: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--c-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover { color: var(--c-accent); }

.site-footer {
  padding: 24px 32px 40px;
  text-align: center;
  color: var(--c-mute);
  font-size: 12px;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s;
  text-decoration: none;
}

.btn-primary {
  background: var(--c-accent);
  color: white;
  box-shadow: var(--shadow-1);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }

.btn-secondary {
  background: var(--c-ink);
  color: white;
}
.btn-secondary:hover { background: var(--c-ink-2); }

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-ghost:hover { background: var(--c-paper); }

/* ============================================
   Screens
   ============================================ */
.screen {
  display: none;
  min-height: calc(100vh - 70px);
}
.screen.active { display: block; }

/* ============================================
   Landing / Logic Gate
   ============================================ */
.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 32px 24px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--c-ink);
  letter-spacing: -1px;
}

.hero h1 .accent { color: var(--c-accent); }
.hero h1 .hero-red { color: #d42020; }

.hero-sub {
  font-size: 18px;
  color: var(--c-mute);
  max-width: 700px;
  margin: 0 auto 48px;
}

.logic-gate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.gate-card {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.gate-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-ink);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.gate-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-ink);
}

.gate-card:hover::before { transform: scaleX(1); }

.gate-card[data-vertical="personal"]::before { background: var(--c-accent); }
.gate-card[data-vertical="personal"]:hover { border-color: var(--c-accent); }

.gate-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--c-paper);
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--c-ink);
  margin-bottom: 20px;
}

.gate-card[data-vertical="personal"] .gate-icon { color: var(--c-accent); }

.gate-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--c-ink);
}

.gate-card p {
  margin: 0 0 20px;
  color: var(--c-mute);
  font-size: 14px;
}

.gate-cta {
  font-weight: 600;
  color: var(--c-ink);
  font-size: 14px;
}

.gate-card[data-vertical="personal"] .gate-cta { color: var(--c-accent); }

.legal-strip {
  margin: 36px auto 0;
  max-width: 700px;
  font-size: 12px;
  color: var(--c-mute);
}

.info-band {
  background: var(--c-paper-2);
  border-top: 1px solid var(--c-line);
  padding: 56px 32px;
  margin-top: 64px;
}

.info-band h3 {
  text-align: center;
  font-size: 28px;
  color: var(--c-ink);
  margin: 0 0 32px;
}

.how-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  counter-reset: step;
  margin: 0 auto;
}

.how-grid li {
  background: var(--c-paper);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 14px;
  color: var(--c-text);
  position: relative;
}

.how-grid li strong { color: var(--c-ink); display: block; margin-bottom: 6px; }

.how-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(232, 90, 60, 0.12), rgba(255, 181, 71, 0.18));
  color: var(--c-accent);
  margin-bottom: 12px;
}

.how-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ============================================
   For Agents screen
   ============================================ */
.for-agents-topbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 32px 0;
}

.back-btn {
  font-size: 14px;
  padding: 8px 14px;
}

/* ============================================
   Chat screen
   ============================================ */
.chat-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px;
  height: calc(100vh - 70px);
}

.chat-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agent-card {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.agent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-ink), var(--c-ink-3));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.agent-card .agent-name {
  font-weight: 600;
  color: var(--c-ink);
  font-size: 14px;
}

.agent-card .agent-role {
  font-size: 12px;
  color: var(--c-mute);
}

.agent-status {
  font-size: 11px;
  color: var(--c-success);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.agent-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-success);
  display: inline-block;
}

.qual-tracker, .enrichment-panel {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 16px;
}

.qual-tracker h4, .enrichment-panel h4 {
  margin: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--c-mute);
  letter-spacing: 0.6px;
  font-weight: 700;
}

#qual-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#qual-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-mute);
}

#qual-checklist li.done {
  color: var(--c-text);
}

#qual-checklist li::before {
  content: "○";
  font-size: 14px;
  width: 16px;
  text-align: center;
  color: var(--c-line);
}

#qual-checklist li.done::before {
  content: "●";
  color: var(--c-success);
}

#qual-checklist li.active::before {
  content: "◐";
  color: var(--c-accent);
}

.enrichment-panel .enr-row {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: 13px;
}

.enrichment-panel .enr-row:last-child { border-bottom: none; }
.enrichment-panel .enr-key { color: var(--c-mute); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.enrichment-panel .enr-val { color: var(--c-ink); font-weight: 600; }
.enrichment-panel .enr-val.fresh {
  background: linear-gradient(120deg, transparent 0%, rgba(255, 181, 71, 0.4) 30%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-out;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.chat-main {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-log {
  flex: 1;
  padding: 20px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.5;
  animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg.bot {
  background: var(--c-paper);
  color: var(--c-text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.msg.user {
  background: var(--c-ink);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.msg.system {
  background: rgba(255, 181, 71, 0.15);
  border: 1px dashed var(--c-accent-2);
  color: var(--c-warn);
  font-size: 13px;
  align-self: center;
  max-width: 90%;
  border-radius: 8px;
  padding: 10px 14px;
}

.msg.bot.typing {
  font-style: italic;
  color: var(--c-mute);
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
}

.thinking-swirl {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  animation: swirl-spin 1.4s linear infinite;
  transform-origin: center;
  filter: drop-shadow(0 1px 1px rgba(11, 31, 58, 0.15));
}

@media (prefers-reduced-motion: reduce) {
  .thinking-swirl { animation: none; }
}

.chat-input {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--c-line);
  background: var(--c-paper-2);
}

.chat-input input {
  flex: 1;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
  transition: border 0.15s;
}

.chat-input input:focus { border-color: var(--c-ink); }

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 16px;
}

.chat-suggestions button {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  color: var(--c-ink);
  font-family: inherit;
  transition: all 0.12s;
}

.chat-suggestions button:hover {
  background: var(--c-ink);
  color: white;
  border-color: var(--c-ink);
}

/* ============================================
   Handoff screen
   ============================================ */
.handoff-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 32px 24px;
}

.handoff-user h2 {
  font-size: 36px;
  margin: 0 0 8px;
  color: var(--c-ink);
  letter-spacing: -0.5px;
}

.handoff-user .lead {
  font-size: 17px;
  color: var(--c-mute);
  margin: 0 0 24px;
}

.handoff-user .lead strong { color: var(--c-ink); }

.agent-match-card {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-1);
  display: flex;
  gap: 20px;
  align-items: center;
}

.agent-match-card .photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}

.agent-match-card .name {
  font-weight: 700;
  font-size: 17px;
  color: var(--c-ink);
}

.agent-match-card .title {
  color: var(--c-mute);
  font-size: 14px;
  margin-top: 2px;
}

.agent-match-card .meta {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--c-text);
}

.agent-match-card .meta span::before {
  content: "✓ ";
  color: var(--c-success);
  font-weight: bold;
}

.handoff-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.conversation-summary {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.conversation-summary h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--c-ink);
}

.conversation-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.conversation-summary li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  color: var(--c-text);
}

.conversation-summary li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--c-accent);
  font-weight: bold;
}

.handoff-crm {
  background: var(--c-ink);
  color: #d8e1f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
  align-self: start;
}

.crm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.crm-header h3 {
  margin: 0;
  color: white;
  font-size: 18px;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.crm-explainer {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}

.json-view {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: #c8d6f0;
  overflow-x: auto;
  max-height: 360px;
  overflow-y: auto;
  margin: 0 0 20px;
  white-space: pre;
}

.json-view .k { color: #9bd1ff; }
.json-view .s { color: #ffd28c; }
.json-view .n { color: #b8f0a3; }
.json-view .b { color: #ff9b9b; }

.probability-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.probability-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--c-accent-2) calc(var(--p, 0) * 1%), rgba(255,255,255,0.12) 0);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.probability-ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--c-ink);
  border-radius: 50%;
}

.probability-ring span {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.prob-label {
  font-size: 13px;
  color: white;
  font-weight: 600;
}

.prob-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.legal-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}

.legal-band details {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.legal-band summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--c-ink);
}

.legal-body {
  margin-top: 12px;
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.6;
}

.legal-body p { margin: 8px 0; }

/* ============================================
   For Agents (B2B SaaS pitch section)
   ============================================ */
.agents-band {
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-paper-2) 100%);
  border-top: 1px solid var(--c-line);
  padding: 72px 32px 80px;
}

.agents-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.agents-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--c-accent);
  background: rgba(232, 90, 60, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.agents-header h3 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 14px;
  color: var(--c-ink);
  letter-spacing: -0.6px;
  line-height: 1.12;
}

.agents-sub {
  font-size: 17px;
  color: var(--c-mute);
  margin: 0;
  line-height: 1.55;
}

.agents-sub strong { color: var(--c-ink); }

.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.agent-pitch {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.agent-pitch:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-ink-3);
}

.pitch-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.pitch-tag-ia {
  color: var(--c-ink);
  background: rgba(11, 31, 58, 0.08);
}

.pitch-tag-cap {
  color: #8a3b14;
  background: rgba(232, 90, 60, 0.14);
}

.agent-pitch h4 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--c-ink);
  letter-spacing: -0.3px;
}

.agent-pitch > p {
  font-size: 15px;
  color: var(--c-mute);
  margin: 0 0 18px;
  line-height: 1.55;
}

.pitch-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pitch-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
}

.pitch-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
}

.pitch-bullets li strong { color: var(--c-ink); font-weight: 600; }

/* --- Pricing --- */
.agents-pricing {
  margin-bottom: 48px;
  text-align: center;
}

.agents-pricing h4 {
  font-size: 22px;
  color: var(--c-ink);
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}

.pricing-sub {
  color: var(--c-mute);
  font-size: 14px;
  margin: 0 0 24px;
}

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

.price-card {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: left;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.price-card-featured {
  border: 2px solid var(--c-accent);
  background: linear-gradient(180deg, #fff 0%, rgba(232, 90, 60, 0.04) 100%);
}

.price-flag {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--c-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.price-label {
  font-size: 13px;
  color: var(--c-mute);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 34px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.price-amount span {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-mute);
  letter-spacing: 0;
}

.price-note {
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.5;
}

/* --- Hybrid Freemium Handoff callout --- */
.hybrid-callout {
  background: var(--c-ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hybrid-callout::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 181, 71, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hybrid-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--c-accent-2);
  margin-bottom: 10px;
}

.hybrid-callout h4 {
  font-size: 24px;
  color: white;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.hybrid-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.hybrid-copy p strong { color: white; }

.hybrid-cta {
  white-space: nowrap;
  background: var(--c-accent-2);
  color: var(--c-ink);
  font-weight: 700;
}

.hybrid-cta:hover {
  background: #fff;
  color: var(--c-ink);
}

.agents-foot {
  text-align: center;
  font-size: 14px;
  color: var(--c-mute);
}

.agents-foot a {
  color: var(--c-accent);
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
}

.agents-foot a:hover { text-decoration: underline; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .logic-gate { grid-template-columns: 1fr; }
  .chat-shell { grid-template-columns: 1fr; height: auto; }
  .chat-side { order: 2; }
  .chat-main { order: 1; height: 70vh; }
  .handoff-grid { grid-template-columns: 1fr; }
  .handoff-crm { position: static; }
  .brand-tagline { display: none; }
  .site-nav a { display: none; }
  .agents-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hybrid-callout { grid-template-columns: 1fr; padding: 28px; }
  .hybrid-cta { justify-self: start; }
}
