/* ==========================================================================
   Barkrum — Shared Stylesheet  (WCAG 2.1 AA)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* --------------------------------------------------------------------------
   1. Design Tokens — Light theme (default)
   --gold-text (#7A6218) is the accessible gold for text on light backgrounds:
   5.2:1 on --bg, 5.4:1 on --surface. --gold is kept for decorative borders/fills.
   --dark sections (BCPP, How We Test, CTA, Methodology) are hardcoded to
   #111111 so they remain dark in both themes.
   -------------------------------------------------------------------------- */
:root {
  --bg:           #FAF7F2;
  --surface:      #FFFFFF;
  --tint:         #F5EDD6;
  --ink:          #1A1A1A;
  --ink-soft:     #5C574E;
  --gold:         #B8962E;
  --gold-bright:  #C9A84C;
  --gold-text:    #7A6218;
  --dark:         #111111;
  --cream:        #F5F0E8;
  --border:       #E6DFD2;
  --border-dark:  #2C2C2C;
  --nav-bg:       rgba(250, 247, 242, 0.92);
  --hero-stop1:   rgba(250, 247, 242, 1.00);
  --hero-stop2:   rgba(250, 247, 242, 0.55);
  --hero-stop3:   rgba(250, 247, 242, 0.35);
  --hero-overlay: rgba(250, 247, 242, 0.88);

  --font-headline: 'Space Grotesk', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'DM Mono', monospace;

  --max-width:      1200px;
  --section-pad:    96px 24px;
  --section-pad-sm: 64px 24px;
}

/* Dark theme — invertible sections flip, --dark sections stay unchanged */
:root[data-theme="dark"] {
  --bg:           #0D0D0D;
  --surface:      #141414;
  --tint:         #151209;
  --ink:          #F0EBE1;
  --ink-soft:     #B5AFA6;
  --gold:         #C9A84C;
  --gold-bright:  #D4B45A;
  --gold-text:    #C9A84C;
  --border:       #2C2C2C;
  --border-dark:  #3A3A3A;
  --nav-bg:       rgba(13, 13, 13, 0.92);
  --hero-stop1:   rgba(13, 13, 13, 1.00);
  --hero-stop2:   rgba(13, 13, 13, 0.55);
  --hero-stop3:   rgba(13, 13, 13, 0.35);
  --hero-overlay: rgba(13, 13, 13, 0.88);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Typography Utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 16px;
}

.eyebrow--cream {
  color: var(--gold-bright);
}

.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-headline--cream {
  color: var(--ink);
}

.lead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
}

.lead--cream {
  color: var(--cream);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   5. Buttons
   btn--primary uses dark text on gold fill: 7.3:1 contrast
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: transparent;
  color: var(--gold-text);
  border-color: var(--gold);
}

.btn--primary-dark {
  background-color: var(--gold-bright);
  color: var(--dark);
  border-color: var(--gold-bright);
}

.btn--primary-dark:hover,
.btn--primary-dark:focus-visible {
  background-color: transparent;
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn--ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background-color: var(--ink);
  color: var(--bg);
}

.btn--ghost .btn__icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.btn--outline {
  background-color: transparent;
  color: var(--gold-text);
  border-color: var(--gold);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--gold);
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__wordmark {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo {
  height: 56px;
  width: auto;
  display: block;
}

:root[data-theme="dark"] .nav__logo,
:root[data-theme="dark"] .site-footer__logo {
  filter: invert(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav__link:hover {
  color: var(--gold-text);
}

.nav__link--bcpp {
  color: var(--gold-text);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  position: relative;
}

.nav__link--bcpp:hover {
  background-color: var(--tint);
}

.nav__link--bcpp::after {
  content: 'Barkrum Cybersecurity Protection Program';
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
}

.nav__link--bcpp:hover::after {
  opacity: 1;
}

.nav__link--coming-soon {
  cursor: default;
  position: relative;
}

.nav__link--coming-soon::after {
  content: 'Coming soon';
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
}

.nav__link--coming-soon:hover::after {
  opacity: 1;
}

/* Theme toggle button */
.nav__theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--ink);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.nav__theme-toggle:hover {
  background-color: var(--tint);
  border-color: var(--gold);
}

.theme-icon {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.theme-icon--sun  { display: none; }
.theme-icon--moon { display: block; }

:root[data-theme="dark"] .theme-icon--sun  { display: block; }
:root[data-theme="dark"] .theme-icon--moon { display: none; }

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__ctas .btn {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.nav__cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
  background-color: var(--bg);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 1rem;
  padding: 4px 0;
}

.nav__mobile .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   6b. Mega Menu Dropdown
   -------------------------------------------------------------------------- */
.nav__item {
  list-style: none;
}

.nav__dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
  transition: color 0.15s ease;
}

.nav__dropdown-trigger:hover,
.nav__item--has-dropdown.is-open .nav__dropdown-trigger {
  color: var(--gold-text);
}

.nav__chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav__item--has-dropdown.is-open .nav__chevron {
  transform: rotate(180deg);
}

/* Panel */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 99;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .nav__dropdown { transform: none !important; transition: opacity 0.18s ease, visibility 0.18s ease; }
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__dropdown-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 24px 32px;
}

/* Three-column grid */
.mega-menu {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(260px, 300px);
}

.mega-col {
  padding: 0 36px;
}

.mega-col:first-child {
  padding-left: 0;
  border-right: 1px solid var(--border);
}

.mega-col:nth-child(2) {
  border-right: 1px solid var(--border);
}

.mega-col--bcpp {
  padding-right: 0;
}

/* Column label + desc */
.mega-col__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 8px;
}

