/* Kangsol - Premium Redesign Stylesheet. Palette + type per brand/colors-and-fonts.md */

:root {
  /* Color Palette - High-Trust Executive Light Theme */
  --charcoal: #F8FAFC;      /* Crisp, executive porcelain base background (No black) */
  --ink: #F1F5F9;           /* Secondary soft section tint */
  --slate: #FFFFFF;         /* Elevated pure white card surface */
  --bone: #0F172A;          /* High-contrast deep slate primary text */
  --ash: #475569;           /* Legible slate secondary/muted text */
  --ochre: #D97706;         /* Confident warm amber/ochre primary action accent */
  --ember: #B45309;         /* Accent hover state */
  --eucalypt: #059669;      /* Emerald trust/success ticks */
  --line: #E2E8F0;          /* Crisp hairline card & surface borders */
  --sep: #E2E8F0;           /* Section boundary borders */
  --line-active: #F59E0B;   /* Active border accent */
  --focus: #D97706;
  --error: #DC2626;
  --success: #10B981;

  /* Typography */
  --sans: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;

  /* Font Sizes */
  --fs-label: 0.8125rem;
  --fs-body: 1.0625rem;
  --fs-lede: 1.25rem;
  --fs-h3: 1.5rem;
  --fs-h2: 2.25rem;
  --fs-h1: 3.5rem;

  /* Spacing Scale (Generous, Intentional Gapping) */
  --space-1: 12px;
  --space-2: 20px;
  --space-3: 32px;
  --space-4: 48px;
  --space-6: 64px;
  --space-8: 96px;
  --space-12: 128px;
  --space-16: 160px;

  /* Layout */
  --maxw: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
  --section-pad: clamp(48px, 5vw, 64px);
  --transition: color .16s ease, background-color .16s ease, border-color .16s ease, opacity .16s ease, transform .16s ease, box-shadow .16s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--bone);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--bone);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, var(--fs-h1));
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, var(--fs-h2));
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.3;
}

p {
  color: var(--ash);
}

strong {
  color: var(--bone);
  font-weight: 600;
}

a {
  color: var(--ochre);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--ember);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-block p a,
.faq p a,
.contact p a,
.reco p a,
.utility-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* Alternate a very subtle surface tint so section boundaries read clearly */
main > section:nth-child(even) {
  background: #F1F5F9;
}

/* ---------- Reusable Components ---------- */
.kicker {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  display: block;
  margin-bottom: var(--space-2);
}

.lede {
  font-size: var(--fs-lede);
  line-height: 1.6;
  color: var(--ash);
  max-width: 54ch;
  margin-bottom: var(--space-3);
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--ochre), var(--ember));
  z-index: 100;
  pointer-events: none;
  transform-origin: left;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: -0.01em;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--ochre);
  color: #FFFFFF;
}

.btn-primary:hover {
  /* Re-declare color: the global a:hover rule otherwise turns the label
     ember-on-ember and the text disappears. */
  color: #FFFFFF;
  background: var(--ember);
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.25);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--bone);
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

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

/* Dominant primary CTA (hero + CTA bands) */
.btn-lg {
  font-size: 1.1rem;
  padding: 18px 38px;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 10px 28px rgba(217, 119, 6, 0.18);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}

header.site.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

header.site .bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--space-3);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  transition: var(--transition);
}

header.site.scrolled .bar {
  padding: 8px var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bone);
}

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

.brand svg {
  width: 34px;
  height: 34px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand:hover svg {
  transform: rotate(15deg) scale(1.05);
}

.brand .name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-right: -0.28em;
}

nav.links {
  display: flex;
  align-items: center;
  gap: 36px; /* Generous breathing room */
  white-space: nowrap;
}

nav.links > a {
  color: var(--ash);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

nav.links > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ochre);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

nav.links > a:hover {
  color: var(--bone);
  text-decoration: none;
}

nav.links > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav.links > a.nav-cta {
  color: #FFFFFF;
  background: var(--ochre);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}

nav.links > a.nav-cta::after {
  display: none;
}

