/* ============================================
   AI Buildout Advisor — Premium Construction SaaS
   Black / White / Steel / Blue
   ============================================ */

:root {
  /* Palette */
  --ink: #0A0E1A;
  --ink-2: #141927;
  --steel-900: #1A2332;
  --steel-700: #2A3344;
  --steel-500: #3A4556;
  --steel-400: #4F5A6E;
  --slate: #6B7889;
  --slate-300: #9AA3B2;
  --slate-200: #C7CDD7;
  --line: #E2E5EA;
  --line-soft: #EEF0F3;
  --bg: #F7F8FA;
  --paper: #FFFFFF;

  --blue: #2563EB;
  --blue-deep: #1E40AF;
  --blue-light: #DBEAFE;
  --blue-glow: rgba(37, 99, 235, 0.18);

  --green: #059669;
  --amber: #D97706;
  --red: #DC2626;

  /* Type */
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --container: 1200px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.04), 0 1px 3px rgba(10, 14, 26, 0.06);
  --shadow: 0 4px 12px rgba(10, 14, 26, 0.06), 0 2px 4px rgba(10, 14, 26, 0.04);
  --shadow-lg: 0 20px 48px -12px rgba(10, 14, 26, 0.18), 0 8px 16px -4px rgba(10, 14, 26, 0.06);
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.12), 0 12px 32px -8px rgba(37, 99, 235, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

::selection { background: var(--ink); color: #fff; }

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow-muted {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}

/* === Layout === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: var(--shadow-glow);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-glow);
}
.btn-blue:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

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

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

.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* === Nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  position: relative;
}
.brand-mark svg { width: 18px; height: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--steel-500);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-burger { display: inline-flex; }
}

/* === Hero === */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, #000 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  right: -200px; top: -200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 80px 0 64px; }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 4px;
  background: var(--blue);
  opacity: 0.3;
}
.hero p.lede {
  font-size: 19px;
  color: var(--slate-300);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 18px; height: 18px;
  background: var(--blue);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #fff;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--slate-300);
  font-size: 13px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .check {
  color: var(--blue);
  font-weight: 700;
}

/* Hero card / report mockup */
.report-mockup {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #F7F8FA 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 32px 80px -20px rgba(0,0,0,0.5),
    0 0 60px rgba(37, 99, 235, 0.15);
  color: var(--ink);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.report-mockup-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.report-mockup-head .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
}
.report-mockup-head h3 { font-size: 20px; margin-top: 4px; }
.urgency-pill {
  background: var(--ink);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
}
.report-mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.mini-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}
.mini-stat .v {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.mini-stat .l {
  font-size: 10px;
  color: var(--slate);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mockup-bar {
  height: 8px;
  background: var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
  margin: 6px 0 14px;
}
.mockup-bar > div {
  height: 100%;
  background: var(--blue);
  border-radius: 999px;
}
.opp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}
.opp-row:first-of-type { border-top: 0; }
.opp-num {
  width: 24px; height: 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.opp-row .t {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--steel-700);
}
.opp-row .v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

/* === Section headings === */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--slate);
}

/* === Industry cards === */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--blue-glow) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.industry-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.industry-card:hover::after { opacity: 1; }
.industry-icon {
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.industry-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.industry-card p {
  color: var(--slate);
  font-size: 14px;
  margin: 0 0 18px;
  line-height: 1.55;
}
.industry-card .link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* === How it works === */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .how-grid { grid-template-columns: 1fr; } }
.how-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.how-step .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.how-step h3 { font-size: 20px; margin-bottom: 10px; }
.how-step p { color: var(--slate); font-size: 14px; line-height: 1.6; }

/* === Stats / proof === */
.stats-band {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat-card .v {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .v .unit { color: var(--blue); }
.stat-card .l {
  color: var(--slate-300);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* === Testimonials === */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--blue);
  line-height: 0.6;
  margin-bottom: 8px;
}
.testi-card blockquote {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--steel-700);
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.testi-author .name { font-weight: 600; font-size: 14px; }
.testi-author .role { font-size: 12px; color: var(--slate); }
.placeholder-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--line-soft);
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* === CTA Band === */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
}
.cta-inner p { color: var(--slate-300); font-size: 17px; margin-bottom: 32px; }

