/* ============================================================
   VOICES Leadership Alignment Assessment
   Design: clean, bold, grounded, masculine, modern
   ============================================================ */

/* ---------- RESET + BASE ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

:root {
  /* Core palette — grounded navy + crimson accent */
  --navy-900: #0A1628;
  --navy-800: #14233D;
  --navy-700: #1E3152;
  --navy-600: #2A4068;
  --crimson: #B22234;     /* American flag red */
  --crimson-dark: #8E1A29;
  --ink: #0D1321;
  --charcoal: #2A2F3A;
  --slate: #4A5568;
  --slate-light: #718096;
  --line: #D9DDE3;
  --line-soft: #EAEDF2;
  --bg: #F7F8FA;
  --bg-alt: #FFFFFF;
  --cream: #FBF8F3;

  --green: #2F855A;
  --amber: #C05621;
  --red: #9B2C2C;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(13,19,33,0.06), 0 1px 3px rgba(13,19,33,0.04);
  --shadow: 0 4px 12px rgba(13,19,33,0.08), 0 1px 3px rgba(13,19,33,0.06);
  --shadow-lg: 0 20px 40px rgba(13,19,33,0.12);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: none;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--charcoal);
  max-width: 60ch;
  line-height: 1.55;
}

.subtle { color: var(--slate); }
.small { font-size: 0.875rem; }

a { color: var(--crimson); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.narrow { max-width: 720px; }
.center { text-align: center; }

/* ---------- HEADER ---------- */
.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  border-left: 3px solid var(--crimson);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}

