/* ── Quiz variables & overrides ─────────────────────────────────────────── */
:root {
  --hot:    #E85D26;
  --warm:   #D4880A;
  --cold:   #78909C;
  --bg:     #FAFAF8;
  --card:   #FFFFFF;
  --text:   #1A1A1A;
  --muted:  #6B6B6B;
  --border: #E8E8E5;
  --radius: 14px;
}

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Quiz page has a light bg — keep nav dark at all times */
#nav {
  background: rgba(15,13,10,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .9rem 5vw;
  border-bottom: 1px solid rgba(255,87,34,.08);
}

.quiz-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 72px; /* clear fixed nav */
}

#app { width: 100%; flex: 1; display: flex; flex-direction: column; }

/* fade-in wrapper stretches to fill */
.fade-in { width: 100%; flex: 1; display: flex; flex-direction: column; }

/* Narrow centered wrapper — intro / gate / results */
.card-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 60px;
  width: 100%;
}
.card-wrap > .card { width: 100%; max-width: 600px; }

/* Full-width question section */
.question-page {
  flex: 1;
  width: 100%;
  background: var(--card);
  border-top: 1px solid var(--border);
}
.question-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 5vw 60px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
  min-height: 420px;
}
.question-inner--center {
  grid-template-columns: 1fr;
  max-width: 680px;
  text-align: center;
}

/* ── Persistent quiz chrome (strip + progress, never re-rendered) ─────────── */
.quiz-chrome {
  display: none; /* hidden until questions start */
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.quiz-chrome.visible { display: block; }
.qc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 52px;
}
.qc-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hot);
  white-space: nowrap;
  flex-shrink: 0;
}
.qc-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.qc-fill {
  height: 100%;
  background: linear-gradient(to right, var(--cold), var(--warm), var(--hot));
  border-radius: 3px;
  transition: width 0.45s ease;
  width: 0%;
}
.qc-counter {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

/* Card — used by intro / gate / results */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.05);
}

/* Intro */
.quiz-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 16px;
}
h1 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}
.intro-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 16px 8px;
  background: var(--bg);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-align: center;
}
.intro-stat-icon { font-size: 22px; line-height: 1; }
.intro-stat-value { font-size: 15px; font-weight: 800; color: var(--text); }
.intro-stat-label { font-size: 11px; color: var(--muted); }