/* === Footer === */
.footer {
  background: var(--ink);
  color: var(--slate-300);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h4 {
  color: #fff;
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer .brand-mark { background: #fff; }
.footer .brand-mark svg path { fill: var(--ink); }
.footer .brand { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--slate);
  flex-wrap: wrap;
  gap: 12px;
}

/* === Assessment Wizard === */
.wizard {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.wizard-bar {
  height: 4px;
  background: var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 48px;
}
.wizard-bar > div {
  height: 100%;
  background: var(--blue);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.wizard-card {
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.wizard h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.wizard .subq {
  color: var(--slate);
  font-size: 16px;
  margin-bottom: 36px;
}
.options-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}
.options-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.options-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) {
  .options-grid.cols-2, .options-grid.cols-3 { grid-template-columns: 1fr; }
}
.option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
  font-weight: 500;
  font-size: 15px;
  color: var(--steel-700);
  width: 100%;
}
.option:hover {
  border-color: var(--steel-500);
  background: var(--bg);
}
.option.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.option .check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #fff;
  color: transparent;
  transition: all 0.15s ease;
  font-weight: 700;
}
.option.active .check {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.option .label-text { flex: 1; }
.option .desc {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--slate);
  margin-top: 2px;
}
.option.active .desc { color: var(--slate-200); }

textarea.text-input, input.text-input {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
textarea.text-input { min-height: 100px; }
textarea.text-input:focus, input.text-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-glow);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}
.wizard-actions .skip {
  font-size: 13px;
  color: var(--slate);
  background: transparent;
  border: 0;
  padding: 8px;
}

/* === Lead form === */
.lead-form {
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--steel-700);
  margin-bottom: 6px;
}
.field .hint { font-size: 12px; color: var(--slate); margin-top: 4px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
select.text-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236B7889' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* === Loading === */
.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 0 24px;
}
.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: spin 0.9s linear infinite;
  margin-bottom: 24px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-screen h2 { font-size: 24px; margin-bottom: 8px; }
.loading-screen p { color: var(--slate); max-width: 420px; }

.loader-steps {
  margin-top: 24px;
  text-align: left;
}
.loader-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--slate);
  font-size: 14px;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.loader-step.active { color: var(--ink); opacity: 1; }
.loader-step.done { color: var(--green); opacity: 1; }
.loader-step .icon {
  width: 18px; height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
}
.loader-step.done .icon { background: var(--green); border-color: var(--green); color: #fff; }

/* === Results dashboard === */
.results {
  background: var(--bg);
  min-height: 100vh;
  padding-bottom: 80px;
}
.results-hero {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}
.results-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Decorative grid overlay only — must not intercept clicks on the
     hero's Download PDF / Book a Call buttons underneath it. */
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.results-hero-inner { position: relative; }
.results-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
  max-width: 760px;
  letter-spacing: -0.02em;
}
.results-hero .summary {
  color: var(--slate-200);
  font-size: 16.5px;
  max-width: 760px;
  line-height: 1.6;
}
.results-content {
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 920px) { .metric-grid { grid-template-columns: repeat(2, 1fr); } }
.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.metric-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.metric-card .value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-card .sub {
  font-size: 13px;
  color: var(--slate);
  margin-top: 6px;
}
.metric-card.highlight {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.metric-card.highlight .label { color: var(--slate-300); }
.metric-card.highlight .value { color: #fff; }
.metric-card.highlight .sub { color: var(--slate-200); }

.urgency-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .urgency-card { grid-template-columns: 1fr; text-align: center; } }
.urgency-meter {
  position: relative;
  width: 200px; height: 200px;
}
.urgency-meter svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.urgency-meter .meter-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  flex-direction: column;
  text-align: center;
}
.urgency-meter .score {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.urgency-meter .of {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate);
  margin-top: 4px;
  letter-spacing: 0.1em;
}
.urgency-text h3 { font-size: 22px; margin-bottom: 10px; }
.urgency-text p { color: var(--steel-500); font-size: 15px; }

.section-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.section-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.section-card .section-sub {
  color: var(--slate);
  margin-bottom: 28px;
}

