:root {
  --bg: #08121f;
  --bg-deep: #0d1f35;
  --surface: rgba(10, 21, 39, 0.74);
  --surface-strong: rgba(10, 24, 45, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --ink: #f7f4ec;
  --muted: #b7c3d5;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #efc87c;
  --accent-soft: rgba(239, 200, 124, 0.12);
  --signal: #c89d56;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  --headline: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(239, 200, 124, 0.16), transparent 18%),
    radial-gradient(circle at 84% 11%, rgba(111, 136, 170, 0.2), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035), transparent 36%),
    linear-gradient(180deg, #030914 0%, #07101b 24%, var(--bg) 55%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(239, 200, 124, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 200, 124, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 85%);
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.background-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-one {
  width: 500px;
  height: 500px;
  top: 110px;
  right: -160px;
  background: radial-gradient(circle, rgba(239, 200, 124, 0.18), transparent 70%);
}

.orb-two {
  width: 360px;
  height: 360px;
  top: 980px;
  left: -110px;
  background: radial-gradient(circle, rgba(122, 160, 220, 0.14), transparent 68%);
}

.site-header,
.section-grid {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0.8rem;
  z-index: 20;
  margin-top: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(6, 13, 24, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(239, 200, 124, 0.16) 0%, rgba(239, 200, 124, 0.04) 100%);
  border: 1px solid rgba(239, 200, 124, 0.2);
  box-shadow: var(--shadow);
}

.brand-mark svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: var(--accent);
}

.brand-lockup {
  display: grid;
  gap: 0.15rem;
}

.brand-text {
  font-size: 0.98rem;
  text-transform: uppercase;
  color: #fffdf8;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff8ea;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 200, 124, 0.95), rgba(239, 200, 124, 0.2));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a.is-active {
  color: #fff8ea;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  gap: 2.5rem;
  align-items: start;
  padding: 3.25rem 0 4rem;
}

.hero-copy h1,
.section-heading h2,
.answer-intro h2,
.cta-copy h2 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  max-width: 9.6ch;
  font-size: clamp(2.75rem, 4.7vw, 4.45rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-lead,
.section-heading p,
.cta-copy p,
.card-copy,
.step-card p,
.stat-card span,
.answer-points p,
.signal-points p,
.chatbot-subtitle,
.chatbot-meta {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 35rem;
  margin: 1.15rem 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.hero-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-audience article {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.hero-audience strong,
.hero-audience span {
  display: block;
}

.hero-audience strong {
  margin-bottom: 0.3rem;
  color: #fff0cb;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-audience span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.operator-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.operator-strip span {
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 200, 124, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #edf3fb;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #f2ce8c 0%, #c69a51 100%);
  color: #09101a;
  box-shadow: 0 18px 40px rgba(239, 200, 124, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #edf4fb;
}

.button-secondary:hover {
  border-color: rgba(239, 200, 124, 0.24);
  background: rgba(239, 200, 124, 0.08);
}

.button-wide {
  width: 100%;
}

.micro-copy {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel,
.answer-frame,
.chatbot-shell {
  position: relative;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 34, 58, 0.94) 0%, rgba(8, 18, 31, 0.88) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel::before,
.answer-frame::before,
.chatbot-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(239, 200, 124, 0.22), rgba(255, 255, 255, 0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(239, 200, 124, 0.1);
  color: #fff5dc;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-status-chip {
  margin-bottom: 1rem;
}

.status-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(239, 200, 124, 0.14);
}

.card-label {
  margin: 0 0 0.5rem;
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-panel-header h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--headline);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-panel-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-panel-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.hero-panel-card h3,
.hero-panel-card p,
.hero-panel-note {
  margin: 0;
}

.hero-panel-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-panel-card p,
.hero-panel-note {
  color: var(--muted);
  line-height: 1.6;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-metrics article,
.step-card,
.stat-card,
.question-card {
  padding: 0.98rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.hero-metrics strong,
.stat-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.35rem;
  font-family: var(--headline);
  letter-spacing: -0.03em;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-panel-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
}

.section-spacing {
  padding: 1.55rem 0 4.9rem;
}

.section-heading {
  max-width: 39rem;
  margin-bottom: 2.3rem;
}

.section-heading h2,
.answer-intro h2,
.cta-copy h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
}

.section-heading.narrow {
  max-width: 35rem;
}

.proof-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.proof-note {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(239, 200, 124, 0.16);
  background: linear-gradient(180deg, rgba(239, 200, 124, 0.08), rgba(255, 255, 255, 0.03));
}

.proof-note-label {
  margin: 0 0 0.45rem;
  color: #fff4d1;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-note-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.proof-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.proof-pillar {
  padding: 1.1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.proof-pillar-label {
  margin: 0 0 0.55rem;
  color: #fff0c8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-pillar h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.proof-pillar p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  margin-top: 1rem;
}

.trust-quote,
.trust-promise {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.trust-quote-copy {
  margin: 0;
  color: #fff7e3;
  font-family: var(--headline);
  font-size: 1.18rem;
  line-height: 1.4;
}

.trust-quote-attribution,
.trust-promise-label {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-promise-label {
  color: #fff0c8;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.trust-promise-list {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
}

.steps,
.stats-grid,
.question-list {
  display: grid;
  gap: 1rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-band {
  margin-top: 1.1rem;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(239, 200, 124, 0.18);
  background: linear-gradient(90deg, rgba(239, 200, 124, 0.08), rgba(255, 255, 255, 0.02));
}

.decision-band-label,
.decision-band-copy {
  margin: 0;
}

.decision-band-label {
  color: #fff0c8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.decision-band-copy {
  margin-top: 0.45rem;
  max-width: 58rem;
  color: #d4dfef;
  line-height: 1.7;
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--signal);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.step-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  min-height: 9.6rem;
  position: relative;
  overflow: hidden;
}

.stat-card span {
  display: block;
  max-width: 18rem;
}

.stat-card::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(239, 200, 124, 0.28), transparent);
}

.question-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.question-card {
  position: relative;
  padding-left: 3.35rem;
  font-size: 1.04rem;
  line-height: 1.6;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.question-card::before {
  content: "?";
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.answer-frame {
  padding: 1.8rem;
}

.answer-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.question-highlight {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(239, 200, 124, 0.16), rgba(239, 200, 124, 0.08));
  color: #fff8ea;
  font-family: var(--headline);
  font-size: 1.35rem;
  line-height: 1.25;
  border: 1px solid rgba(239, 200, 124, 0.24);
}

.answer-points {
  display: grid;
  gap: 0.8rem;
}

.answer-points p {
  margin: 0;
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 3px solid var(--signal);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.answer-close {
  margin: 0.6rem 0 0;
  color: #fff3d3;
  font-weight: 700;
}

.signal-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.signal-points p {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(239, 200, 124, 0.28);
}

.intake-guardrails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.intake-guardrails span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 200, 124, 0.14);
  background: rgba(239, 200, 124, 0.06);
  color: #fff4d6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 5rem;
  position: relative;
}

.cta-copy {
  position: sticky;
  top: 6.2rem;
}

.chatbot-shell {
  display: grid;
  gap: 0.95rem;
  background:
    linear-gradient(180deg, rgba(247, 225, 181, 0.34) 0%, rgba(34, 42, 56, 0.94) 16%, rgba(10, 19, 31, 0.96) 100%),
    radial-gradient(circle at top right, rgba(239, 200, 124, 0.24), transparent 30%),
    radial-gradient(circle at top left, rgba(239, 200, 124, 0.12), transparent 24%);
  border: 1px solid rgba(239, 200, 124, 0.34);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(239, 200, 124, 0.12),
    0 0 0 14px rgba(239, 200, 124, 0.045);
}

.floating-intake {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 36;
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.floating-intake-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 4rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(239, 200, 124, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242, 206, 140, 0.98), rgba(209, 156, 77, 0.96));
  color: #0a1220;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    0 0 0 8px rgba(239, 200, 124, 0.08);
  font: inherit;
  cursor: pointer;
}

.floating-intake-toggle-mark {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: #0a1220;
  box-shadow: 0 0 0 6px rgba(10, 18, 32, 0.12);
}

.floating-intake-toggle-copy {
  display: grid;
  gap: 0.08rem;
  text-align: left;
}

.floating-intake-toggle-copy strong,
.floating-intake-toggle-copy span {
  display: block;
}

.floating-intake-toggle-copy strong {
  font-size: 0.96rem;
  line-height: 1.05;
}

.floating-intake-toggle-copy span {
  font-size: 0.79rem;
  line-height: 1.2;
  color: rgba(10, 18, 32, 0.74);
}

.floating-intake-panel {
  width: min(25.5rem, calc(100vw - 1.25rem));
  max-height: min(48rem, calc(100vh - 6.5rem));
  overflow: auto;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(239, 200, 124, 0.34);
  background:
    linear-gradient(180deg, rgba(247, 225, 181, 0.38) 0%, rgba(20, 28, 41, 0.96) 18%, rgba(8, 18, 31, 0.98) 100%),
    radial-gradient(circle at top right, rgba(239, 200, 124, 0.24), transparent 34%);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.42),
    0 0 0 10px rgba(239, 200, 124, 0.06);
}

.floating-intake:not(.is-open) .floating-intake-panel {
  opacity: 0;
  transform: translateY(16px) scale(0.975);
  pointer-events: none;
}

.floating-intake.is-open .floating-intake-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-intake-panel,
.floating-intake-toggle {
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.floating-intake-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.floating-intake-header h3,
.floating-intake-copy {
  margin: 0;
}

.floating-intake-header h3 {
  font-family: var(--headline);
  font-size: 1.6rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.floating-intake-copy {
  margin-top: 0.35rem;
  color: #dce5f2;
  font-size: 0.9rem;
  line-height: 1.45;
}

.floating-intake-close {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff4d6;
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}

.chatbot-form-compact {
  gap: 0.85rem;
}

.contact-grid-compact {
  gap: 0.75rem;
}

.chatbot-form-compact textarea {
  min-height: 5.5rem;
}

.chatbot-form-compact .context-disclosure-body {
  gap: 0.8rem;
}

.chatbot-thread-compact .chat-message {
  max-width: 100%;
}

.chatbot-thread-compact {
  margin-top: 0.8rem;
}

.intake-spotlight {
  display: grid;
  gap: 0.35rem;
  margin: -0.25rem -0.25rem 0.15rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(242, 206, 140, 0.96), rgba(212, 160, 84, 0.96));
  color: #0a1220;
  box-shadow: 0 18px 40px rgba(239, 200, 124, 0.18);
}

.intake-spotlight-label,
.intake-spotlight h3,
.intake-spotlight p {
  margin: 0;
}

.intake-spotlight-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.intake-spotlight h3 {
  font-family: var(--headline);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.intake-spotlight p {
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(10, 18, 32, 0.82);
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-header {
  justify-content: space-between;
  padding-bottom: 0.2rem;
}

.chatbot-label,
.chatbot-subtitle {
  margin: 0;
}

.chatbot-label {
  color: #fff8ea;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-subtitle {
  font-size: 0.86rem;
}

.chatbot-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff5dc;
  font-size: 0.84rem;
  font-weight: 700;
}

.chatbot-header {
  position: relative;
}

.chatbot-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(239, 200, 124, 0.55), rgba(255, 255, 255, 0.04));
}

.chatbot-intro-note {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(239, 200, 124, 0.16);
  background: linear-gradient(180deg, rgba(239, 200, 124, 0.08), rgba(239, 200, 124, 0.03));
  color: var(--muted);
  line-height: 1.6;
}

.handoff-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.handoff-item {
  display: grid;
  gap: 0.38rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(239, 200, 124, 0.14);
  background: linear-gradient(180deg, rgba(239, 200, 124, 0.09), rgba(255, 255, 255, 0.02));
}

.handoff-item strong {
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(239, 200, 124, 0.12);
  color: #fff0c8;
  font-size: 0.78rem;
  font-weight: 800;
}

.handoff-item span {
  color: #eef4fc;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chatbot-thread {
  display: none;
  gap: 0.8rem;
  padding-top: 0.15rem;
}

.chatbot-thread.has-messages {
  display: grid;
}

.chat-message {
  max-width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.chat-message.assistant {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  justify-self: start;
}

.chat-message.assistant.is-success {
  background: linear-gradient(180deg, rgba(239, 200, 124, 0.16), rgba(255, 255, 255, 0.03));
  border-color: rgba(239, 200, 124, 0.28);
}

.chat-message.assistant.is-error {
  background: linear-gradient(180deg, rgba(255, 110, 110, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 110, 110, 0.26);
}

.chat-message.user {
  background: rgba(239, 200, 124, 0.12);
  border-color: rgba(239, 200, 124, 0.22);
  justify-self: end;
}

.chat-message p,
.chat-message ul {
  margin: 0;
  white-space: pre-line;
}

.chat-message p + p,
.chat-message p + ul,
.chat-message ul + p {
  margin-top: 0.75rem;
}

.chat-message.assistant p:first-child {
  color: #fff8ea;
  font-weight: 700;
}

.chat-message ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.chat-message.user p,
.chat-message.user ul {
  color: #fff8ea;
}

.chatbot-form {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.bot-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.chatbot-form .button-primary[disabled] {
  opacity: 0.78;
  cursor: wait;
  transform: none;
}

.chatbot-field {
  display: grid;
  gap: 0.4rem;
}

.contact-grid,
.context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.context-disclosure {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.context-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  list-style: none;
  color: #f3f7ff;
  font-weight: 600;
}

.context-disclosure summary::-webkit-details-marker {
  display: none;
}

.context-disclosure summary::after {
  content: "+";
  color: #f2ce8c;
  font-size: 1.15rem;
  line-height: 1;
}

.context-disclosure[open] summary::after {
  content: "−";
}

.context-disclosure-meta {
  margin-left: auto;
  color: #9fb0c8;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: lowercase;
}

.context-disclosure-body {
  display: grid;
  gap: 0.95rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.field-label {
  color: #fff6de;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preference-set {
  margin: 0;
  padding: 0;
  border: 0;
}

.preference-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.preference-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #eff5ff;
  cursor: pointer;
}

.preference-option input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.chatbot-form input:not([type="radio"]),
.chatbot-form textarea {
  width: 100%;
  border: 1px solid rgba(239, 200, 124, 0.2);
  border-radius: 16px;
  padding: 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(17, 24, 34, 0.52);
}

.chatbot-form input:not([type="radio"]) {
  min-height: 3.25rem;
}

.chatbot-form textarea {
  min-height: 7.25rem;
  resize: vertical;
}

.chatbot-form input:not([type="radio"])::placeholder,
.chatbot-form textarea::placeholder {
  color: #90a0b7;
}

.chatbot-form input:not([type="radio"]):focus,
.chatbot-form textarea:focus {
  outline: 2px solid rgba(239, 200, 124, 0.32);
  border-color: rgba(239, 200, 124, 0.58);
  background: rgba(18, 24, 33, 0.72);
}

.trust-note {
  margin: 0;
  color: #d9e3f2;
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-alert {
  display: none;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #d5dfef;
  line-height: 1.55;
  font-size: 0.92rem;
}

.form-alert.is-visible {
  display: block;
}

.form-alert.is-error {
  border-color: rgba(255, 110, 110, 0.24);
  background: linear-gradient(180deg, rgba(255, 110, 110, 0.08), rgba(255, 255, 255, 0.02));
  color: #ffe5e5;
}

.form-alert.is-info {
  border-color: rgba(239, 200, 124, 0.28);
  background: linear-gradient(180deg, rgba(239, 200, 124, 0.14), rgba(255, 255, 255, 0.02));
  color: #fff4d8;
}

.site-footer {
  padding: 0 0 2.4rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-mark {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2ce8c 0%, #c69a51 100%);
  box-shadow: 0 0 0 8px rgba(239, 200, 124, 0.08);
}

.footer-title,
.footer-copy,
.footer-note {
  margin: 0;
}

.footer-title {
  color: #fff8ea;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-copy,
.footer-note {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff8ea;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 0.2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero,
  .cta-section,
  .answer-content,
  .proof-lead,
  .proof-pillars,
  .trust-strip,
  .steps,
  .handoff-strip,
  .stats-grid,
  .question-list,
  .hero-audience,
  .contact-grid,
  .context-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-copy h1 {
    max-width: 9.2ch;
  }

  .cta-copy {
    position: static;
  }

  .cta-section > .chatbot-shell {
    order: -1;
  }

  .cta-section {
    gap: 1.1rem;
  }

  .chatbot-shell {
    margin-top: 0.25rem;
  }

  .intake-spotlight {
    margin: -0.1rem -0.1rem 0.1rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-nav {
    display: none;
  }

  .brand-tagline {
    display: none;
  }

  .floating-intake {
    right: 0.8rem;
    left: 0.8rem;
    justify-items: stretch;
  }

  .floating-intake-toggle {
    justify-self: end;
  }

  .floating-intake-panel {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-grid {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .site-header {
    padding-inline: 0.85rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-panel,
  .answer-frame,
  .chatbot-shell {
    padding: 1rem;
  }

  .chatbot-shell {
    border-radius: 24px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .chatbot-header,
  .chatbot-status {
    flex-direction: column;
    align-items: flex-start;
  }

  .chatbot-status {
    gap: 0.35rem;
  }

  .chat-message {
    max-width: 100%;
  }

  .floating-intake {
    right: 0.5rem;
    left: 0.5rem;
    bottom: 0.65rem;
  }

  .floating-intake-toggle {
    min-height: 3.75rem;
    padding: 0.85rem 0.95rem;
  }

  .floating-intake-panel {
    max-height: calc(100vh - 5.4rem);
    padding: 0.95rem;
    border-radius: 24px;
  }

  .floating-intake-header {
    gap: 0.65rem;
  }

  .floating-intake-header h3 {
    font-size: 1.4rem;
  }
}