.mega-col__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mega-col__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Service link rows */
.mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.mega-link:hover,
.mega-link:focus-visible {
  background-color: var(--tint);
  color: var(--gold-text);
}

.mega-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.mega-link__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.mega-link:hover .mega-link__arrow,
.mega-link:focus-visible .mega-link__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* BCPP feature panel */
.mega-bcpp {
  background-color: var(--tint);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mega-bcpp__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.mega-bcpp__shield {
  color: var(--gold-text);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mega-bcpp__shield svg {
  width: 16px;
  height: 16px;
}

.mega-bcpp__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.mega-bcpp__title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}

.mega-bcpp__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.mega-bcpp__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-text);
  text-decoration: none;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: gap 0.15s ease;
}

.mega-bcpp__cta:hover {
  gap: 10px;
}

.mega-bcpp__cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Tablet: 2-col, BCPP full width below */
@media (max-width: 960px) {
  .nav__dropdown-inner { padding: 28px 24px 24px; }
  .mega-menu {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .mega-col--bcpp {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    border-top: 1px solid var(--border);
    margin-top: 24px;
    border-right: none;
  }
  .mega-bcpp { padding: 20px; }
}

@media (max-width: 768px) {
  .nav__dropdown { display: none; }
}

/* Mobile services accordion */
.nav__mobile-group {
  display: flex;
  flex-direction: column;
}

.nav__mobile-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 0;
  width: 100%;
  text-align: left;
  transition: color 0.15s ease;
}

.nav__mobile-trigger:hover {
  color: var(--gold-text);
}

.nav__mobile-trigger[aria-expanded="true"] .nav__chevron {
  transform: rotate(180deg);
}

.nav__mobile-services {
  display: none;
  flex-direction: column;
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--gold);
  margin: 4px 0 4px 2px;
}

.nav__mobile-services.is-open {
  display: flex;
}

.mobile-svc-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  padding: 10px 0 4px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
}

.mobile-svc-label:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 2px;
}

.nav__mobile-service-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 7px 0;
  transition: color 0.15s ease;
}

.nav__mobile-service-link:hover,
.nav__mobile-service-link:focus-visible {
  color: var(--gold-text);
}

.mobile-bcpp-card {
  margin-top: 14px;
  padding: 16px;
  background-color: var(--tint);
  border: 1px solid var(--gold);
  border-radius: 4px;
}

.mobile-bcpp-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 6px;
}

.mobile-bcpp-card__title {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 7px;
}

.mobile-bcpp-card__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 12px;
}

.mobile-bcpp-card__cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-text);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: var(--bg);
  padding: 96px 24px 80px;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../assets/hero-bg.svg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transition: filter 0.3s ease;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(to right, var(--hero-stop1) 40%, var(--hero-stop2) 70%, var(--hero-stop3) 100%);
}

[data-theme="dark"] .hero::before {
  filter: invert(1);
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  background-color: var(--tint);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 24px;
}

.hero__headline .highlight {
  color: var(--gold-text);
}

.hero__subhead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 40px;
}

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

.hero__process-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}

.hero__process-link:hover {
  color: var(--gold-text);
}

.hero__process-link svg {
  transition: transform 0.2s ease;
}

.hero__process-link:hover svg {
  transform: translateY(2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero__process-link,
  .hero__process-link svg {
    transition: none;
  }
}


.hero__credentials {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}


/* --------------------------------------------------------------------------
   8b. Threat Stats Band
   -------------------------------------------------------------------------- */
.threat-stats {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px;
}

.threat-stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.threat-stats__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  text-align: center;
  margin-bottom: 40px;
}

.threat-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.threat-stat {
  padding: 0 36px;
  border-left: 1px solid var(--border);
}

.threat-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.threat-stat:last-child {
  padding-right: 0;
}

.threat-stat__number {
  font-family: var(--font-headline);
  font-size: clamp(2.125rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 12px;
}

.threat-stat__gold {
  color: var(--gold);
}

.threat-stat__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-bottom: 8px;
}

.threat-stat__source {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  opacity: 0.6;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Services Grid
   -------------------------------------------------------------------------- */
.services {
  background-color: var(--bg);
  padding: var(--section-pad);
}

.services__header {
  max-width: var(--max-width);
  margin: 0 auto 52px;
}

.services__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  background-color: var(--border);
}

.service-card {
  background-color: var(--surface);
  padding: 36px 32px;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.15s ease;
  position: relative;
  outline: 1px solid transparent;
  outline-offset: -1px;
}

.service-card:hover {
  outline-color: var(--gold);
  box-shadow: 0 4px 16px rgba(184, 150, 46, 0.1);
  z-index: 1;
}

.service-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-text);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.service-card__title {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}

.service-card__icon {
  color: var(--gold);
  margin-bottom: 8px;
}

.service-card__icon svg {
  width: 72px;
  height: 72px;
  display: block;
}

.service-card__link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-text);
  text-decoration: none;
  margin-top: 8px;
  transition: letter-spacing 0.15s ease;
}

.service-card__link:hover {
  letter-spacing: 0.12em;
}

/* --------------------------------------------------------------------------
   9b. Services — Two-Category Layout
   -------------------------------------------------------------------------- */