nav.links > a.nav-cta:hover {
  background: var(--ember);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ---------- Dropdown Navigation (Executive Mega-Menu) ---------- */
.nav-item-dropdown {
  position: relative;
}

nav.links .nav-drop-trigger {
  color: var(--ash);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

nav.links .nav-drop-trigger:hover,
.nav-item-dropdown:hover .nav-drop-trigger {
  color: var(--bone);
  text-decoration: none;
}

.nav-drop-panel {
  position: absolute;
  top: 100%;
  left: -120px;
  width: 720px;
  max-width: 90vw;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px -8px rgba(15, 23, 42, 0.14), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  display: none;
  z-index: 200;
}

.nav-item-dropdown:hover .nav-drop-panel,
.nav-item-dropdown:focus-within .nav-drop-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nav-drop-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-drop-col-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  padding: 0 8px 6px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 4px;
}

.nav-drop-panel a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ash);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  transition: var(--transition);
  white-space: normal;
}

.nav-drop-panel a.service-primary {
  font-weight: 600;
  color: var(--bone);
}

.nav-drop-panel a.service-sub {
  color: #64748B;
  font-size: 0.82rem;
  padding-left: 12px;
}

.nav-drop-panel a:hover {
  background: #FFFBEB;
  color: var(--ochre);
  text-decoration: none;
  transform: translateX(2px);
}

@media (max-width: 1024px) {
  .nav-drop-panel {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
    padding: 8px var(--space-3) 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;
  }

  .nav-item-dropdown:hover .nav-drop-panel,
  .nav-item-dropdown:focus-within .nav-drop-panel {
    display: flex;
    flex-direction: column;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: var(--transition);
}

.nav-toggle:hover {
  border-color: var(--ochre);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bone);
  margin: 0 auto;
  position: absolute;
  left: 11px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform:rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform:rotate(-45deg); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vh, 64px) 0 clamp(32px, 4vh, 48px);
  border-bottom: 1px solid var(--sep);
}

.hero .topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero .wrap {
  position: relative;
  z-index: 10;
}

.hero .term {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: #065F46;
  margin-bottom: var(--space-2);
  letter-spacing: 0.04em;
  background: #ECFDF5;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid #A7F3D0;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: var(--space-2);
}

.hero h1 em {
  font-style: normal;
  color: var(--ochre);
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(217, 119, 6, 0.2);
  z-index: -1;
}

.hero > .wrap > p {
  max-width: 52ch;
  font-size: var(--fs-lede);
  line-height: 1.6;
  margin-bottom: var(--space-3);
  color: var(--ash);
}

/* Oversized low-opacity slogan: deliberate typographic decoration that
   anchors the hero's bottom edge instead of floating in dead space.
   p.tagline: must outrank the `.hero > .wrap > p` lede sizing above. */
.hero p.tagline {
  margin: var(--space-3) 0 calc(-0.12 * clamp(2.4rem, 8vw, 7rem));
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.hero-pillars {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-4);
}

.hero-pillars a {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.hero-pillars a:hover {
  border-color: var(--ochre);
  color: var(--ochre);
  background: #FFFBEB;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.12);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ---------- Services Section ---------- */
.services {
  border-bottom: 1px solid var(--sep);
}

.services .intro {
  max-width: 56ch;
  margin-bottom: var(--space-3);
}

.service {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--line);
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  margin-bottom: var(--space-3);
  align-items: start;
}

.service:last-of-type {
  margin-bottom: 0;
}

/* Offset the body so the description's first line top-aligns with the h3,
   which sits below the .num eyebrow (one label line + its bottom margin). */
.service .body {
  padding-top: 0;
}

.service:first-of-type {
  padding-top: var(--space-4);
}

.service .meta .num {
  font-family: var(--mono);
  color: var(--ochre);
  font-size: var(--fs-label);
  letter-spacing: .2em;
  display: block;
  margin-bottom: var(--space-2);
}

.service h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-2);
  position: relative;
  display: inline-block;
}

.service.featured h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.service .body > p {
  margin-bottom: var(--space-3);
  max-width: 56ch;
  font-size: 1.1rem;
  color: var(--bone);
}

.service ul {
  list-style: none;
  margin: 0 0 var(--space-3);
}

.service ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--ash);
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}

.service ul li:last-child {
  border-bottom: 0;
}

.service ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre);
}

.service .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-4);
}

.service .tags span {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ash);
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}

.service .body .btn {
  margin-right: 12px;
  margin-bottom: 12px;
}

/* ---------- Process Section ---------- */
.process {
  border-bottom: 1px solid var(--sep);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.step {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 8px -1px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.step:hover {
  border-color: var(--line-active);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.1);
}

.step .n {
  font-family: var(--mono);
  color: var(--ochre);
  font-size: var(--fs-label);
  letter-spacing: .2em;
  display: block;
  margin-bottom: var(--space-1);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ash);
  margin-top: auto;
}

