/* ReproKit — shared site styles */

:root {
  --bg: #0B0C0F;
  --bg-alt: #101418;
  --card: #161A1F;
  --card-hover: #1B2027;
  --border: #ffffff12;
  --border-strong: #ffffff1f;
  --text: #F7F7F5;
  --text-dim: #9A9DA8;
  --text-dimmer: #767986;
  --text-faint: #5C5F6B;
  --text-body: #D6D7DB;
  --text-body-alt: #B9BBC4;
  --brand: #FF6250;
  --brand-hover: #FF7A6B;
  --brand-dim: #FF625014;
  --mono: 'JetBrains Mono', monospace;
  --sans: Manrope, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: #E0472F; }

img { max-width: 100%; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }

@keyframes rkpulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 #FF625080; }
  50% { opacity: .55; box-shadow: 0 0 0 6px #FF625000; }
}

@keyframes rkfloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 14px) scale(1.06); }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.16,.8,.3,1), transform .6s cubic-bezier(.16,.8,.3,1);
  transition-delay: var(--d, 0ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero::before { animation: none !important; }
  .pill .dot { animation: none !important; }
  .report-shot img { animation: none !important; }
  .report-tab-progress { display: none !important; }
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  gap: 24px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(11, 12, 15, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 30px -18px #000000a0;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; display: block; }
.brand span { font-size: 18px; font-weight: 800; letter-spacing: -.02em; color: var(--text); white-space: nowrap; }
.brand-link { display: flex; align-items: center; gap: 11px; }

.main-nav { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--text-dim);
  white-space: nowrap; transition: color .16s ease; cursor: pointer;
}
.nav-link:hover, .nav-link.current { color: var(--text); }
.nav-link.current { font-weight: 600; }

.btn {
  font-size: 15px; font-weight: 700; color: var(--bg); background: var(--brand);
  padding: 11px 20px; border-radius: 10px; white-space: nowrap; border: none;
  cursor: pointer; transition: all .18s ease; display: inline-block;
}
.btn:hover { background: var(--brand-hover); color: var(--bg); box-shadow: 0 10px 28px -8px rgba(255, 98, 80, .55); }

.btn-lg { font-size: 16px; padding: 16px 28px; border-radius: 12px; }
.btn-lg:hover { transform: translateY(-2px); }

.btn-ghost {
  font-size: 16px; font-weight: 600; color: var(--text); border: 1px solid #ffffff2e;
  padding: 15px 26px; border-radius: 12px; white-space: nowrap; background: transparent; cursor: pointer;
}
.btn-ghost:hover { color: var(--text); border-color: #ffffff4a; }

/* Sections */
section, .section { padding: 84px clamp(20px, 5vw, 72px); }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); }

.eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: .08em; color: var(--brand);
}

.pill {
  display: inline-flex; align-items: center; gap: 9px; border: 1px solid #FF625059;
  padding: 7px 15px; border-radius: 999px; font-family: var(--mono); font-size: 13px;
  letter-spacing: .08em; color: var(--brand); white-space: nowrap; align-self: flex-start;
}
.pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brand); animation: rkpulse 1.8s ease-in-out infinite; }