.services-cats {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.services-cats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-cats__lede {
  margin-bottom: 56px;
}

.services-cat {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.services-cat + .services-cat {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.services-cat__header {
  position: sticky;
  top: 88px;
}

.services-cat__title {
  font-family: var(--font-headline);
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-cat__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.services-cat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.svc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184, 150, 46, 0.12);
  z-index: 1;
}

.svc-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.svc-card__name {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}

.svc-card__arrow {
  color: var(--ink-soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: color 0.15s ease, transform 0.15s ease;
}

.svc-card__arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}

.svc-card:hover .svc-card__arrow,
.svc-card:focus-visible .svc-card__arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9c. Services — Redesigned Editorial Layout
   -------------------------------------------------------------------------- */
.svc-section {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.svc-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.svc-section__intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.svc-section__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.svc-section__tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
}

/* Category group */
.svc-group {
  border-bottom: 1px solid var(--border);
}

.svc-group:last-of-type {
  border-bottom: none;
}

.svc-group__hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--border);
}

.svc-group__hd-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.svc-group__num {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold-text);
  border: 1px solid var(--gold);
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.svc-group__title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

.svc-group__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 380px;
  padding-top: 6px;
}

/* Service rows */
.svc-list {
  list-style: none;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  position: relative;
  transition: padding-left 0.2s ease;
}

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

.svc-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.svc-row:hover,
.svc-row:focus-visible {
  padding-left: 20px;
}

.svc-row:hover::before,
.svc-row:focus-visible::before {
  transform: scaleY(1);
}

.svc-row:focus-visible {
  outline: 3px solid var(--gold-text);
  outline-offset: 2px;
}

.svc-row__idx {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  width: 24px;
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.svc-row__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  transition: transform 0.2s ease;
}

.svc-row__name {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
}

.svc-row__hint {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

.svc-row__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--gold);
  transition: color 0.15s ease;
}

.svc-row__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.svc-row:hover .svc-row__icon,
.svc-row:focus-visible .svc-row__icon {
  color: var(--gold-bright, var(--gold));
}

.svc-row__arrow {
  color: var(--ink-soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: color 0.15s ease, transform 0.2s ease;
}

.svc-row__arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}

.svc-row:hover .svc-row__idx,
.svc-row:focus-visible .svc-row__idx {
  color: var(--gold-text);
}

.svc-row:hover .svc-row__content,
.svc-row:focus-visible .svc-row__content {
  transform: translateX(4px);
}

.svc-row:hover .svc-row__arrow,
.svc-row:focus-visible .svc-row__arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   10. BCPP — theme-aware
   -------------------------------------------------------------------------- */
.bcpp {
  background-color: var(--surface);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bcpp__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.bcpp__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.bcpp__header .eyebrow {
  color: var(--gold-text);
}

.bcpp__headline {
  font-family: var(--font-headline);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}

.bcpp__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.bcpp__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
}

.bcpp__card {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.bcpp__card:last-child {
  border-right: none;
}

.bcpp__card-icon {
  color: var(--gold);
  margin-bottom: 28px;
}

.bcpp__card-icon svg {
  width: 52px;
  height: 52px;
  display: block;
}

.bcpp__card-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--gold-text);
  margin-bottom: 12px;
}

.bcpp__card-title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.bcpp__card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.bcpp__device {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-top: none;
  border-left: 3px solid var(--gold);
}

.bcpp__device-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.bcpp__device-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.bcpp__device-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.bcpp__cta {
  margin-top: 44px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. How We Test
   -------------------------------------------------------------------------- */
.how-we-test {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-we-test__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-we-test__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}

.how-we-test__meta-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.how-we-test__diagram {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px 28px;
}

.how-we-test .chip {
  color: var(--gold-text);
  border-color: var(--border);
  background-color: var(--tint);
}

.framework-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-text);
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 2px;
}

.how-we-test__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step__number {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
}

.step__title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.step__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. Why Barkrum
   -------------------------------------------------------------------------- */
.why-barkrum {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.why-barkrum__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-barkrum__header {
  margin-bottom: 52px;
}

.differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.differentiator {
  display: flex;
  gap: 20px;
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--surface);
}

.differentiator:nth-child(even) {
  border-right: none;
}

.differentiator:nth-child(3),
.differentiator:nth-child(4) {
  border-bottom: none;
}

.differentiator__marker {
  color: var(--gold-text);
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1.4;
  font-weight: 700;
}

.differentiator__title {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.differentiator__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Contact Section & CTA Panel — always dark
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg);
  padding: 64px 24px;
}

.cta-panel {
  background-color: var(--dark);
  border: 1px solid var(--gold);
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 72px 64px;
  text-align: center;
}

.cta-panel__headline {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-panel__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-panel__domain {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  margin-top: 24px;
  text-transform: uppercase;
}

/* Contact success state */
.contact-success {
  padding: 40px 0 16px;
  text-align: center;
}
.contact-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
}
.contact-success__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.contact-success__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact form */
.contact-form {
  margin: 0 auto 32px;
  max-width: 520px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.form-required {
  color: var(--gold-bright);
  margin-left: 2px;
}

.form-required-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--cream);
  opacity: 0.6;
  margin-bottom: 20px;
}

.form-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cream);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  transition: border-color 0.15s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-bright);
}

.form-input[aria-invalid="true"] {
  border-color: #ff8a80;
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
}