.intro-bands {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.intro-band {
  flex: 1;
  padding: 12px 8px 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.intro-band-emoji { font-size: 22px; display: block; margin-bottom: 6px; }
.intro-band-cold { background: #EAF2FA; color: var(--cold); }
.intro-band-warm { background: #FEF5E7; color: var(--warm); }
.intro-band-hot  { background: #FEF0EA; color: var(--hot); }

/* Question */
.dim-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hot);
  background: #FEF0EA;
  padding: 4px 12px 4px 8px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.q-text {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--text);
}
.q-instruction {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}
.q-instruction::before { content: '↗ '; }

/* Option grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
  gap: 10px;
}
.opt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  color: var(--text);
  text-align: center;
  line-height: 1.35;
  transition: border-color 0.12s, background 0.12s, transform 0.1s, box-shadow 0.12s;
  font-family: inherit;
}
.opt-card:hover {
  border-color: var(--hot);
  background: #FFF9F7;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(232,93,38,0.12);
}
.opt-card.selected {
  border-color: var(--hot);
  background: #FFF3EE;
  color: var(--hot);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(232,93,38,0.15);
}
.opt-card:disabled { pointer-events: none; }
.opt-icon { font-size: 30px; line-height: 1; }
.opt-text { font-size: 13px; line-height: 1.4; }

/* Stars */
.phrase-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.phrase-prompt {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.phrase-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 30px;
  font-style: italic;
  color: var(--text);
}
.stars-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.star-row {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 6px;
}
.star {
  cursor: pointer;
  color: #D4D4D0;
  transition: color 0.1s, transform 0.1s;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.star svg { width: 38px; height: 38px; display: block; }
.star.active { color: var(--hot); }
.star:hover { transform: scale(1.18); }
.flame-scale-labels {
  display: flex;
  width: calc(5 * 38px + 4 * 8px); /* exact match to star-row */
  justify-content: space-between;
  margin-top: 4px;
}
.flame-scale-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Button — quiz-specific (overrides base.css .btn) */
.btn {
  display: inline-block;
  background: var(--hot);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.btn:hover { opacity: 0.87; transform: translateY(-1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-full { width: 100%; text-align: center; display: block; }

/* Mobile menu Book button keeps fire style from base.css */
.btn.btn-fire {
  background: linear-gradient(140deg, #FF5722 0%, #FF8C5A 100%);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.9rem 2.2rem;
}

/* Email gate */
h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.gate-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--muted);
}
.field input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  background: white;
  font-family: inherit;
}
.field input:focus { border-color: var(--hot); }
.field input.err { border-color: #D93025; }
.err-msg { font-size: 12px; color: #D93025; margin-top: 5px; display: none; }
.privacy { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* Results */
.score-block { text-align: left; margin-bottom: 10px; }
.band-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.pill-hot  { background: #FEF0EA; color: var(--hot); }
.pill-warm { background: #FEF5E7; color: var(--warm); }
.pill-cold { background: #EAF2FA; color: var(--cold); }

/* Horizontal cold → hot position track */
.band-temp-track {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 4px;
}
.btt-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}
.btt-rail {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--cold), #D4880A, var(--hot));
  position: relative;
}
.btt-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid white;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.25);
  transition: left 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 0%;
}
.btt-caption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .02em;
}

.band-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
  padding: 0;
  margin-bottom: 28px;
  margin-top: 14px;
}

/* ── Thermostat results layout ────────────────────────────────────────────── */
.results-hero {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.thermo-wrap { flex-shrink: 0; }
.thermo-svg  { display: block; overflow: visible; }
/* Animated liquid fill inside the SVG tube */
.thermo-tube-fill {
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Score panel sits right of thermostat */
.score-side { flex: 1; min-width: 0; }
.score-side .score-block { text-align: left; margin-bottom: 0; }
.score-side .band-desc   { text-align: left; padding: 0; }

/* ── Locked insights teaser ────────────────────────────────────────────── */
.locked-section {
  margin-top: 10px;
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  padding: 20px 20px 20px;
  background: #FAFAF8;
}
.locked-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.locked-lock-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.locked-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.locked-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.5;
}
.locked-preview {
  position: relative;
  margin-bottom: 14px;
}
.locked-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  filter: blur(3.5px);
  user-select: none;
  pointer-events: none;
}
.locked-card:last-child { margin-bottom: 0; }
.locked-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250,250,248,0) 0%, #FAFAF8 72%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.locked-badge {
  background: var(--text);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.locked-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 2px solid var(--hot);
  color: var(--hot);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}
.locked-cta:hover { background: var(--hot); color: #fff; }

.divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.insights-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.insight-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.insight-card:last-of-type { margin-bottom: 0; }
.insight-icon { font-size: 24px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.insight-dim {
  font-size: 11px;
  font-weight: 800;
  color: var(--hot);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.insight-text { font-size: 14px; line-height: 1.65; color: var(--text); }
.cta-block {
  text-align: center;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.cta-block p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.fade-in { animation: quizFadeIn 0.3s ease both; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Intro hero ──────────────────────────────────────────────────────────── */
.intro-hero {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.intro-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5vw 88px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 72px;
  align-items: start;
  width: 100%;
}
.intro-hero-left .quiz-eyebrow { margin-bottom: 20px; }
.intro-hero-left h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
}
.intro-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.intro-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.intro-checklist li::before {
  content: '✓';
  color: var(--hot);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.intro-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}
.intro-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
}
.btn-intro { font-size: 17px; padding: 17px 38px; }

/* Band cards – intro right col */
.ibc {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
}
.ibc:last-of-type { margin-bottom: 0; }
.ibc-emoji { font-size: 26px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.ibc-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ibc-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.ibc-hot  { background: #FEF0EA; border-color: rgba(232,93,38,.2); }
.ibc-hot .ibc-label  { color: var(--hot); }
.ibc-warm { background: #FEF5E7; border-color: rgba(212,136,10,.2); }
.ibc-warm .ibc-label { color: var(--warm); }
.ibc-cold { background: #EAF2FA; border-color: rgba(46,111,173,.2); }
.ibc-cold .ibc-label { color: var(--cold); }
.intro-hero-caption {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 14px;
  padding: 0 2px;
}

/* ── Results root + follow-on section ────────────────────────────────────── */
.results-root {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card-wrap--results {
  flex: 0 0 auto;
}
.results-next {
  width: 100%;
  background: #FEF8F1;
  border-top: 1px solid rgba(232,93,38,.12);
  padding: 72px 5vw 84px;
}
.results-next-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.rn-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 14px;
}
.rn-heading {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
}
.rn-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.rn-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--hot);
  text-decoration: none;
}
.rn-link:hover { text-decoration: underline; }
.rn-cta-card {
  background: var(--card);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 8px 32px rgba(0,0,0,.08);
}
.rn-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 10px;
}
.rn-cta-heading {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}
.rn-cta-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.rn-cta-btn { width: 100%; text-align: center; display: block; }
.retake-wrap {
  text-align: center;
  padding: 20px 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.btn-share-li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0A66C2;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  font-family: inherit;
}
.btn-share-li:hover { background: #004182; }
.btn-retake {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--muted);
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.btn-retake:hover { border-color: var(--hot); color: var(--hot); }
.rn-waitlist-card {
  margin-top: 16px;
  background: rgba(255,87,34,.06);
  border: 1px solid rgba(255,87,34,.2);
  border-radius: 16px;
  padding: 24px;
}
.rn-waitlist-btn {
  display: inline-block;
  margin-top: 12px;
  background: transparent;
  border: 1.5px solid rgba(255,87,34,.5);
  color: #FF5722;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.rn-waitlist-btn:hover { background: #FF5722; color: #fff; }
.rn-cta-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* Back button */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 18px;
  font-family: inherit;
  transition: color 0.15s;
  letter-spacing: normal;
  text-transform: none;
  border-radius: 0;
  box-shadow: none;
}
.btn-back:hover { color: var(--hot); }
.btn-back svg { flex-shrink: 0; }

@media (max-width: 860px) {
  .question-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 36px 5vw 48px;
  }
  .intro-hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 5vw 64px;
  }
  .intro-hero-left h1 { font-size: 34px; }
  .results-next-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .results-next { padding: 52px 5vw 64px; }
}

@media (max-width: 600px) {
  .options-grid { grid-template-columns: 1fr !important; }
  .card { padding: 28px 20px; }
  .card-wrap { padding: 32px 14px 48px; }
  h1 { font-size: 24px; }
  .intro-hero-left h1 { font-size: 28px; }
  .q-text { font-size: 20px; }
  .phrase-text { font-size: 19px; }
  .results-hero { gap: 20px; }
  .star svg { width: 28px; height: 28px; }
  .qc-inner { height: 44px; gap: 12px; }
  .qc-brand { font-size: 9px; letter-spacing: 0.1em; }
  .rn-cta-card { padding: 28px 20px; }
  .rn-heading { font-size: 22px; }
  .intro-hero-inner { padding: 40px 5vw 52px; }
}