/* ---------- Offers Section ---------- */
.offers {
  border-bottom: 1px solid var(--sep);
}

.offers .intro {
  margin-bottom: 0;
}

.offers .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.offer {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  position: relative;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.1);
  border-color: var(--ochre);
}

.offer.lead {
  border-color: var(--ochre);
  box-shadow: 0 12px 32px -4px rgba(217, 119, 6, 0.15);
}

.offer.lead::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--ochre);
  color: #FFFFFF;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
}

.offer .len {
  font-family: var(--mono);
  font-size: var(--fs-label);
  color: var(--eucalypt);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
  display: block;
}

.offer h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}

.offer .price {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ochre);
  margin-bottom: var(--space-3);
}

.offer ul {
  list-style: none;
  margin: 0 0 var(--space-4);
  flex: 1;
}

.offer ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--ash);
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
}

.offer ul li:last-child {
  border-bottom: 0;
}

.offer ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre);
}

.offer .btn {
  width: 100%;
  text-align: center;
}

/* ---------- FAQ Section ---------- */
.faq {
  border-bottom: 1px solid var(--sep);
}

.faq-list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: var(--space-2) 0;
  transition: var(--transition);
}

.faq details:first-of-type {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bone);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) 0;
  transition: color 0.2s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  color: var(--ochre);
}

.faq summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--ochre);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq details[open] summary {
  color: var(--ochre);
}

.faq details[open] summary::after {
  content: "\2013";
  transform: rotate(180deg);
}

.faq details p {
  margin-top: var(--space-1);
  margin-bottom: var(--space-2);
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ash);
}

/* ---------- Contact Section ---------- */
.contact {
}

.contact .grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* form left, supporting copy right */
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.contact .aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .aside p.lede {
  margin-bottom: var(--space-3);
  max-width: 40ch;
}

.contact .aside .mono {
  font-family: var(--mono);
  font-size: 1.1rem;
  color: var(--ochre);
  margin-bottom: var(--space-2);
}

.contact .aside .mono a {
  color: var(--ochre);
  font-weight: 700;
}

.contact .aside .mono a:hover {
  color: var(--ember);
}

.aside-links {
  font-size: 1rem;
}

.aside-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

form.config {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

form.config .form-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bone);
  margin: 0 0 var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line);
}

.field {
  margin-bottom: var(--space-2);
}

.choice-field {
  min-width: 0;
  border: 0;
  padding: 0;
}

.choice-field legend {
  display: block;
  width: 100%;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.field input[type=text],
.field input[type=email],
.field select,
.field textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  transition: var(--transition);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ochre);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pills label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  border: 1px solid var(--line);
  background: #F8FAFC;
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ash);
  text-transform: none;
  letter-spacing: 0;
  transition: var(--transition);
  min-height: 44px;
}

.pills label:hover {
  border-color: var(--ochre);
  color: var(--ochre);
  background: #FFFBEB;
}

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

.pills label:has(input:checked) {
  border-color: var(--ochre);
  color: #FFFFFF;
  background: var(--ochre);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

.pills label:has(input:focus-visible),
.choice-list label:has(input:focus-visible) {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

form.config .btn {
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  margin-top: var(--space-2);
}

.fineprint {
  font-size: 0.8rem;
  color: var(--ash);
  margin-top: var(--space-2);
  text-align: center;
}

.form-status {
  min-height: 1.5em;
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.5;
  text-align: center;
  color: var(--ash);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Booking (Cal.com inline embed) ---------- */
.booking {
  border-bottom: 1px solid var(--sep);
}

.booking .booking-intro {
  max-width: 60ch;
  margin-bottom: var(--space-4);
}

/* Framed surface so the embedded calendar reads as a deliberate, on-brand
   panel against the light executive canvas rather than a floating dark widget. */
.cal-embed-frame {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

#cal-inline-booking {
  width: 100%;
  min-height: 660px;
  overflow: hidden;
  border-radius: var(--radius);
}

#cal-inline-booking iframe {
  border-radius: var(--radius);
}

.booking .fineprint {
  margin-top: var(--space-3);
}

@media (max-width: 640px) {
  #cal-inline-booking {
    min-height: 580px;
  }
  .cal-embed-frame {
    padding: 8px;
  }
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--sep);
  padding: var(--space-4) 0 var(--space-3);
}