.form-input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.form-error {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #ff8a80;
  margin-top: 5px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-errors-summary {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #ff8a80;
  background-color: rgba(255, 138, 128, 0.1);
  border: 1px solid rgba(255, 138, 128, 0.3);
  padding: 12px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  display: none;
  text-align: left;
}

.form-errors-summary.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   14. Contact Page
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 64px 24px 56px;
  border-bottom: 1px solid var(--border);
  background-color: var(--bg);
}

.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 640px;
}

.page-hero__sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 520px;
}

.contact-page {
  padding: 72px 24px 96px;
  background-color: var(--bg);
}

.contact-page__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.contact-info__headline {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tint);
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold-text);
}

.contact-info-item__icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-item__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 3px;
}

.contact-info-item__value {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}

.contact-info-item__value a {
  color: var(--ink);
  transition: color 0.15s ease;
}

.contact-info-item__value a:hover {
  color: var(--gold-text);
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.contact-trust__item::before {
  content: '◆';
  color: var(--gold-text);
  font-size: 0.5625rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Form card — light-background context overrides dark CTA form defaults */
.contact-form-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}

.contact-form-card .form-label {
  color: var(--ink);
}

.contact-form-card .form-required {
  color: var(--gold-text);
}

.contact-form-card .form-required-note {
  color: var(--ink-soft);
  opacity: 1;
}

.contact-form-card .form-input {
  color: var(--ink);
  background-color: var(--bg);
  border-color: var(--border);
}

.contact-form-card .form-input:focus {
  border-color: var(--gold);
}

.contact-form-card .form-input::placeholder {
  color: var(--ink-soft);
  opacity: 0.55;
}

.contact-form-card .form-error {
  color: #b91c1c;
}

.contact-form-card .form-errors-summary {
  color: #b91c1c;
  background-color: rgba(185, 28, 28, 0.05);
  border-color: rgba(185, 28, 28, 0.25);
}

.contact-form-card .contact-form {
  margin: 0;
  max-width: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Success state */
.contact-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.contact-success.is-visible {
  display: block;
}

.contact-success__icon {
  width: 56px;
  height: 56px;
  background-color: var(--tint);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-text);
}

.contact-success__icon svg {
  width: 24px;
  height: 24px;
}

.contact-success__headline {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.contact-success__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 28px;
}

@media (max-width: 900px) {
  .contact-page__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-page__info { order: 2; }
  .contact-page__form-col { order: 1; }
}

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

  .contact-form-card { padding: 24px; }

  .page-hero { padding: 48px 20px 40px; }

  .contact-page { padding: 48px 20px 72px; }
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

/* Main area */
.site-footer__main {
  padding: 64px 24px 56px;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

/* Brand block */
.site-footer__brand {
  flex: 0 0 280px;
}

.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.site-footer__logo {
  height: 52px;
  width: auto;
  display: block;
}

.site-footer__tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: normal;
}

.site-footer__contact-link,
.site-footer__contact-loc {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.site-footer__contact-link {
  transition: color 0.15s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
  color: var(--gold-text);
}

/* Nav columns */
.site-footer__cols {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 48px;
}

.site-footer__col {
  min-width: 148px;
}

.site-footer__col-heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 18px;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer__col a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
  display: block;
}

.site-footer__col a:hover,
.site-footer__col a:focus-visible {
  color: var(--ink);
}

.site-footer__cta-prompt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}

.site-footer__cta-btn {
  font-size: 0.8125rem;
  padding: 9px 18px;
}

/* Bottom bar */
.site-footer__bar {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.site-footer__bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.site-footer__copy,
.site-footer__domain {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--gold-text);
}

/* --------------------------------------------------------------------------
   15. Service Page Hero
   -------------------------------------------------------------------------- */
.service-hero {
  background-color: var(--bg);
  padding: 80px 24px 72px;
  border-bottom: 1px solid var(--border);
}

.service-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 24px;
}

.service-hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 20px;
}

.service-hero__value {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Two-column hero layout: text + XL decorative icon */
.service-hero__layout {
  display: flex;
  align-items: center;
  gap: 72px;
}

.service-hero__text {
  flex: 1;
  min-width: 0;
}

.service-hero__icon-slot {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.9;
}

.service-hero__icon-slot svg {
  width: 300px;
  height: 300px;
  display: block;
}

/* --------------------------------------------------------------------------
   16. Why It Matters
   -------------------------------------------------------------------------- */
.why-matters {
  background-color: var(--surface);
  padding: var(--section-pad-sm);
  border-bottom: 1px solid var(--border);
}

.why-matters__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-matters__body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 28px;
}

.compliance-row {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--gold-text);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   17. Scope Grid
   -------------------------------------------------------------------------- */
