/* MTTB.ai — Shared Styles
   Mean Time to Blame™
   Professional. Satirical. Defensible.
*/

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

:root {
  --red:        #E8272A;
  --red-dark:   #B91C1E;
  --red-light:  #FEE2E2;
  --charcoal:   #111827;
  --slate:      #1F2937;
  --slate-mid:  #374151;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --white:      #FFFFFF;
  --off-white:  #F9FAFB;
  --yellow:     #FEF3C7;
  --yellow-acc: #F59E0B;

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);

  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { max-width: 68ch; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center !important;
  display: block;
  width: 100%;
}

.text-center { text-align: center; }
.text-muted   { color: var(--muted); }
.text-mono    { font-family: var(--font-mono); }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

section { padding-block: 4rem; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.25;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 39, 42, .35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--slate-mid);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}


.nav__logo-badge {
  background: var(--red);
  color: white;
  font-size: .6rem;
  font-weight: 700;
  padding: .15rem .4rem;
  border-radius: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--slate-mid);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--charcoal); }

.nav__cta { display: flex; gap: .75rem; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding-block: 5.5rem 4.5rem;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a0505 50%, #0f1117 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 40%, rgba(232,39,42,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,39,42,.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,39,42,.15);
  border: 1px solid rgba(232,39,42,.3);
  color: #fca5a5;
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}

.hero__body {
  color: rgba(255,255,255,.55);
  font-size: .9375rem;
  max-width: 56ch;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: .3rem;
}

.hero__stat span {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* ── Dashboard Mockup ────────────────────────────────────────────────────── */
.dashboard-mockup {
  background: var(--slate);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232,39,42,.15), 0 0 60px rgba(232,39,42,.08);
  font-family: var(--font-mono);
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
}