/* Hero */
.hero {
  display: flex; align-items: center; gap: 56px; position: relative; overflow: hidden;
  padding: 96px clamp(20px, 5vw, 72px) 88px;
  flex-wrap: wrap;
}
.hero::before {
  content: ''; position: absolute; top: -280px; right: -180px; width: 820px; height: 820px;
  border-radius: 999px; background: radial-gradient(circle, #FF62502b 0%, #FF625000 62%);
  pointer-events: none; animation: rkfloat 16s ease-in-out infinite;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; max-width: 610px; flex: 1 1 480px; position: relative; }
.hero-copy h1 {
  margin: 0; font-size: clamp(38px, 5vw, 66px); line-height: 1.03; font-weight: 800;
  letter-spacing: -.035em; color: var(--text);
}
.hero-copy h1 span { color: var(--brand); }
.hero-copy p { margin: 0; font-size: 20px; line-height: 1.6; color: var(--text-dim); max-width: 540px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; align-items: center; gap: 18px; font-family: var(--mono); font-size: 13px; color: var(--text-dimmer); flex-wrap: wrap; }
.hero-meta span.sep { color: #3A3C44; }
.hero-shot { flex: 1 1 320px; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-shot img { width: 400px; max-width: 100%; display: block; border-radius: 16px; border: 1px solid #ffffff1a; box-shadow: 0 30px 70px #00000080; }

/* Grid cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 15px; transition: all .2s ease;
}
.card:hover { border-color: #FF625059; background: var(--card-hover); transform: translateY(-3px); box-shadow: 0 24px 48px -28px rgba(255, 98, 80, .35); }
.card.tight { border-radius: 14px; padding: 26px; gap: 10px; }
.card .num {
  font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--bg); background: var(--brand);
  width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.card h4 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.card.tight h4 { font-size: 19px; }
.card p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text-dim); }
.card.tight p { font-size: 15px; }
.card .tag { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--brand); }

/* Persona band */
.persona-band {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.persona-band .label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--text-faint); flex: none; }
.persona-tabs { display: flex; gap: 10px; flex: none; flex-wrap: wrap; }
.persona-tab {
  cursor: pointer; font-size: 16px; font-weight: 600; padding: 12px 20px; border-radius: 999px;
  white-space: nowrap; color: var(--text-dim); background: #ffffff0a; border: 1px solid #ffffff14;
  transition: all .18s ease;
}
.persona-tab.active { color: var(--bg); background: var(--brand); border-color: var(--brand); font-weight: 700; }
.persona-line { margin: 0; font-size: 19px; line-height: 1.5; color: var(--text); font-weight: 600; transition: opacity .18s ease; }

/* Report tabs */
.report-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.report-tab {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 15px; font-weight: 600;
  padding: 11px 18px; border-radius: 10px; white-space: nowrap; color: var(--text-dim);
  background: #ffffff08; border: 1px solid #ffffff14; transition: all .18s ease;
}
.report-tab.active { color: var(--brand); background: #FF62501f; border-color: var(--brand); font-weight: 700; }
.report-tab .count { font-family: var(--mono); font-size: 11px; color: var(--text-faint); }

/* Auto-advance progress fill along the bottom edge of the active tab.
   JS restarts the animation (via a reflow trick) every time a tab activates. */
.report-tab-progress {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 0%;
  background: var(--brand); pointer-events: none;
}
.report-tab:not(.active) .report-tab-progress { width: 0% !important; animation: none !important; }
@keyframes rkprogress { from { width: 0%; } to { width: 100%; } }

.report-panel { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.report-shot {
  flex: 1 1 480px; min-width: 0; border-radius: 16px; border: 1px solid var(--border-strong);
  overflow: hidden; box-shadow: 0 30px 70px #00000073; background: var(--bg);
}
.report-shot img {
  width: 100%; display: block; transition: opacity .25s ease;
  animation: rkkenburns 9s ease-in-out infinite alternate;
}
@keyframes rkkenburns { from { transform: scale(1); } to { transform: scale(1.035); } }
.report-side { width: 380px; flex: 1 1 300px; display: flex; flex-direction: column; gap: 18px; }
.report-side h4 { margin: 0; font-size: 32px; line-height: 1.15; font-weight: 800; letter-spacing: -.03em; color: var(--text); transition: opacity .18s ease; }
.report-side p { margin: 0; font-size: 17px; line-height: 1.65; color: var(--text-dim); transition: opacity .18s ease; }
.hr { height: 1px; background: var(--border-strong); border: none; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.stat .n { font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--brand); line-height: 1; }
.stat .l { font-size: 13px; color: var(--text-dim); }
.report-actions { display: flex; gap: 9px; }
.report-actions .copy {
  flex: 1; text-align: center; font-size: 14px; font-weight: 700; color: var(--bg); background: var(--brand);
  padding: 13px 0; border-radius: 10px; cursor: pointer; border: none;
}
.report-actions .fmt {
  font-family: var(--mono); font-size: 13px; color: var(--text-body-alt); border: 1px solid var(--border-strong);
  padding: 13px 18px; border-radius: 10px;
}

/* Demo video */
.demo-frame {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border-strong); background: var(--bg); box-shadow: 0 30px 70px #00000073;
}
.demo-frame video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; background: var(--bg); }
.demo-cover {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; background: rgba(11, 12, 15, .72); cursor: pointer;
}
.demo-cover .play {
  width: 84px; height: 84px; border-radius: 999px; background: var(--brand); display: flex; align-items: center;
  justify-content: center; box-shadow: 0 12px 40px rgba(255, 98, 80, .45); transition: transform .18s ease;
}
.demo-cover:hover .play { transform: scale(1.06); }
.demo-cover .tri {
  width: 0; height: 0; border-left: 26px solid var(--bg); border-top: 16px solid transparent;
  border-bottom: 16px solid transparent; margin-left: 7px;
}
.demo-cover .cta { font-size: 17px; font-weight: 600; color: var(--text); }
.demo-cover .note { font-family: var(--mono); font-size: 12px; color: var(--text-dimmer); text-align: center; }

/* Pricing — single-plan banner (no paid tier to compare against) */
.plan-solo { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 0; overflow: hidden; position: relative; }
.plan-solo::before {
  content: ''; position: absolute; top: -160px; left: -120px; width: 460px; height: 460px; border-radius: 999px;
  background: radial-gradient(circle, var(--brand-dim) 0%, #FF625000 65%); pointer-events: none;
}
.plan-solo .plan-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px); border-bottom: 1px solid var(--border); position: relative;
}
.plan-solo .plan-price-block { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.plan-solo .price-huge { font-size: clamp(46px, 6vw, 64px); font-weight: 800; letter-spacing: -.04em; color: var(--text); line-height: 1; }
.plan-solo .plan-price-meta { display: flex; flex-direction: column; gap: 5px; }
.plan-solo .plan-price-meta .name { font-size: 19px; font-weight: 700; color: var(--text); }
.plan-solo .plan-price-meta .note { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--text-faint); }
.plan-solo .plan-cols { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.plan-solo .plan-col {
  padding: 30px clamp(24px, 4vw, 44px); display: flex; flex-direction: column; gap: 15px; border-left: 1px solid var(--border);
}
.plan-solo .plan-col:first-child { border-left: none; }
.plan-solo .plan-col .col-label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--brand); }
.plan-solo .plan-col span:not(.col-label) { font-size: 15px; color: var(--text-body); }
@media (max-width: 760px) {
  .plan-solo .plan-cols { grid-template-columns: 1fr; }
  .plan-solo .plan-col { border-left: none; border-top: 1px solid var(--border); }
  .plan-solo .plan-col:first-child { border-top: none; }
}

/* FAQ */
.faq-layout { display: flex; gap: 64px; flex-wrap: wrap; }
.faq-intro { width: 340px; flex: 1 1 260px; display: flex; flex-direction: column; gap: 14px; }
.faq-list { flex: 2 1 460px; display: flex; flex-direction: column; border-bottom: 1px solid var(--border-strong); }
.faq-item { display: flex; flex-direction: column; gap: 10px; padding: 24px 0; border-top: 1px solid var(--border-strong); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer;
  background: none; border: none; width: 100%; text-align: left; padding: 0; font-family: inherit;
}
.faq-q h4 { margin: 0; font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: var(--text); transition: color .18s ease; }
.faq-item.open .faq-q h4 { color: var(--brand); }
.faq-sign { font-family: var(--mono); font-size: 18px; color: var(--text-faint); transition: all .18s ease; }
.faq-item.open .faq-sign { color: var(--brand); transform: rotate(45deg); }
.faq-a {
  margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-dim); max-height: 0; opacity: 0;
  overflow: hidden; transition: all .22s ease;
}
.faq-item.open .faq-a { max-height: 320px; opacity: 1; }