footer.site .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4);
}

footer.site h4 {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--space-2);
}

footer.site ul {
  list-style: none;
}

footer.site li {
  margin-bottom: 10px;
}

footer.site a {
  color: var(--ash);
  font-size: 0.92rem;
}

footer.site a:hover {
  color: var(--bone);
  text-decoration: none;
}

.footer-blurb {
  max-width: 36ch;
  font-size: .95rem;
  margin-top: 14px;
}

footer.site .legal {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ash);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.business-id {
  font-family: var(--mono);
  letter-spacing: .04em;
}

footer.site .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  footer.site .footer-sitemap {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Sticky FAB ---------- */
.fabs {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s cubic-bezier(0.25, 1, 0.5, 1), transform .3s cubic-bezier(0.25, 1, 0.5, 1);
}

.fabs.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ochre);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 12px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  min-height: 48px;
}

.fab:hover {
  color: var(--charcoal); /* keep label readable; global a:hover would ember it */
  background: var(--ember);
  text-decoration: none;
  transform: translateY(-2px);
}

.fab.secondary {
  background: var(--slate);
  color: var(--bone);
  border: 1px solid var(--line);
}

.fab.secondary:hover {
  border-color: var(--ochre);
  background: var(--slate);
  color: var(--bone);
}

/* ---------- Contact Drawer ---------- */
.contact-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000; /* Higher than sticky nav and everything else */
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.4s;
}

.contact-drawer[hidden] {
  display: none;
}

.contact-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.contact-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-drawer.open .contact-drawer-overlay {
  opacity: 1;
}

.contact-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 460px;
  max-width: 100%;
  height: 100%;
  background: #FFFFFF;
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--line);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-drawer-panel:focus {
  outline: none;
}

.contact-drawer.open .contact-drawer-panel {
  transform: translateX(0);
}

.contact-drawer-header {
  padding: var(--space-3);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-drawer-header h2,
.contact-drawer-header h3 {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bone);
}

.contact-drawer-close {
  background: none;
  border: none;
  color: var(--ash);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-drawer-close:hover {
  background: var(--surface-inset, #F1F5F9);
  color: var(--bone);
}

.contact-drawer-body {
  padding: var(--space-3);
  flex: 1;
  overflow-y: auto;
}

.contact-drawer-sub {
  color: var(--ash);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.contact-drawer-form .field {
  margin-bottom: var(--space-3);
}

.contact-drawer-form label {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ash);
  margin-bottom: 8px;
  text-align: left;
}

.contact-drawer-form input,
.contact-drawer-form textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-drawer-form input:focus,
.contact-drawer-form textarea:focus {
  outline: none;
  border-color: var(--ochre);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}

.reveal-ready .reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }

/* ---------- Landing Pages ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vh, 48px) 0 var(--space-2);
  border-bottom: 1px solid var(--sep);
}

.page-hero .topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .25;
  pointer-events: none;
}

.page-hero .wrap {
  position: relative;
  z-index: 10;
}

.page-hero h1 {
  max-width: 20ch;
  margin-bottom: var(--space-2);
}

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

.page-hero .lede {
  margin-bottom: var(--space-3);
  max-width: 60ch;
}

/* Trust signal line (e.g. CREST-certified team on pen-testing) */
.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-2);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--ash);
  border: 1px solid rgba(95, 122, 106, 0.28);
  background: rgba(95, 122, 106, 0.07);
  border-radius: 999px;
  padding: 8px 18px;
}

.trust-note::before {
  content: "\2713";
  color: var(--eucalypt);
  font-weight: 700;
}

.breadcrumb {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ash);
  letter-spacing: .06em;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--ash);
}

.breadcrumb a:hover {
  color: var(--ochre);
}

.content-block {
  border-bottom: 1px solid var(--sep);
}

/* ---------- Legal / Prose Pages (privacy, terms) ---------- */
.prose {
  max-width: 74ch;
}

.prose h2 {
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.prose > h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-1);
  font-size: 1.2rem;
}

.prose p {
  margin-bottom: var(--space-2);
}

.prose ul {
  list-style: none;
  margin: 0 0 var(--space-2);
}

.prose ul li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--ash);
  border-bottom: 1px dashed var(--line);
}

.prose ul li:last-child {
  border-bottom: 0;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  box-shadow: 0 0 8px var(--ochre);
}

.prose a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.prose .updated {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eucalypt);
  margin-top: var(--space-2);
}