.opp-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 14px;
  background: #fff;
  transition: all 0.2s ease;
}
.opp-card:hover {
  border-color: var(--steel-500);
  box-shadow: var(--shadow);
}
.opp-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.opp-priority {
  width: 36px; height: 36px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.opp-card.priority-1 .opp-priority { background: var(--blue); }
.opp-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg);
  color: var(--steel-500);
  border: 1px solid var(--line);
}
.tag.tag-effort-low { background: #ECFDF5; color: var(--green); border-color: #A7F3D0; }
.tag.tag-effort-medium { background: #FFFBEB; color: var(--amber); border-color: #FCD34D; }
.tag.tag-effort-high { background: #FEF2F2; color: var(--red); border-color: #FECACA; }
.opp-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.opp-desc {
  color: var(--steel-500);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.opp-tools {
  font-size: 13px;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 2px solid var(--line);
}
.opp-impact-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  align-items: center;
}
.impact-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
}
.impact-pill .v { font-size: 18px; color: var(--ink); }
.impact-pill .l { font-size: 12px; color: var(--slate); font-weight: 500; }
.impact-pill.green .v { color: var(--green); }
.impact-pill.blue .v { color: var(--blue); }
.opp-why {
  margin-left: auto;
  font-size: 12px;
  color: var(--slate);
  font-style: italic;
  max-width: 300px;
  text-align: right;
}
@media (max-width: 720px) {
  .opp-why { margin-left: 0; text-align: left; max-width: none; }
  .opp-impact-row { gap: 12px; }
}

/* Roadmap */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .roadmap-grid { grid-template-columns: 1fr; } }
.phase-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.phase-card .phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.phase-card.p1 .phase-tag { color: var(--green); border-color: #A7F3D0; }
.phase-card.p2 .phase-tag { color: var(--blue); border-color: #BFDBFE; }
.phase-card.p3 .phase-tag { color: var(--blue-deep); border-color: #BFDBFE; }
.phase-card h3 { font-size: 16px; margin-bottom: 14px; }
.phase-card ul { list-style: none; padding: 0; margin: 0; }
.phase-card li {
  font-size: 13.5px;
  color: var(--steel-500);
  padding: 8px 0 8px 22px;
  position: relative;
  line-height: 1.5;
}
.phase-card li::before {
  content: '→';
  position: absolute;
  left: 0; top: 8px;
  color: var(--blue);
  font-weight: 700;
}

/* Risks */
.risk-list { list-style: none; padding: 0; margin: 0; }
.risk-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--steel-500);
  line-height: 1.55;
}
.risk-list li:first-child { border-top: 0; }
.risk-icon {
  width: 28px; height: 28px;
  background: #FEF2F2;
  color: var(--red);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Results CTA */
.results-cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.results-cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.results-cta h2 { color: #fff; font-size: 30px; margin-bottom: 12px; position: relative; }
.results-cta p { color: var(--slate-200); font-size: 16px; margin-bottom: 28px; position: relative; }
.results-cta-row { position: relative; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Charts */
.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 860px) { .chart-grid { grid-template-columns: 1fr; } }
.chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.chart-card h3 { font-size: 16px; margin-bottom: 4px; }
.chart-card .chart-sub { font-size: 13px; color: var(--slate); margin-bottom: 20px; }

/* Industry pages */
.industry-hero {
  background: var(--ink);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.industry-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.industry-hero-inner { position: relative; max-width: 800px; }
.industry-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}
.industry-hero p { color: var(--slate-200); font-size: 19px; line-height: 1.55; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
}
.benefit-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  color: var(--blue);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 18px; margin-bottom: 8px; }
.benefit-card p { color: var(--slate); font-size: 14px; line-height: 1.55; }

/* Admin */
.admin-shell { background: var(--bg); min-height: 100vh; }
.admin-nav {
  background: var(--ink);
  color: #fff;
  padding: 16px 0;
}
.admin-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 860px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
.admin-table-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.admin-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table thead th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.admin-table tr:hover { background: var(--bg); }
.admin-table .lead-name { font-weight: 600; }
.admin-table .lead-email { color: var(--slate); font-size: 13px; }
.status-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg);
  color: var(--steel-500);
}
.status-badge.s-new { background: var(--blue-light); color: var(--blue-deep); }
.status-badge.s-contacted { background: #FEF3C7; color: var(--amber); }
.status-badge.s-qualified { background: #ECFDF5; color: var(--green); }
.status-badge.s-closed { background: #F3F4F6; color: var(--steel-500); }

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--ink);
  padding: 24px;
}
.login-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}
.login-card h1 { font-size: 24px; margin-bottom: 6px; }
.login-card p { color: var(--slate); margin-bottom: 24px; font-size: 14px; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,14,26,0.55);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 100;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal h3 { font-size: 22px; margin-bottom: 8px; }

/* Animations on view */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-up.delay-1 { animation-delay: 0.08s; }
.fade-up.delay-2 { animation-delay: 0.16s; }
.fade-up.delay-3 { animation-delay: 0.24s; }
.fade-up.delay-4 { animation-delay: 0.32s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.items-center { align-items: center; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  font-size: 14px;
  font-weight: 500;
  animation: toastIn 0.3s ease;
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============================================
   Phase E — Report page (Results.js) + Industry
   pages (Industry.js). These files were rebuilt
   in the 4-day-plan refresh with a new class set;
   the definitions live here.
   ============================================ */

/* --- Loader pulse (Results loading + app boot) --- */
.loader-pulse {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--blue);
  margin: 0 auto 20px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(0.65); opacity: 0.35; }
  50% { transform: scale(1); opacity: 1; }
}
.loader-elapsed {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--slate);
}