/* CTA band */
.cta-band {
  background: var(--brand); display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.cta-band h3 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; font-weight: 800; letter-spacing: -.035em; color: var(--bg); }
.cta-band p { margin: 0; font-size: 19px; line-height: 1.55; color: #0B0C0FB8; max-width: 560px; }
.cta-band .btn { color: var(--brand); background: var(--bg); padding: 18px 32px; flex: none; font-size: 17px; }
.cta-band .btn:hover { background: #1a1a1a; color: var(--brand); }

/* Footer */
.site-footer { padding: 60px clamp(20px, 5vw, 72px) 40px; display: flex; flex-direction: column; gap: 44px; background: var(--bg-alt); }
.footer-top { display: flex; justify-content: space-between; gap: 64px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 280px; }
.footer-brand p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-dimmer); }
.footer-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-col .label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--text-faint); }
.footer-col span, .footer-col a.footer-link { font-size: 15px; color: var(--text-body-alt); white-space: nowrap; }
a.footer-link:hover { color: var(--text); }
.footer-bottom {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-top: 26px;
  border-top: 1px solid var(--border-strong); gap: 12px;
}
.footer-bottom span { font-family: var(--mono); font-size: 12px; color: var(--text-faint); }
.footer-bottom span:first-child { justify-self: start; }
.footer-bottom span:last-child { grid-column: 2; justify-self: center; text-align: center; }
@media (max-width: 560px) {
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-bottom span:last-child { grid-column: 1; }
}