@media (max-width: 600px) {
  .hero-logo { width: 88px; height: 88px; }
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.nav-link:hover { color: var(--ink); text-decoration: none; border-color: var(--crimson); }
.nav-link.active { border-color: var(--crimson); color: var(--ink); }

/* ---------- VIEWS ---------- */
.view { display: none; }
.view.active { display: block; }

/* ---------- HERO ---------- */
.hero {
  background:
    linear-gradient(180deg, #0A1628 0%, #14233D 100%);
  color: #fff;
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--crimson);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(178,34,52,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 780px; }

.hero .display {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero .lede { color: #C9D1DC; margin-bottom: 2rem; }

.hero .eyebrow { color: #FF6B7F; }

.hero .meta {
  margin-top: 1.5rem;
  color: #8A97AB;
  font-size: 0.9rem;
}

/* ---------- BANDS ---------- */
.band {
  padding: 4.5rem 0;
  background: var(--bg-alt);
}

.band + .band { border-top: 1px solid var(--line); }

.band-dark {
  background: var(--navy-900);
  color: #E6EBF2;
}

.band-dark h3 { color: #fff; }
.band-dark p { color: #B6C0CF; }

/* ---------- PILLARS GRID ---------- */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.pillar {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.pillar:hover {
  border-color: var(--crimson);
  transform: translateY(-2px);
}

.pillar .letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.pillar h3 { margin-bottom: 0.4rem; }
.pillar p { margin: 0; font-size: 0.95rem; }

/* ---------- TWO COLUMN ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line-soft);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--crimson);
  transform: rotate(45deg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  min-height: 48px;
  line-height: 1;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}

.btn-primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary:disabled {
  background: var(--slate-light);
  border-color: var(--slate-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.btn-ghost:hover {
  border-color: var(--ink);
  background: #fff;
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn.full { width: 100%; }

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cta-row.between { justify-content: space-between; }
.cta-row.center { justify-content: center; }

/* ---------- FORMS ---------- */
.form-stack { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .row-2 { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.req { color: var(--crimson); }
.opt { color: var(--slate-light); font-weight: 400; font-size: 0.8rem; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(178,34,52,0.15);
}

.field.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}

.field.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--crimson);
  flex-shrink: 0;
  cursor: pointer;
}

.field.checkbox label {
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.45;
  cursor: pointer;
}

.disclosure {
  background: var(--cream);
  border-left: 4px solid var(--crimson);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
}

.disclosure-head {
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.disclosure p { margin: 0; font-size: 0.92rem; color: var(--charcoal); }

.error-msg {
  color: var(--red);
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

/* ---------- PROGRESS ---------- */
.progress-wrap { margin: 2.5rem 0 1.5rem; }

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

#progress-label { color: var(--ink); }

.progress-bar {
  height: 6px;
  background: var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--crimson);
  width: 0;
  transition: width 0.4s ease;
}

/* ---------- QUESTION CARD ---------- */
.question-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.q-category {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.8rem;
}

.q-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 2rem;
}

.likert {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}

@media (max-width: 640px) {
  .likert { grid-template-columns: 1fr; gap: 0.5rem; }
}

.likert-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.5rem;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all 0.12s ease;
  min-height: 90px;
}

@media (max-width: 640px) {
  .likert-option { flex-direction: row; justify-content: flex-start; gap: 0.75rem; min-height: 0; padding: 0.85rem 1rem; text-align: left; }
}

.likert-option input { position: absolute; opacity: 0; pointer-events: none; }

.likert-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.2rem;
}

.likert-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.2;
}

@media (max-width: 640px) {
  .likert-num { margin-bottom: 0; font-size: 1.1rem; }
  .likert-label { font-size: 0.9rem; }
}

.likert-option:hover {
  border-color: var(--navy-700);
  background: #FAFBFC;
}

.likert-option.selected {
  border-color: var(--crimson);
  background: rgba(178,34,52,0.05);
}

.likert-option.selected .likert-num,
.likert-option.selected .likert-label {
  color: var(--crimson);
}

/* ---------- SUBMITTING / SPINNER ---------- */
#view-submitting { padding: 6rem 0; }

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--line);
  border-top-color: var(--crimson);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- RESULTS ---------- */
#view-results { padding: 3rem 0 5rem; }

.results-header { margin-bottom: 2.5rem; }

.results-overall {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--navy-900);
  color: #fff;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--crimson);
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .results-overall { grid-template-columns: 1fr; text-align: center; }
}

.score-big { text-align: center; }

.score-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.score-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8A97AB;
  margin-top: 0.4rem;
}

.score-band-wrap { }

.score-band {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.band-strong { background: #2F855A; color: #fff; }
.band-stable { background: #3182CE; color: #fff; }
.band-attention { background: #C05621; color: #fff; }
.band-critical { background: #9B2C2C; color: #fff; }

#overall-interp { color: #B6C0CF; margin: 0; max-width: 60ch; }

.email-status {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.email-status.ok { background: #F0FFF4; color: #22543D; border: 1px solid #C6F6D5; }
.email-status.err { background: #FFF5F5; color: #742A2A; border: 1px solid #FED7D7; }

.section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--line);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.result-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--slate);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.result-card.band-strong { border-left-color: #2F855A; }
.result-card.band-stable { border-left-color: #3182CE; }
.result-card.band-attention { border-left-color: #C05621; }
.result-card.band-critical { border-left-color: #9B2C2C; }

.result-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.result-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.result-score { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--crimson); }

.result-meter {
  height: 6px;
  background: var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
  margin: 0.75rem 0 0.9rem;
}

.result-fill { height: 100%; background: var(--crimson); }
.band-strong .result-fill { background: #2F855A; }
.band-stable .result-fill { background: #3182CE; }
.band-attention .result-fill { background: #C05621; }
.band-critical .result-fill { background: #9B2C2C; }

.result-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.result-pill.band-strong { background: #C6F6D5; color: #22543D; }
.result-pill.band-stable { background: #BEE3F8; color: #2A4365; }
.result-pill.band-attention { background: #FEEBC8; color: #7B341E; }
.result-pill.band-critical { background: #FED7D7; color: #742A2A; }

.result-interp {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: 0.4rem 0 0.6rem;
}

.result-implication {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
}

.result-implication strong { color: var(--ink); }

/* ---------- CALLOUTS ---------- */
.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}

.callout h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--crimson);
  display: inline-block;
}

.callout ul { padding-left: 1.2rem; margin: 0; }
.callout li { margin-bottom: 0.5rem; color: var(--charcoal); }

.callout-dark {
  background: var(--navy-800);
  color: #E6EBF2;
  border: none;
}
.callout-dark h3 { color: #fff; }
.callout-dark li { color: #C9D1DC; }

.cta-banner {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: #fff;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  margin: 2.5rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h3 { color: #fff; margin-bottom: 0.25rem; font-size: 1.4rem; }
.cta-banner p { margin: 0; color: #FFE5E8; max-width: 50ch; }

.cta-banner .btn-primary {
  background: #fff;
  color: var(--crimson-dark);
  border-color: #fff;
}
.cta-banner .btn-primary:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---------- CONTACT PAGE ---------- */
.contact-layout { padding: 4rem 0; }

.contact-info { margin-top: 2rem; }

.contact-info > div {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.contact-info > div:last-child { border-bottom: 1px solid var(--line); }

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin: 0 0 0.25rem;
}

.contact-info p:not(.info-label) { margin: 0; font-size: 1.05rem; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-900);
  color: #B6C0CF;
  padding: 2.25rem 0;
  margin-top: 3rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer strong { color: #fff; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.03em; }
.site-footer .subtle { color: #8A97AB; }

/* ---------- RESULTS — NEW DETAILED LAYOUT ---------- */

.results-overall-interp {
  color: #C9D1DC;
  margin: 0;
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.section-intro {
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

/* Two-column results layout for strengths + growth */
.two-col-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 820px) {
  .two-col-results { grid-template-columns: 1fr; }
}

.callout-green {
  background: #fff;
  border: 1px solid #C6F6D5;
  border-left: 5px solid #2F855A;
}
.callout-green h3 {
  color: #22543D;
  border-bottom-color: #2F855A;
}

.callout-amber {
  background: #fff;
  border: 1px solid #FEEBC8;
  border-left: 5px solid #C05621;
}
.callout-amber h3 {
  color: #7B341E;
  border-bottom-color: #C05621;
}

.callout-coach {
  background: var(--cream);
  border: 1px solid #E8D9B9;
  border-left: 5px solid var(--crimson);
}

/* Strengths/Growth items */
.sg-item {
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
}
.sg-item:first-child { border-top: none; padding-top: 0; }

.sg-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.sg-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.sg-score {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--crimson);
}

.sg-text {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Category cards — full detail (stacked, not grid) */
.results-grid-stacked {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.result-card-full {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--slate);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
  .result-card-full { padding: 1.25rem 1.25rem; }
}

.result-card-full.band-strong { border-left-color: #2F855A; }
.result-card-full.band-stable { border-left-color: #3182CE; }
.result-card-full.band-attention { border-left-color: #C05621; }
.result-card-full.band-critical { border-left-color: #9B2C2C; }

.rcf-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.rcf-cat {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.rcf-blurb {
  color: var(--slate);
  font-size: 0.92rem;
}

.rcf-score-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .rcf-score-wrap { align-items: flex-start; flex-direction: row; align-items: center; }
}

.rcf-score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--crimson);
}

.result-card-full.band-strong .rcf-score { color: #2F855A; }
.result-card-full.band-stable .rcf-score { color: #3182CE; }
.result-card-full.band-attention .rcf-score { color: #C05621; }
.result-card-full.band-critical .rcf-score { color: #9B2C2C; }

.rcf-meter {
  height: 6px;
  background: var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.rcf-meter-fill {
  height: 100%;
  background: var(--crimson);
}
.result-card-full.band-strong .rcf-meter-fill { background: #2F855A; }
.result-card-full.band-stable .rcf-meter-fill { background: #3182CE; }
.result-card-full.band-attention .rcf-meter-fill { background: #C05621; }
.result-card-full.band-critical .rcf-meter-fill { background: #9B2C2C; }

.rcf-meaning {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
  padding: 0.75rem 1rem;
  background: #FAFBFC;
  border-left: 3px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.rcf-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0 1.5rem;
}

@media (max-width: 640px) {
  .rcf-columns { grid-template-columns: 1fr; gap: 1rem; }
}

.rcf-subhead {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 0.6rem;
}

.rcf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rcf-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--charcoal);
  border-bottom: 1px dashed var(--line-soft);
}

.rcf-list li:last-child { border-bottom: none; }

.rcf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
}

.result-card-full.band-strong .rcf-list li::before { background: #2F855A; }
.result-card-full.band-stable .rcf-list li::before { background: #3182CE; }
.result-card-full.band-attention .rcf-list li::before { background: #C05621; }
.result-card-full.band-critical .rcf-list li::before { background: #9B2C2C; }

.rcf-actions {
  padding-left: 1.4rem;
  margin: 0.5rem 0 0;
}

.rcf-actions li {
  padding: 0.5rem 0 0.5rem 0.3rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line-soft);
}

.rcf-actions li:last-child { border-bottom: none; }

.rcf-actions li::marker {
  color: var(--crimson);
  font-weight: 700;
}

/* Stuck section items */
.stuck-item {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stuck-item:first-of-type { border-top: none; }

.stuck-item h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.stuck-item p { color: #C9D1DC; font-size: 0.95rem; margin-bottom: 0.75rem; }

.stuck-label {
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF6B7F !important;
  margin-bottom: 0.4rem !important;
}

.stuck-item ul { margin-top: 0.25rem; }

/* 30-day plan */
.plan-head {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.plan-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* Coaching section blocks */
.coach-block {
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--crimson);
}

.coach-block h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.coach-block p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--charcoal); }

.coach-close {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal);
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .site-footer, .cta-banner, .cta-row, .email-status { display: none !important; }
  body { background: #fff; }
  .results-overall { background: #fff; color: var(--ink); border: 2px solid var(--ink); }
  .score-number, .results-overall h2 { color: var(--ink); }
  .callout-dark { background: #fff; color: var(--ink); border: 1px solid var(--line); }
  .callout-dark h3, .callout-dark li { color: var(--ink); }
}