.legal-note {
  margin-top: var(--space-4);
  padding: var(--space-3);
  border: 1px solid rgba(217, 122, 50, 0.28);
  border-radius: var(--radius);
  background: rgba(217, 122, 50, 0.05);
  font-size: 0.92rem;
  color: var(--ash);
}

.legal-note strong {
  color: var(--bone);
}

.footer-legal-links a {
  color: var(--ash);
}

.footer-legal-links a:hover {
  color: var(--bone);
}

.content-block h2 {
  margin-bottom: var(--space-2);
}

.content-block .lede {
  margin-bottom: var(--space-4);
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.bullet-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 2px 8px -1px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.bullet-card:hover {
  border-color: var(--line-active);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.1);
}

.bullet-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}

.bullet-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ash);
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-4);
}

.related a {
  font-size: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--ash);
  background: rgba(255, 255, 255, 0.01);
}

.related a:hover {
  border-color: var(--ochre);
  color: var(--bone);
  text-decoration: none;
  background: rgba(217, 122, 50, 0.05);
  transform: translateY(-1px);
}

.section-nav {
  position: sticky;
  top: 64px;
  z-index: 40;
  padding: 12px 0;
  border-bottom: 1px solid var(--sep);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.section-nav .wrap {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
}

.section-nav a {
  color: var(--ash);
  font-family: var(--mono);
  font-size: .8rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-nav a:hover {
  color: var(--bone);
}

.cta-band {
  border-bottom: 1px solid var(--sep);
  text-align: center;
  padding: clamp(32px, 5vw, 48px) 0;
}

.cta-band h2 {
  margin-bottom: var(--space-2);
}

.cta-band p {
  max-width: 48ch;
  margin: 0 auto var(--space-4);
  font-size: 1.1rem;
}

/* ---------- Assessment Scorecard Wizard ---------- */
.wizard {
  max-width: 720px;
  margin: 0 auto;
}

.wizard .progress {
  height: 7px;
  margin-top: 8px;
  margin-bottom: var(--space-3);
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.wizard .progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: var(--ochre);
  transition: width .18s ease;
}

.wizard-status {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--ash);
  text-align: center;
}

.wstep {
  display: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%), var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.wstep[hidden] {
  display: none;
}

.wstep.active {
  display: block;
  animation: fadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.wstep h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.wstep h3:focus {
  outline: none;
}

.wstep .hint {
  font-size: 0.95rem;
  color: var(--ash);
  margin: -10px 0 var(--space-3);
}

.choice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--space-2);
}

.choice-list label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--ash);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  min-height: 56px;
}

.choice-list label:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--bone);
  transform: translateY(-1px);
}

.choice-list input {
  accent-color: var(--ochre);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.choice-list label:has(input:checked) {
  border-color: var(--ochre);
  color: var(--bone);
  background: rgba(217, 122, 50, 0.08);
  box-shadow: 0 0 20px rgba(217, 122, 50, 0.05);
}

/* Email gate: final wizard step before results */
.wstep-gate .gate-inner {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.wstep-gate .kicker {
  margin-bottom: var(--space-1);
}

.wstep-gate .gate-sub {
  color: var(--ash);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto var(--space-3);
  max-width: 44ch;
}

.wstep-gate .field label {
  text-align: left;
}

.wstep-gate .btn {
  width: 100%;
  font-size: 1.05rem;
}

.field-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 8px;
  text-align: left;
}

.field input.invalid {
  border-color: #E07B6A;
  box-shadow: 0 0 0 3px rgba(224, 123, 106, 0.12);
}

.wnav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.wnav .btn {
  min-width: 120px;
}

.wnav .btn[disabled] {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.01);
  color: var(--ash);
}

.results {
  display: none;
}

.results.show {
  display: block;
  animation: fadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.results:focus {
  outline: none;
}

.delivery-status {
  margin: var(--space-2) auto 0;
  max-width: 54ch;
  font-size: .92rem;
  line-height: 1.5;
}

.delivery-status[data-state="pending"] {
  color: var(--ash);
}

.delivery-status[data-state="success"] {
  color: var(--success);
}

.delivery-status[data-state="error"] {
  color: var(--error);
}

.delivery-retry {
  margin-top: 12px;
}

.score-hero {
  text-align: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%), var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.score-hero .big {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--ochre);
  line-height: 1;
  margin: 12px 0;
  text-shadow: 0 0 30px rgba(217, 122, 50, 0.2);
}