/* Simple page footer nav (pricing/privacy/terms/contact bottom bar) */
.simple-footer {
  padding: 40px clamp(20px, 5vw, 72px); background: var(--bg-alt); border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.simple-footer .links { display: flex; gap: 28px; }
.simple-footer a, .simple-footer span.current { font-size: 14px; color: var(--text-body-alt); }
.simple-footer span.current { color: var(--text); }
.simple-footer a:hover { color: var(--text); }

/* Legal pages */
.legal-hero { padding: 72px clamp(20px, 5vw, 72px) 48px; display: flex; flex-direction: column; gap: 14px; border-bottom: 1px solid var(--border); }
.legal-hero h1 { margin: 0; font-size: clamp(34px, 5vw, 52px); line-height: 1.08; font-weight: 800; letter-spacing: -.035em; color: var(--text); }
.legal-hero .meta { font-family: var(--mono); font-size: 14px; color: var(--text-dimmer); }

.legal-body { padding: 52px clamp(20px, 5vw, 72px) 76px; display: flex; gap: 64px; flex-wrap: wrap; }
.legal-toc { width: 250px; flex: 1 1 200px; display: flex; flex-direction: column; gap: 11px; }
.legal-toc .label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--text-faint); }
.legal-toc a { font-size: 15px; color: var(--text-dim); border-left: 2px solid var(--border-strong); padding-left: 12px; }
.legal-toc a.current, .legal-toc a:hover { color: var(--text); border-left-color: var(--brand); font-weight: 600; }
.legal-content { flex: 3 1 500px; display: flex; flex-direction: column; gap: 34px; min-width: 0; max-width: 820px; }
.legal-content > p.lede { font-size: 17px; line-height: 1.7; color: var(--text-body); }
.legal-content h2 { margin: 0 0 0; font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
.legal-section { display: flex; flex-direction: column; gap: 12px; }
.legal-section p { margin: 0; font-size: 16px; line-height: 1.75; color: var(--text-body-alt); }
.legal-section code { font-family: var(--mono); font-size: 15px; color: var(--brand); }
.legal-section strong { color: var(--text); }

.callout {
  background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--brand); border-radius: 12px;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.callout h2 { font-size: 18px; }
.callout ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.callout li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.65; color: var(--text-body); }
.callout li::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--brand); flex: none; margin-top: 9px; }

.legal-table { display: flex; flex-direction: column; border: 1px solid var(--border-strong); border-radius: 12px; overflow: hidden; }
.legal-table .row { display: flex; border-bottom: 1px solid var(--border-strong); flex-wrap: wrap; }
.legal-table .row:last-child { border-bottom: none; }
.legal-table .row.head { background: var(--card); }
.legal-table .row.head span { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--text-dimmer); }
.legal-table .cat { width: 150px; flex: 1 1 130px; font-size: 15px; font-weight: 600; color: var(--text); padding: 16px 18px; }
.legal-table .inc, .legal-table .exc { flex: 1 1 220px; font-size: 15px; line-height: 1.6; color: var(--text-body-alt); padding: 16px 18px; }
.legal-table .exc { color: var(--text-dimmer); }
.legal-table .row.head .cat, .legal-table .row.head .inc, .legal-table .row.head .exc { padding: 14px 18px; }