/* --- Error / empty card (Results, Industry fallback, 404) --- */
.error-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.error-card h2 { font-size: 24px; margin-bottom: 10px; }
.error-card p { color: var(--slate); margin-bottom: 24px; }

/* --- Buttons added for the report / industry pages --- */
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
/* Primary buttons sit on dark bands in the report — make them readable. */
.results-hero-actions .btn-primary,
.results-cta-actions .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.results-hero-actions .btn-primary:hover,
.results-cta-actions .btn-primary:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* --- Shared section heading block --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.section-header .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
}
.section-header.light h2 { color: #fff; }
.section-header.light .eyebrow { color: var(--blue); }
.section-sub {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
}
.section-header.light .section-sub { color: var(--slate-300); }

.section-dark {
  background: var(--ink);
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }

/* --- Report hero --- */
.results-hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.results-hero-title .accent { color: var(--blue); }
.results-hero-summary {
  color: var(--slate-200);
  font-size: 16.5px;
  max-width: 760px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.results-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Metric cards (4-day-plan format) --- */
.metric-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.metric-icon svg { width: 20px; height: 20px; }
.metric-card.highlight .metric-icon { background: rgba(255,255,255,0.1); color: #fff; }
.metric-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.metric-card.highlight .metric-value { color: #fff; }
.metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
}
.metric-card.highlight .metric-label { color: var(--slate-300); }
.metric-sublabel {
  font-size: 13px;
  color: var(--slate);
  margin-top: 6px;
}
.metric-card.highlight .metric-sublabel { color: var(--slate-200); }

/* --- Urgency card (stacked, centered) --- */
.urgency-card {
  display: block;
  text-align: center;
  grid-template-columns: none;
}
.urgency-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.urgency-card-head h3 { font-size: 20px; }
.urgency-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.urgency-meter { margin: 0 auto; }
.urgency-text {
  color: var(--steel-500);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
  margin: 20px auto 0;
}

/* --- Recommended-tool cards --- */
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .opp-grid { grid-template-columns: 1fr; } }
.opp-grid .opp-card { margin-bottom: 0; }
.opp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.opp-category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
/* "Pick N" pill — override the fixed 36px square */
.opp-card .opp-priority {
  width: auto;
  height: auto;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.opp-impact-row .impact-pill {
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--steel-500);
}
.opp-impact-row .impact-pill svg { width: 13px; height: 13px; }
.impact-pill.effort-low { background: #ECFDF5; color: var(--green); border-color: #A7F3D0; }
.impact-pill.effort-med { background: #FFFBEB; color: var(--amber); border-color: #FCD34D; }
.impact-pill.effort-high { background: #FEF2F2; color: var(--red); border-color: #FECACA; }
.impact-pill.blue { color: var(--blue); }
.impact-pill.green { color: var(--green); }
.impact-pill.steel { color: var(--steel-500); }

/* --- 4-day plan cards --- */
.roadmap-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .roadmap-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .roadmap-grid-4 { grid-template-columns: 1fr; } }
.phase-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.phase-title { font-size: 16px; margin-bottom: 8px; }
.phase-desc {
  font-size: 13.5px;
  color: var(--steel-500);
  line-height: 1.55;
}

/* --- Risk card + competitive context --- */
.section-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 16px;
}
.section-card-title svg { width: 20px; height: 20px; }
.risk-card { border-left: 4px solid var(--amber); }
.context-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.context-card .eyebrow { display: block; margin-bottom: 10px; }
.context-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel-500);
  margin: 0;
}
.results-cta-actions {
  position: relative;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   Industry pages (Industry.js)
   ============================================ */
.industry-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
}
.industry-hero-content { flex: 1; }
@media (max-width: 860px) {
  .industry-hero-inner { display: block; }
}
.eyebrow.light {
  display: inline-block;
  margin-bottom: 16px;
}
.industry-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}
.industry-hero-icon {
  flex-shrink: 0;
  width: 180px; height: 180px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--blue);
}
.industry-hero-icon svg { width: 72px; height: 72px; }
@media (max-width: 860px) { .industry-hero-icon { display: none; } }
.industry-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.industry-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.industry-stat-label {
  font-size: 13px;
  color: var(--slate-300);
  margin-top: 6px;
  max-width: 170px;
}
.how-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.section-light { background: var(--bg); }
/* Industry CTA band has no inner wrapper — center its content. */
.cta-band .container { text-align: center; }
.cta-band .container > h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 14px;
}
.cta-band .container > p {
  color: var(--slate-300);
  font-size: 17px;
  margin-bottom: 28px;
}