.score-hero .band {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
}

.score-hero .band#score-band {
  color: var(--bone);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 8px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.dims {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: var(--space-4);
}

.dim {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0) 100%), var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.dim .label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ash);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dim .label span:last-child {
  color: var(--ochre);
  font-weight: 700;
}

.dim .bar {
  height: 6px;
  border-radius: 999px;
  background: var(--charcoal);
  overflow: hidden;
}

.dim .bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ochre), var(--ember));
  border-radius: 999px;
  transition: width .8s cubic-bezier(0.25, 1, 0.5, 1);
}

.result-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0) 100%), var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
}

.result-block h4 {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: var(--space-2);
}

.result-block ul {
  list-style: none;
}

.result-block li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--ash);
  font-size: 0.98rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
}

.result-block li:last-child {
  border-bottom: 0;
}

.result-block li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre);
}

.reco {
  border: 1px solid var(--ochre);
  background: rgba(217, 122, 50, 0.03);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  box-shadow: 0 15px 40px rgba(217, 122, 50, 0.05);
}

.reco .len {
  font-family: var(--mono);
  font-size: var(--fs-label);
  color: var(--eucalypt);
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-1);
}

.reco h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-1);
}

.reco .price {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ochre);
  margin-bottom: var(--space-3);
}

.reco p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 54ch;
  margin: 0 auto var(--space-4);
}

.reco p.fineprint {
  font-size: 0.8rem;
  margin: var(--space-2) auto 0;
}

/* ---------- Outcome Strip (TL pattern) ---------- */
.outcome-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 var(--space-4);
}

.outcome-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--line);
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  border-radius: 999px;
  padding: 10px 14px;
  white-space: nowrap;
}

.outcome-strip .dir {
  font-weight: 700;
}

.outcome-strip .dir.up { color: var(--eucalypt); }
.outcome-strip .dir.down { color: var(--ochre); }

[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

@media (max-width: 760px) {
  .outcome-strip {
    grid-template-columns: 1fr;
  }
  .outcome-strip li {
    min-width: 0;
    white-space: normal;
    font-size: 0.8rem;
    padding: 10px 12px;
  }
}

/* ---------- Pen-test Page Components ---------- */

/* Split hero: copy left, mock test console right */
.pt-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

/* Grid items default to min-width:auto; the console's nowrap target line
   would otherwise force the column (and page) wider than small viewports. */
.pt-hero-grid > div {
  min-width: 0;
}

@media (max-width: 980px) {
  .pt-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Trust chips row under hero CTAs */
.pt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-3);
}

.pt-chips span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ash);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}

.pt-chips span::before {
  content: "\2713\00a0";
  color: var(--eucalypt);
  font-weight: 700;
}

/* Mock test console (static, works without JS) */
.tconsole {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px -8px rgba(15, 23, 42, 0.25);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.tconsole-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid #1E293B;
  background: #1E293B;
  color: #94A3B8;
}

.tconsole-bar .dots {
  display: flex;
  gap: 6px;
  margin-right: 6px;
}

.tconsole-bar .dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.tconsole-bar .target {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tconsole-bar .live {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.12);
  border-radius: 999px;
  padding: 3px 10px;
}

.tconsole-bar .live::before {
  content: "\25cf ";
}

.tconsole-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tconsole-body p {
  color: #94A3B8;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.tconsole-body p .cmd {
  color: #34D399;
}

.tconsole-body .counters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tconsole-body .counters span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 6px;
  padding: 4px 10px;
  border: 1px solid transparent;
}