.perm-list { display: flex; flex-direction: column; }
.perm-row { display: flex; gap: 20px; padding: 15px 0; border-top: 1px solid var(--border-strong); flex-wrap: wrap; }
.perm-list .perm-row:last-child { border-bottom: 1px solid var(--border-strong); }
.perm-row .k { font-size: 15px; font-weight: 700; color: var(--brand); width: 230px; flex: none; }
.perm-row .k.mono { font-family: var(--mono); font-size: 14px; font-weight: 500; }
.perm-row .v { font-size: 16px; line-height: 1.65; color: var(--text-body-alt); flex: 1 1 260px; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.contact-card .label { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--text-faint); }
.contact-card .value { font-size: 19px; font-weight: 700; color: var(--text); }
.contact-card .note { font-size: 15px; color: var(--text-dim); }

.contact-layout { padding: 76px clamp(20px, 5vw, 72px) 72px; display: flex; gap: 56px; flex-wrap: wrap; }
.contact-intro { width: 520px; flex: 1 1 400px; display: flex; flex-direction: column; gap: 28px; }
.contact-intro h1 { margin: 0; font-size: clamp(34px, 5vw, 52px); line-height: 1.06; font-weight: 800; letter-spacing: -.035em; color: var(--text); }
.contact-intro > p { margin: 0; font-size: 18px; line-height: 1.65; color: var(--text-dim); }

.contact-form {
  flex: 1 1 400px; background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 38px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-form h2 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -.025em; color: var(--text); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--text-body-alt); }
.field input, .field textarea {
  font-size: 16px; color: var(--text); border: 1px solid var(--border-strong); background: var(--bg);
  border-radius: 10px; padding: 15px 16px; font-family: inherit; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.topic-choices { display: flex; gap: 9px; flex-wrap: wrap; }
.topic-choice {
  font-size: 14px; color: var(--text-dim); border: 1px solid var(--border-strong); padding: 10px 16px;
  border-radius: 999px; white-space: nowrap; background: transparent; cursor: pointer; transition: all .15s ease;
}
.topic-choice.active { color: var(--bg); background: var(--brand); font-weight: 600; border-color: var(--brand); }
.form-note { margin: 0; font-size: 13px; color: var(--text-faint); }

/* Pricing intro block on pricing page */
.pricing-intro {
  padding: 84px clamp(20px, 5vw, 72px) 56px; display: flex; flex-direction: column; gap: 16px;
  align-items: center; text-align: center;
}
.pricing-intro h1 { margin: 0; font-size: clamp(34px, 5vw, 54px); line-height: 1.06; font-weight: 800; letter-spacing: -.035em; color: var(--text); max-width: 800px; }
.pricing-intro p { margin: 0; font-size: 19px; line-height: 1.6; color: var(--text-dim); max-width: 620px; }

@media (max-width: 760px) {
  .site-header { flex-direction: column; align-items: flex-start; }
  .main-nav { gap: 18px; }
  section, .section { padding: 56px 20px; }
  .hero { padding-top: 56px; padding-bottom: 56px; }
  .report-side { position: static; width: 100%; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* Chat widget brand override — see /chat/chat.css for the base styles.
   ":root .rk-chat" (not ".rk-chat") deliberately outranks chat.css's own
   rule, since chat.css is loaded after this file and would otherwise win
   the cascade at equal specificity. */
:root .rk-chat {
  --rk-accent: var(--brand);
  --rk-ink: var(--text);
  --rk-surface: var(--bg-alt);
  --rk-line: var(--border-strong);

  --rk-ink-dim: var(--text-dim);
  --rk-bubble-bot: var(--card);
  --rk-hover: var(--card-hover);
  --rk-error-bg: #2a1512;
  --rk-error-ink: #ff9c8a;
  --rk-accent-ink: var(--bg); /* matches .btn: dark text on the brand color, not white */
  --rk-error-line: #ff625059;
  --rk-dot: var(--text-faint);
}