.dashboard-mockup__bar {
  display: flex;
  gap: .4rem;
  margin-bottom: 1rem;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot--red    { background: #FF5F56; }
.dash-dot--yellow { background: #FFBD2E; }
.dash-dot--green  { background: #27C93F; }

.dash-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .5rem;
}

.dash-metric {
  margin-bottom: .9rem;
  padding: .75rem;
  background: rgba(0,0,0,.3);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.06);
}

.dash-metric__label { font-size: .7rem; color: rgba(255,255,255,.4); margin-bottom: .25rem; }

.dash-metric__value {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dash-metric--red    .dash-metric__value { color: #FCA5A5; }
.dash-metric--yellow .dash-metric__value { color: #FCD34D; }
.dash-metric--green  .dash-metric__value { color: #6EE7B7; }

.dash-bar-row { display: flex; align-items: center; gap: .6rem; margin-bottom: .4rem; }
.dash-bar-label { width: 90px; font-size: .7rem; color: rgba(255,255,255,.5); flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; }
.dash-bar-fill  { height: 100%; border-radius: 3px; }
.dash-bar-fill--red    { background: #E8272A; }
.dash-bar-fill--orange { background: #F97316; }
.dash-bar-fill--yellow { background: #F59E0B; }
.dash-bar-pct   { font-size: .65rem; color: rgba(255,255,255,.4); min-width: 28px; text-align: right; }

/* ── Feature Sections ────────────────────────────────────────────────────── */
.features { background: var(--off-white); }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 4rem;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; }
.feature-block--reverse .feature-block__visual { order: -1; }

.feature-block__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red-light);
  color: var(--red-dark);
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-block h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
}

.feature-block p {
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-block__link {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.feature-block__link:hover { gap: .5rem; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.feature-card__title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}

.suspect-list { list-style: none; }

.suspect-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .75rem;
  border-radius: 6px;
  margin-bottom: .35rem;
  font-size: .875rem;
  font-weight: 500;
}

.suspect-item--primary {
  background: #FEE2E2;
  color: var(--red-dark);
  border: 1px solid #FECACA;
}

.suspect-item--secondary {
  background: var(--yellow);
  color: #92400E;
  border: 1px solid #FDE68A;
}

.suspect-item--tertiary {
  background: var(--off-white);
  color: var(--muted);
  border: 1px solid var(--border);
}

.suspect-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .45rem;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.suspect-item--primary   .suspect-badge { background: var(--red);     color: white; }
.suspect-item--secondary .suspect-badge { background: var(--yellow-acc); color: white; }
.suspect-item--tertiary  .suspect-badge { background: var(--muted);   color: white; }

/* Wind compass card */
.compass-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.compass-ring {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
}

.compass-ring svg { width: 100%; height: 100%; }

.compass-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  margin-top: .75rem;
}

.compass-label {
  font-size: .75rem;
  padding: .3rem .6rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
}
.compass-label--hot    { background: #FEE2E2; color: var(--red-dark); }
.compass-label--warm   { background: var(--yellow); color: #92400E; }
.compass-label--cool   { background: #DBEAFE; color: #1E40AF; }
.compass-label--frozen { background: var(--off-white); color: var(--muted); }

/* ── CTA Section ─────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(232,39,42,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.cta-section__body {
  font-size: 1.125rem;
  color: rgba(255,255,255,.65);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.cta-section__fine {
  margin-top: 1rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 2.5rem;
  color: rgba(255,255,255,.4);
  font-size: .875rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__logo {
  font-weight: 800;
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  letter-spacing: -0.03em;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__links a {
  color: rgba(255,255,255,.35);
  font-size: .8125rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,255,255,.7); }

/* ── Wizard ──────────────────────────────────────────────────────────────── */
.wizard-page { background: var(--off-white); min-height: 100vh; }

.wizard-hero {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a0505 50%, #0f1117 100%);
  padding-block: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wizard-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,39,42,.15) 0%, transparent 70%);
  pointer-events: none;
}

.wizard-hero__inner { position: relative; z-index: 1; }

.wizard-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: .75rem;
}

.wizard-hero__sub {
  color: rgba(255,255,255,.6);
  font-size: 1.0625rem;
  max-width: 52ch;
  margin-inline: auto;
}

/* Progress bar */
.wizard-progress {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}

.wizard-progress__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wizard-progress__label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.wizard-progress__track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.wizard-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-radius: 3px;
  transition: width .4s ease;
}

/* Question card */
.wizard-body { padding-block: 3rem; }

.question-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin-inline: auto;
}

.question-card__num {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

.question-card h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: .5rem;
  color: var(--charcoal);
}

.question-card__hint {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.options { display: flex; flex-direction: column; gap: .75rem; }

.option {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  width: 100%;
  text-align: left;
  font-size: .9375rem;
  color: var(--charcoal);
  line-height: 1.4;
}

.option:hover {
  border-color: var(--red);
  background: #FFF5F5;
  transform: translateX(2px);
}

.option.selected {
  border-color: var(--red);
  background: var(--red-light);
  color: var(--red-dark);
}

.option__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
  position: relative;
}

.option.selected .option__icon {
  border-color: var(--red);
  background: var(--red);
}

.option.selected .option__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.option__text { flex: 1; }
.option__text strong { display: block; font-weight: 600; }
.option__aside {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
  margin-top: .2rem;
}

.option.selected .option__aside { color: var(--red-dark); opacity: .8; }

.question-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── Results Page ────────────────────────────────────────────────────────── */
.results-hero {
  padding-block: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.results-hero--low    { background: linear-gradient(160deg, #0a1520 0%, #0d2a1a 100%); }
.results-hero--medium { background: linear-gradient(160deg, #0a0a0a 0%, #1a1205 100%); }
.results-hero--high   { background: linear-gradient(160deg, #1a0505 0%, #0a0a0a 100%); }
.results-hero--nuclear { background: linear-gradient(160deg, #1a0000 0%, #2d0000 50%, #0a0a0a 100%); }

.score-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring__track { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 8; }
.score-ring__fill  { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset .8s ease; }
.score-ring--low    .score-ring__fill { stroke: #34D399; }
.score-ring--medium .score-ring__fill { stroke: #FBBF24; }
.score-ring--high   .score-ring__fill { stroke: #F97316; }
.score-ring--nuclear .score-ring__fill { stroke: var(--red); }

.score-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-ring__number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.score-ring__denom {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

.results-hero h1 {
  color: var(--white);
  margin-bottom: .75rem;
}

.results-hero__verdict {
  font-size: 1.125rem;
  color: rgba(255,255,255,.65);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: .5rem;
}

/* Results body */
.results-body { padding-block: 3rem; }

.results-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.results-card h3 {
  margin-bottom: .75rem;
}

.results-card p {
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.7;
  max-width: unset;
}

/* HubSpot form wrapper */
.hubspot-section {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a0505 100%);
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}

.hubspot-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(232,39,42,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hubspot-section__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.hubspot-section h2 {
  color: var(--white);
  margin-bottom: .75rem;
}

.hubspot-section__sub {
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
  max-width: 48ch;
  margin-inline: auto;
}

.hubspot-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  text-align: left;
}

/* HubSpot overrides */
.hs-form-field { margin-bottom: 1rem !important; }
.hs-form-field label { font-weight: 600 !important; font-size: .875rem !important; color: var(--charcoal) !important; margin-bottom: .35rem !important; display: block !important; }
.hs-input { width: 100% !important; padding: .625rem .875rem !important; border: 2px solid var(--border) !important; border-radius: var(--radius) !important; font-size: .9375rem !important; transition: border-color var(--transition) !important; outline: none !important; }
.hs-input:focus { border-color: var(--red) !important; }
.hs-button, .actions input[type=submit] {
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  padding: .875rem 2rem !important;
  border-radius: var(--radius) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background var(--transition) !important;
}
.hs-button:hover, .actions input[type=submit]:hover { background: var(--red-dark) !important; }
.hs-error-msgs { color: var(--red) !important; font-size: .8125rem !important; margin-top: .25rem !important; }
.submitted-message { text-align: center; padding: 2rem; color: var(--charcoal); font-weight: 600; font-size: 1.0625rem; }

/* ciroos redirect */
.ciroos-cta {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.ciroos-cta h3 { margin-bottom: .5rem; }
.ciroos-cta p  { color: var(--muted); font-size: .9375rem; margin-inline: auto; margin-bottom: 1.25rem; }

/* ── Badges / Pills ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .65rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}
.badge--red    { background: var(--red-light); color: var(--red-dark); }
.badge--yellow { background: var(--yellow);    color: #92400E; }
.badge--green  { background: #D1FAE5;          color: #065F46; }

/* ── Trademark superscript ───────────────────────────────────────────────── */
.tm {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 600;
  letter-spacing: 0;
}

/* ── Dividers ────────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 2rem;
}

/* ── Logo Pulse ──────────────────────────────────────────────────────────── */


/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.fade-up {
  animation: fadeUp .5s ease both;
}

.fade-up--delay-1 { animation-delay: .1s; }
.fade-up--delay-2 { animation-delay: .2s; }
.fade-up--delay-3 { animation-delay: .3s; }

/* ── Hamburger ───────────────────────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--charcoal);
  padding: .25rem .5rem;
  line-height: 1;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding-block: 3.5rem; }

  .nav__hamburger { display: block; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: .75rem 1.5rem 1rem;
    z-index: 99;
  }

  .nav__links--open {
    display: flex;
  }

  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: .6rem 0; font-size: 1rem; }

  .hero__grid {
    grid-template-columns: 1fr !important;
  }

  .hero { padding-block: 3.5rem 3rem; }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 3rem;
  }
  .feature-block--reverse .feature-block__visual { order: unset; }

  .hero__stat-bar { gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; }

  .question-card { padding: 1.5rem; }
  .question-nav { flex-direction: column-reverse; gap: .75rem; }
  .question-nav .btn { width: 100%; justify-content: center; }

  .results-card { padding: 1.5rem; }
  .hubspot-form-wrap { padding: 1.5rem; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