.sev-c { color: #F87171; background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.4) !important; }
.sev-h { color: #FBBF24; background: rgba(245, 158, 11, 0.15); border-color: rgba(245, 158, 11, 0.4) !important; }
.sev-m { color: #FDE047; background: rgba(234, 179, 8, 0.15); border-color: rgba(234, 179, 8, 0.4) !important; }
.sev-l { color: #6EE7B7; background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.4) !important; }
.sev-i { color: #CBD5E1; background: rgba(148, 163, 184, 0.15); border-color: rgba(148, 163, 184, 0.4) !important; }

.tconsole-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid #1E293B;
}

.tconsole-chips span {
  font-size: 0.68rem;
  color: #94A3B8;
  border: 1px solid #334155;
  background: #1E293B;
  border-radius: 999px;
  padding: 4px 12px;
}

.tconsole-chips span.crest {
  color: #F8FAFC;
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.15);
}

.tconsole-caption {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ash);
  letter-spacing: 0.05em;
  margin-top: 12px;
  text-align: center;
}

/* Three-column card grid variant (triggers, coverage, compliance) */
.bullet-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .bullet-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .bullet-grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

.bullet-card .impact {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 8px;
}

.bullet-card .ctrl {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ochre);
  margin-bottom: 10px;
}

/* Severity rating matrix */
.sev-matrix-wrap {
  overflow-x: auto;
  margin-top: var(--space-3);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

table.sev-matrix {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 6px;
  font-family: var(--mono);
  font-size: 0.82rem;
}

table.sev-matrix th {
  font-weight: 500;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 10px 12px;
  text-align: left;
}

.matrix-cue {
  display: none;
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--ash);
  margin-top: 8px;
}

table.sev-matrix thead th {
  text-align: center;
}

table.sev-matrix thead th:first-child {
  text-align: left;
}

table.sev-matrix td {
  text-align: center;
  font-weight: 700;
  padding: 16px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.sev-bands {
  list-style: none;
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
}

.sev-bands li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ash);
  font-size: 0.95rem;
}

.sev-bands li:last-child {
  border-bottom: 0;
}

.sev-bands .band-tag {
  flex-shrink: 0;
  min-width: 110px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 4px 10px;
  text-align: center;
  border: 1px solid transparent;
}

/* Deliverables: two-document model */
.deliv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (max-width: 900px) {
  .deliv-grid {
    grid-template-columns: 1fr;
  }
}

.deliv-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
}

.deliv-card .doc-kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eucalypt);
  display: block;
  margin-bottom: var(--space-1);
}

.deliv-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-1);
}

.deliv-card > p {
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
}

.deliv-card ul {
  list-style: none;
}

.deliv-card ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--ash);
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line);
}

.deliv-card ul li:last-child {
  border-bottom: 0;
}

.deliv-card ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre);
}

.deliv-included {
  margin-top: var(--space-3);
  border: 1px solid #A7F3D0;
  background: #ECFDF5;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}

.deliv-included h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}

.deliv-included ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}

@media (max-width: 760px) {
  .deliv-included ul {
    grid-template-columns: 1fr;
  }
}

.deliv-included li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--ash);
  font-size: 0.92rem;
}

.deliv-included li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  color: var(--eucalypt);
  font-weight: 700;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .step:hover, .offer:hover, .bullet-card:hover { transform: none; }
  .hero .topo { transition: none; }
  .scroll-progress { display: none; }
  .brand:hover svg { transform: none; }
  .live::before { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --fs-h1: 3rem;
    --fs-h2: 2rem;
  }
}

@media (max-width: 900px) {
  .service {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding: 32px 0;
  }
  .service .body {
    padding-top: 0;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact .grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  footer.site .cols {
    grid-template-columns: 1fr 1fr;
  }
  .offers .grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .bullet-grid {
    grid-template-columns: 1fr;
  }
  .dims {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --fs-h1: 2.4rem;
    --fs-h2: 1.6rem;
    --section-pad: 48px;
  }
  
  .wnav {
    flex-direction: column-reverse;
    gap: 12px;
  }
  
  .wnav .btn {
    width: 100%;
  }

  nav.links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-2) 0;
  }

  nav.links.open {
    display: flex;
  }

  nav.links > a {
    width: 100%;
    padding: 16px var(--space-3);
    border-top: 1px solid #F1F5F9;
    text-align: left;
  }
  
  nav.links > a::after {
    display: none;
  }

  nav.links > a.nav-cta {
    margin: 12px var(--space-3);
    text-align: center;
    width: calc(100% - 2 * var(--space-3));
  }

  /* Dropdown becomes a static nested list inside the mobile menu */
  .nav-item-dropdown {
    width: 100%;
  }

  nav.links .nav-drop-trigger {
    display: block;
    width: 100%;
    padding: 16px var(--space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
  }

  .nav-drop-panel {
    position: static;
    display: block;
    min-width: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 0 8px calc(var(--space-3) + 12px);
  }

  .nav-toggle {
    display: block;
  }

  header.site .bar {
    position: relative;
    padding: 16px var(--space-3);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  footer.site .cols {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .fab span.txt {
    display: none;
  }

  .fab {
    padding: 14px;
  }
  
  form.config {
    padding: var(--space-3);
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 40px;
  }

  .wrap {
    padding-inline: 20px;
  }

  .page-hero {
    padding-top: 36px;
  }

  .wstep,
  .score-hero,
  .result-block,
  .reco {
    padding: 22px 20px;
  }

  .choice-list label {
    padding: 14px 16px;
    text-align: left;
  }

  .scorecard-section .wrap {
    padding-inline: 20px;
  }

  .wizard .progress {
    margin-bottom: 24px;
  }

  .section-nav {
    position: static;
  }

  table.sev-matrix {
    min-width: 600px;
    font-size: .8rem;
  }

  table.sev-matrix th,
  table.sev-matrix td {
    font-size: .75rem;
    padding: 12px 10px;
  }

  .matrix-cue {
    display: block;
  }

  footer.site .legal {
    margin-top: var(--space-4);
  }
}

/* ==========================================================================
   2-Tap Scope Triage Widget (Penva Lead-Capture Pattern)
   ========================================================================== */
.triage-section {
  padding: var(--space-5) 0 var(--space-3);
  background: #F1F5F9;
}

.triage-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 12px 32px -4px rgba(15, 23, 42, 0.08);
}

.triage-header .kicker {
  color: var(--ochre);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.triage-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 8px;
  line-height: 1.25;
  color: var(--bone);
}

.triage-header .lede {
  color: var(--ash);
  font-size: 1rem;
  margin-bottom: var(--space-3);
  max-width: 720px;
}

.triage-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: var(--space-3);
}