.scope {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.scope__header {
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.scope__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  background-color: var(--border);
}

/* --------------------------------------------------------------------------
   18. Deliverables
   -------------------------------------------------------------------------- */
.deliverables {
  background-color: var(--bg);
  padding: var(--section-pad);
}

.deliverables__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.deliverables__layout {
  display: flex;
  align-items: center;
  gap: 72px;
}

.deliverables__visual {
  flex-shrink: 0;
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliverables__doc-icon {
  color: var(--gold);
  opacity: 0.85;
}

.deliverables__doc-icon svg {
  width: 330px;
  height: 330px;
  display: block;
}

.deliverables__content {
  flex: 1;
  min-width: 0;
}

.deliverables__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.deliverable {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.deliverable:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.deliverable__marker {
  color: var(--gold-text);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.deliverable__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 900px) {
  .deliverables__layout {
    gap: 40px;
  }
  .deliverables__visual {
    width: 36%;
  }
  .deliverables__doc-icon svg {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 600px) {
  .deliverables__layout {
    flex-direction: column;
    gap: 32px;
  }
  .deliverables__visual {
    width: auto;
  }
  .deliverables__doc-icon svg {
    width: 110px;
    height: 110px;
  }
}

/* --------------------------------------------------------------------------
   19. Methodology
   -------------------------------------------------------------------------- */
.methodology {
  background-color: var(--surface);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.methodology__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.methodology__body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* --------------------------------------------------------------------------
   20. Accessibility Statement Page
   -------------------------------------------------------------------------- */
.a11y-page {
  background-color: var(--bg);
  padding: var(--section-pad);
}

.a11y-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.a11y-page h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 8px;
}

.a11y-page .meta {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: 52px;
}

.a11y-page h2 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 10px;
}

.a11y-page p,
.a11y-page li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}

.a11y-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.a11y-page a {
  color: var(--gold-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.a11y-page a:hover {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   21. Responsive — Tablet (≤900px)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .service-hero__layout {
    gap: 40px;
  }

  .service-hero__icon-slot {
    width: 200px;
  }

  .service-hero__icon-slot svg {
    width: 180px;
    height: 180px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .threat-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .threat-stat {
    border-left: none;
    padding: 0 24px;
  }

  .threat-stat:first-child,
  .threat-stat:nth-child(3) {
    padding-left: 0;
  }

  .threat-stat:nth-child(2),
  .threat-stat:last-child {
    padding-right: 0;
  }

  .bcpp__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bcpp__card:nth-child(3) {
    border-right: none;
  }

  .bcpp__card:nth-child(4),
  .bcpp__card:nth-child(5) {
    border-top: 1px solid var(--border);
  }

  .svc-group__hd {
    flex-direction: column;
    gap: 16px;
  }

  .svc-group__desc {
    max-width: none;
    padding-top: 0;
  }

  .how-we-test__header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-we-test__diagram {
    padding: 28px 20px 20px;
  }

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

  .differentiator {
    border-right: none;
  }

  .differentiator:nth-child(even) {
    border-right: none;
  }

  .differentiator:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }

  .differentiator:nth-child(4) {
    border-bottom: none;
  }

  .cta-panel {
    padding: 52px 36px;
  }

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

  .services-cat {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-cat__header {
    position: static;
  }
}

/* --------------------------------------------------------------------------
   22. Responsive — Mobile (≤600px)
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  :root {
    --section-pad:    64px 20px;
    --section-pad-sm: 48px 20px;
  }

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

  .bcpp__card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .bcpp__card:nth-child(4),
  .bcpp__card:nth-child(5) {
    border-top: none;
  }

  .bcpp__card:last-child {
    border-bottom: none;
  }

  .svc-section__intro {
    flex-direction: column;
    gap: 6px;
  }

  .svc-group__hd {
    padding: 28px 0 24px;
  }

  .svc-row {
    padding: 16px 0;
  }

  .svc-row__name {
    font-size: 0.9375rem;
  }

  .svc-row__hint {
    font-size: 0.75rem;
    white-space: normal;
  }

  .threat-stats {
    padding: 44px 20px;
  }

  .threat-stats__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .threat-stat,
  .threat-stat:nth-child(3) {
    padding: 0;
    border-left: none;
  }

  .nav__links,
  .nav__ctas {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 64px 20px 56px;
  }

  .hero::before {
    background-position: center center;
  }

  .hero::after {
    background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay));
  }

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


  .cta-panel {
    padding: 44px 24px;
    text-align: left;
  }

  .cta-panel__sub {
    margin-left: 0;
    margin-right: 0;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer__brand {
    flex: 0 0 auto;
  }

  .site-footer__cols {
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    width: 100%;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-hero {
    padding: 56px 20px 52px;
  }

  .service-hero__layout {
    flex-direction: column-reverse;
    gap: 36px;
  }

  .service-hero__icon-slot {
    width: auto;
  }

  .service-hero__icon-slot svg {
    width: 120px;
    height: 120px;
  }

  .differentiators {
    border: none;
    gap: 1px;
    background-color: var(--border);
  }

  .services-cat__grid {
    grid-template-columns: 1fr;
  }

  .services-cat + .services-cat {
    margin-top: 56px;
    padding-top: 56px;
  }
}

/* --------------------------------------------------------------------------
   22b. Screen-reader utility
   -------------------------------------------------------------------------- */
.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;
}

/* --------------------------------------------------------------------------
   24. Footer — Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .site-footer__inner {
    gap: 40px;
  }

  .site-footer__brand {
    flex: 0 0 220px;
  }

  .site-footer__cols {
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
  }
}

/* --------------------------------------------------------------------------
   23. Focus & Skip Link
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--gold-text);
  outline-offset: 3px;
  border-radius: 1px;
}

.form-input:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 0;
}

.skip-link {
  position: absolute;
  top: -200%;
  left: 24px;
  background: var(--dark);
  color: var(--cream);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 2px;
  border: 2px solid var(--gold);
  text-decoration: none;
}

.skip-link:focus-visible {
  top: 8px;
}

/* --------------------------------------------------------------------------
   24. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --------------------------------------------------------------------------
   25. Accessibility Panel Widget
   -------------------------------------------------------------------------- */

/* ── Nav wrapper — positions the a11y trigger + panel together ── */
.nav-a11y-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ── Shared nav icon button base (theme + a11y triggers) ── */
.a11y-trigger,
.theme-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 7px;
  background-color: rgba(201, 168, 76, 0.08);
  color: var(--gold-text);
  border: 1px solid rgba(201, 168, 76, 0.22);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.a11y-trigger:hover,
.theme-fab:hover {
  background-color: rgba(201, 168, 76, 0.16);
  border-color: var(--gold);
}

.a11y-trigger svg {
  width: 18px;
  height: 18px;
}

.theme-fab .theme-icon {
  width: 18px;
  height: 18px;
}

.a11y-trigger:focus-visible,
.theme-fab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Tooltip labels (drop down below buttons) ── */
.a11y-trigger::after,
.theme-fab::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  white-space: nowrap;
  pointer-events: none;
  background-color: #1e1e1e;
  color: #f5f0e8;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  padding: 6px 10px;
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
  opacity: 0;
  z-index: 1010;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.a11y-trigger:hover::after,
.a11y-trigger:focus-visible::after,
.theme-fab:hover::after,
.theme-fab:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .a11y-trigger::after,
  .theme-fab::after {
    transition: opacity 0.1s ease;
    transform: translateX(-50%);
  }
}

/* ── Accessibility panel (drops below trigger, right-aligned) ── */
.a11y-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 999;
  width: 284px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  padding: 20px;
}

.a11y-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.a11y-panel__title {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f5f0e8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.a11y-panel__close {
  background: none;
  border: none;
  color: #8a8480;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  border-radius: 4px;
  transition: color 0.15s ease;
}

.a11y-panel__close:hover { color: #f5f0e8; }

.a11y-panel__close svg {
  width: 17px;
  height: 17px;
  display: block;
}

.a11y-panel__grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.a11y-tile {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: #8a8480;
  font-family: var(--font-body);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.a11y-tile:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.6);
  color: #f5f0e8;
}

.a11y-tile.is-active {
  background-color: rgba(201, 168, 76, 0.18);
  border-color: #C9A84C;
  color: #f5f0e8;
}

.a11y-tile__icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a11y-tile__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.a11y-tile__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
}

.a11y-panel__reset {
  width: 100%;
  background-color: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  color: #8a8480;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 9px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.a11y-panel__reset:hover {
  background-color: rgba(201, 168, 76, 0.18);
  color: #f5f0e8;
}

/* Focus styles inside the panel */
.a11y-tile:focus-visible,
.a11y-panel__close:focus-visible,
.a11y-panel__reset:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Accessibility Feature Classes (applied to <html>)
   -------------------------------------------------------------------------- */

/* Bigger Text — bumps root font-size so all rem values scale up */
html.a11y-bigger-text {
  font-size: 20px;
}

/* High Contrast (light mode) */
html.a11y-high-contrast {
  --bg:      #ffffff;
  --surface: #ffffff;
  --ink:     #000000;
  --ink-soft: #111111;
  --border:  #000000;
  --gold-text: #5a3e00;
  --gold:    #5a3e00;
  --tint:    #fffde7;
  --nav-bg:  rgba(255, 255, 255, 0.98);
}

/* High Contrast (dark mode) */
html[data-theme="dark"].a11y-high-contrast {
  --bg:      #000000;
  --surface: #000000;
  --ink:     #ffffff;
  --ink-soft: #eeeeee;
  --border:  #ffffff;
  --gold-text: #ffd700;
  --gold:    #ffd700;
  --tint:    #111100;
  --nav-bg:  rgba(0, 0, 0, 0.98);
}

/* Desaturate / Grayscale */
html.a11y-desaturate {
  filter: grayscale(100%);
}

/* Highlight Links — force underlines on all anchor elements */
html.a11y-highlight-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}

/* Big Cursor */
html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M6 4 L6 33 L13 26 L17 37 L21 35 L17 24 L26 24 Z' fill='%23000000' stroke='%23ffffff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") 6 4, auto !important;
}