@media (max-width: 768px) {
  .triage-controls {
    grid-template-columns: 1fr;
  }
}

.triage-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.triage-select {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.triage-select:focus,
.triage-select:hover {
  border-color: var(--ochre);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.triage-result {
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 10px;
  transition: all 0.25s ease-out;
}

.triage-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #FFFBEB;
  color: var(--ochre);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.triage-title {
  font-size: 1.35rem;
  color: var(--bone);
  margin-bottom: 10px;
}

.triage-desc {
  font-size: 0.95rem;
  color: var(--ash);
  line-height: 1.5;
  margin-bottom: 20px;
}

.triage-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748B;
}

.spec-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bone);
}

.triage-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.triage-price-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.triage-price-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ember);
}

.triage-price-val {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: #92400E;
  letter-spacing: -0.02em;
}

.triage-price-fine {
  font-size: 0.82rem;
  color: #78350F;
  margin: 0;
}

.triage-included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px 16px;
}

.triage-included-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--bone);
}

.triage-included-list li::before {
  content: "\2713";
  color: var(--eucalypt);
  font-weight: 700;
  font-family: var(--mono);
}

.site-nav-pricing {
  font-weight: 500;
}

.home-pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px 0;
}

.home-pricing-tab-btn {
  background: #F1F5F9;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ash);
  cursor: pointer;
  transition: var(--transition);
}

.home-pricing-tab-btn:hover {
  background: #E2E8F0;
  color: var(--bone);
}

.home-pricing-tab-btn.active {
  background: var(--ochre);
  border-color: var(--ochre);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

.home-pricing-panel {
  display: none;
}

.home-pricing-panel.active {
  display: block;
}

.wizard-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.wizard-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.wizard-progress-bar {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.wizard-progress-fill {
  height: 100%;
  background: var(--ochre);
  transition: width 0.3s ease;
}

.wizard-step-header {
  margin-bottom: 24px;
}

.wizard-step-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin-bottom: 6px;
}

.wizard-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 6px;
}

.wizard-step-desc {
  font-size: 0.95rem;
  color: var(--ash);
  line-height: 1.5;
}

.wizard-radio-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .wizard-radio-group.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.wizard-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #F8FAFC;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.wizard-radio-card:hover {
  border-color: var(--ochre);
  background: #FFFBEB;
}

.wizard-radio-card input[type=radio] {
  margin-top: 3px;
  accent-color: var(--ochre);
  width: 18px;
  height: 18px;
}

.wizard-radio-card.selected {
  border-color: var(--ochre);
  background: #FFFBEB;
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.2);
}

.wizard-card-text {
  flex: 1;
}

.wizard-card-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 4px;
}

.wizard-card-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--ash);
  line-height: 1.4;
}

.wizard-summary-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
}

.wizard-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.wizard-error-banner {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: 8px;
  padding: 12px 16px;
  color: #991B1B;
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: none;
}

.triage-derisk-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 14px 18px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--mono);
  color: #065F46;
  font-weight: 500;
}