/* Legible Fonts — overrides decorative typefaces with plain, high-legibility system fonts */
html.a11y-legible-fonts {
  --font-headline: Verdana, Arial, Helvetica, sans-serif;
  --font-body:     Verdana, Arial, Helvetica, sans-serif;
  --font-mono:     'Courier New', Courier, monospace;
}

html.a11y-legible-fonts body {
  letter-spacing: 0.012em;
  word-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   26. BCPP Dedicated Page
   -------------------------------------------------------------------------- */

.bcpp-hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.bcpp-stat-strip {
  display: flex;
  border: 1px solid var(--border);
  margin-top: 48px;
}

.bcpp-stat {
  flex: 1;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}

.bcpp-stat:last-child {
  border-right: none;
}

.bcpp-stat__number {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold-text);
  line-height: 1;
  margin-bottom: 6px;
}

.bcpp-stat__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.bcpp-intro {
  background-color: var(--surface);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.bcpp-intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.bcpp-intro__kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 16px;
}

.bcpp-intro__headline {
  font-family: var(--font-headline);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}

.bcpp-intro__body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.bcpp-intro__body p + p {
  margin-top: 16px;
}

.bcpp-intro__aside {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.bcpp-intro__aside-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 20px;
}

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

.bcpp-intro__aside-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.bcpp-intro__aside-item:last-child {
  border-bottom: none;
}

.bcpp-intro__aside-item::before {
  content: "→";
  color: var(--gold-text);
  flex-shrink: 0;
  font-weight: 600;
  font-family: var(--font-mono);
}

.bcpp-dark {
  background-color: #111111;
  padding: var(--section-pad);
}

.bcpp-dark__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.bcpp-dark__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 16px;
}

.bcpp-dark__headline {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.15;
  margin-bottom: 20px;
}

.bcpp-dark__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #B5AFA6;
  line-height: 1.7;
}

.bcpp-dark__points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.bcpp-dark__point {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #B5AFA6;
  line-height: 1.5;
}

.bcpp-dark__point:last-child {
  border-bottom: none;
}

.bcpp-dark__point-marker {
  color: #C9A84C;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 2px;
}

.bcpp-quote {
  border-left: 3px solid #C9A84C;
  padding: 28px 32px;
  background: rgba(201, 168, 76, 0.06);
}

.bcpp-quote__text {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: #F5F0E8;
  line-height: 1.45;
  margin-bottom: 16px;
}

.bcpp-quote__caption {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #B5AFA6;
  line-height: 1.5;
}

.bcpp-schedule {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.bcpp-schedule__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.bcpp-schedule__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.bcpp-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.bcpp-timeline__item {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}

.bcpp-timeline__item:last-child {
  border-right: none;
}

.bcpp-timeline__q {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 4px;
}

.bcpp-timeline__month {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.bcpp-timeline__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bcpp-timeline__list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.bcpp-timeline__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold-text);
  font-weight: 700;
}

.bcpp-timeline__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-text);
  padding: 4px 10px;
  border-radius: 2px;
}

.bcpp-who {
  background-color: var(--surface);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.bcpp-who__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

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

.bcpp-who__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.bcpp-who__item:first-child {
  border-top: 1px solid var(--border);
}

.bcpp-who__check {
  color: var(--gold-text);
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2px;
}

.bcpp-who__name {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.bcpp-who__detail {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.bcpp-options {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.bcpp-options__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.bcpp-options__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.bcpp-options__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bcpp-options__note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.bcpp-option {
  border: 1px solid var(--border);
  padding: 40px 36px;
}

.bcpp-option--featured {
  border-color: var(--gold);
}

.bcpp-option__badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 16px;
}

.bcpp-option__name {
  font-family: var(--font-headline);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.bcpp-option__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.bcpp-option__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bcpp-option__feature {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.bcpp-option__feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-text);
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .bcpp-intro__inner,
  .bcpp-dark__inner,
  .bcpp-who__inner,
  .bcpp-options__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bcpp-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .bcpp-timeline__item:nth-child(2) {
    border-right: none;
  }

  .bcpp-timeline__item:nth-child(3) {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .bcpp-timeline__item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }
}

@media (max-width: 600px) {
  .bcpp-stat-strip {
    flex-wrap: wrap;
  }

  .bcpp-stat {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .bcpp-stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .bcpp-stat:nth-child(3) {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: none;
  }

  .bcpp-timeline {
    grid-template-columns: 1fr;
  }

  .bcpp-timeline__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .bcpp-timeline__item:last-child {
    border-bottom: none;
  }

  .bcpp-timeline__item:nth-child(3) {
    border-right: none;
  }

  .bcpp-timeline__item:nth-child(4) {
    border-right: none;
  }

  .bcpp-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   27. Resources Page
   -------------------------------------------------------------------------- */

.resources-hero {
  background-color: var(--bg);
  padding: 72px 24px 56px;
  border-bottom: 1px solid var(--border);
}

.resources-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.resources-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 16px;
}

.resources-hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}

.resources-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 680px;
}

.resources-body {
  background-color: var(--bg);
  padding: 56px 24px 96px;
}

.resources-body__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.resource-group {
  margin-bottom: 64px;
}

.resource-group:last-child {
  margin-bottom: 0;
}

.resource-group__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.resource-group__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
  display: none;
}

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

.resource-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  margin-top: -1px;
  background-color: var(--surface);
  position: relative;
  z-index: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.resource-row:first-child {
  margin-top: 0;
}

.resource-row:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
  z-index: 1;
}

.resource-row__icon {
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 2px;
}

.resource-row__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.resource-row__content {
  flex: 1;
  min-width: 0;
}

.resource-row__title-link {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.12s ease;
}

.resource-row__title-link:hover {
  color: var(--gold-text);
}

.resource-row__title-link:focus-visible {
  outline: 3px solid var(--gold-text);
  outline-offset: 2px;
  border-radius: 1px;
}

.resource-row__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 10px;
}

.resource-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.resource-row__tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  background: rgba(201, 168, 76, 0.12);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 600;
}

.resource-row__size,
.resource-row__date {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.resource-row__meta-sep {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--border);
  user-select: none;
}

.resource-row__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-left: 16px;
}

.resource-row__download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: transparent;
  white-space: nowrap;
  transition: color 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
}

.resource-row__download:hover {
  color: var(--gold-text);
  border-color: var(--gold);
  background-color: rgba(201, 168, 76, 0.06);
}

.resource-row__download:focus-visible {
  outline: 3px solid var(--gold-text);
  outline-offset: 2px;
  border-radius: 1px;
}

.resource-row__download svg {
  width: 13px;
  height: 13px;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .resource-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .resource-row__actions {
    flex: 0 0 100%;
    padding-left: 42px;
    margin-left: 0;
  }
}

/* --------------------------------------------------------------------------
   28. Company Page
   -------------------------------------------------------------------------- */

.company-pos {
  background-color: var(--surface);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.company-pos__inner {
  max-width: 760px;
  margin: 0 auto;
}

.company-pos__body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-top: 20px;
}

.company-why {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.company-why__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.company-why__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.company-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.company-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.company-card:nth-child(even) {
  border-right: none;
}

.company-card:nth-child(3),
.company-card:nth-child(4) {
  border-bottom: none;
}

.company-card__title {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.company-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.company-serve {
  background-color: var(--surface);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.company-serve__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

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

.company-serve__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.company-serve__item:first-child {
  border-top: 1px solid var(--border);
}

.company-serve__name {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.company-serve__detail {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.company-creds {
  background-color: var(--bg);
  padding: var(--section-pad-sm);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.company-creds__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.company-creds__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 16px auto 36px;
  line-height: 1.65;
}

.company-creds__display {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-text);
  text-transform: uppercase;
}

.company-cta-btn {
  margin-top: 36px;
  display: block;
}

@media (max-width: 960px) {
  .company-serve__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company-cards {
    grid-template-columns: 1fr;
  }

  .company-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .company-card:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }

  .company-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .resources-hero {
    padding: 48px 20px 40px;
  }

  .resources-body {
    padding: 40px 20px 72px;
  }

  .resource-row {
    padding: 16px 16px;
    gap: 12px;
  }

  .resource-row__desc {
    white-space: normal;
  }
}

/* --------------------------------------------------------------------------
   29. Cookie Consent Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  will-change: transform, opacity;
  /* Support iOS safe-area (home bar) */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: opacity 0.2s ease;
    transform: none;
  }

  .cookie-banner--hidden {
    transform: none;
  }
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.cookie-banner__link {
  color: var(--gold-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}

.cookie-banner__link:hover {
  color: var(--ink);
}

.cookie-banner__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 1px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

/* Compact sizing — consistent with the nav CTA override */
.cookie-banner .btn {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px 18px;
    gap: 14px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   30. Policy Pages (Privacy Policy, Terms of Service, etc.)
   -------------------------------------------------------------------------- */
.policy-updated {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
}

.policy-content {
  background-color: var(--bg);
  padding: var(--section-pad);
}

.policy-content__inner {
  max-width: 780px;
  margin: 0 auto;
}

.policy-lead {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.82;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.policy-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.policy-section__heading {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.policy-section__body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.82;
}

.policy-section__body p + p {
  margin-top: 14px;
}

.policy-section__body a {
  color: var(--gold-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.policy-section__body a:hover {
  color: var(--ink);
}

.policy-section__body a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 1px;
}

@media (max-width: 600px) {
  .policy-content {
    padding: 40px 20px 72px;
  }
}

/* --------------------------------------------------------------------------
   31. Status Pages (Coming Soon, 404 Not Found)
   -------------------------------------------------------------------------- */
.status-page {
  background-color: var(--bg);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.status-page__inner {
  max-width: 540px;
  width: 100%;
}

.status-page__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  width: 80px;
  height: 80px;
  color: var(--gold-text);
  opacity: 0.45;
}

.status-page__icon svg {
  width: 100%;
  height: 100%;
}

.status-page__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--gold-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.status-page__headline {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 24px;
}

.status-page__body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.78;
  margin-bottom: 40px;
}

.status-page__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .status-page {
    padding: 60px 20px;
  }

  .status-page__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   32. How It Works Page & Homepage Teaser
   -------------------------------------------------------------------------- */

/* ── Engagement flow section ─────────────────────────────────────────────── */
.hiw-flow {
  background-color: var(--bg);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.hiw-flow__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hiw-flow__header {
  max-width: 600px;
  margin-bottom: 56px;
}

.hiw-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
}

.hiw-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.hiw-step:first-child {
  padding-top: 0;
}

.hiw-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hiw-step__num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-text);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 24px;
  line-height: 1.5;
  padding-top: 1px;
}

.hiw-step__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-text);
  margin-top: 2px;
}

.hiw-step__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.hiw-step__body {
  flex: 1;
  min-width: 0;
}

.hiw-step__title {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.hiw-step__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

/* ── Reassurance band ────────────────────────────────────────────────────── */
.hiw-assurance {
  background-color: var(--surface);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-assurance__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hiw-assurance__header {
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── "One process" prose section ─────────────────────────────────────────── */
.hiw-applies {
  background-color: var(--bg);
  padding: var(--section-pad-sm);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hiw-applies__inner {
  max-width: 680px;
  margin: 0 auto;
}

.hiw-applies__body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.78;
  margin-top: 12px;
}

/* ── Homepage How It Works — 6-step grid ────────────────────────────────── */
.hiw-home {
  background-color: var(--surface);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-home__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hiw-home__header {
  max-width: 640px;
  margin-bottom: 32px;
}

.hiw-home__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.72;
  margin-top: 12px;
}

.hiw-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.hiw-home__card {
  background-color: var(--bg);
  padding: 20px 24px;
}

.hiw-home__card-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--gold-text);
  display: block;
  margin-bottom: 8px;
}

.hiw-home__card-title {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}

.hiw-home__card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.68;
}

@media (max-width: 640px) {
  .hiw-home {
    padding: 64px 20px;
  }

  .hiw-home__grid {
    grid-template-columns: 1fr;
  }
}
