/* ─────────────────────────────────────
   TOKENS
───────────────────────────────────── */
:root {
  --black:        #0b0b0b;
  --ink:          #111111;
  --cream:        #F5F2EC;
  --red:          #cc0000;
  --border-dark:  rgba(255,255,255,0.09);
  --body:         'Inter', system-ui, sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─────────────────────────────────────
   RESET & BASE
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
img, video, svg { max-width: 100%; height: auto; display: block; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 24px;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.dark {
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-dark);
}
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

/* ─────────────────────────────────────
   HERO - full-viewport video
───────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(11,11,11,0.25) 0%,
    rgba(11,11,11,0.40) 100%
  );
}

/* ─────────────────────────────────────
   HERO INTRO - content over video
───────────────────────────────────── */
.hero-intro {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 60px;
  width: 100%;
  max-width: 960px;
}

.hero-h1 {
  font-size: clamp(30px, 5.8vw, 92px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeUp 0.9s 0.1s var(--ease) both;
}
.hero-h1 em {
  font-style: normal;
  color: var(--red);
  margin-bottom: 24px;
}
.hero-h1-sub {
  font-size: clamp(20px, 3.5vw, 56px);
  letter-spacing: -0.5px;
  font-weight: 500;
}
.hero-h1-sub-br {
  display: block;
}
.typewriter-word {
  display: inline-block;
  min-width: 2ch;
  opacity: 0;
  transform: translateX(-300px);
  will-change: opacity, transform;
}
.typewriter-word.tw-cycle {
  animation: twCycle 6.5s forwards;
}
@keyframes twCycle {
  0%   { opacity: 0; transform: translateX(-300px); animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }
  28%  { opacity: 1; transform: translateX(0);      animation-timing-function: linear; }
  72%  { opacity: 1; transform: translateX(0);      animation-timing-function: ease-in; }
  100% { opacity: 0; transform: translateX(0); }
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 400;
  color: rgba(245,242,236,0.82);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
  animation: heroFadeUp 0.9s 0.25s var(--ease) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.4s var(--ease) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-h1, .hero-sub, .hero-actions { animation: none; }
}

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn-outline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #fff;
  background: var(--red);
  border: 1.5px solid var(--red);
  padding: 14px 30px;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
  display: inline-block;
}
.btn-outline:hover {
  background: #b8150c;
  color: #fff;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────
   SECTION - MESSAGE
───────────────────────────────────── */
.section-message {
  background: #151517;
  padding: 110px 24px;
  text-align: center;
}
.section-message-inner {
  max-width: 760px;
  margin: 0 auto;
}
.section-message-h2 {
  font-size: clamp(26px, 5vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-message-h2 > span {
  display: block;
}
h1 em, h2 em, h3 em {
  display: inline-block;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
h1 em.is-visible, h2 em.is-visible, h3 em.is-visible {
  opacity: 1;
  transform: scale(1);
}
.section-message-h2 em {
  font-style: normal;
  color: var(--red);
}
.section-message-sub {
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  color: rgba(245,242,236,0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─────────────────────────────────────
   SECTION - PRODUCTS (Apex Product Suite)
───────────────────────────────────── */
.section-products {
  background: #0b0b0b;
  padding: 110px 24px;
}
.section-products-inner {
  max-width: 800px;
  margin: 0 auto;
}
.section-products-h2 {
  font-size: clamp(22px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 32px;
}
.section-products-h2 em {
  font-style: normal;
  color: var(--red);
}
.section-products-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(245,242,236,0.55);
  line-height: 1.7;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

/* Steps list */
.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: none;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(204,0,0,0.18);
}
.process-step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 48px;
}
.process-step:last-child {
  padding-bottom: 0;
}
.process-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: #151517;
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.process-step-content {
  flex: 1;
  padding-top: 6px;
}
.process-step-title {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.process-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 9999px;
  padding: 2px 10px;
  vertical-align: middle;
  margin-left: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.process-step-desc {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(245,242,236,0.55);
  line-height: 1.7;
}
.process-step-product {
  color: var(--red);
  font-size: 1.15em;
}

/* ─────────────────────────────────────
   SECTION - ADVANTAGE
───────────────────────────────────── */
.section-advantage {
  background: #151517;
  padding: 100px 24px 110px;
}
.section-advantage-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-advantage-h2 {
  font-size: clamp(24px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 72px;
}
.section-advantage-h2 em {
  font-style: normal;
  color: var(--red);
}
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.advantage-card {
  background: #0b0b0b;
  border-radius: 16px;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
}
.advantage-card-icon {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  height: 78px;
}
.advantage-card-text {
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  flex: 1;
}
.advantage-card-text em {
  font-style: normal;
  color: var(--red);
}
.advantage-card-plus {
  align-self: flex-end;
  margin-top: 24px;
  background: none;
  border: none;
  border-radius: 50%;
  color: rgba(245,242,236,0.6);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.advantage-card-plus:hover {
  color: var(--red);
}
.advantage-card-plus svg {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.advantage-card-plus:hover svg {
  transform: rotate(360deg);
}
.advantage-card-plus svg line {
  stroke-width: 3.5;
}
.convert-ring {
  transform-box: fill-box;
  transition: transform 0.4s var(--ease);
}
.advantage-card:hover .convert-ring {
  transform: translateX(-270%);
}
.convert-arrow {
  transform-box: fill-box;
  transform-origin: center;
  transform: scaleX(-1);
}
.attract-satellites {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transform: scale(1.45);
  transition: transform 0.5s var(--ease);
}
.advantage-card:hover .attract-satellites {
  transform: scale(1);
}
.sat-fills {
  opacity: 0;
  transition: opacity 0.15s var(--ease) 0s;
}
.advantage-card:hover .sat-fills {
  opacity: 1;
  transition: opacity 0.15s var(--ease) 0.4s;
}
.stop-bars {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.5s var(--ease);
}
.advantage-card:hover .stop-bars {
  clip-path: inset(0 0 0 0);
}

/* ─────────────────────────────────────
   SECTION - PARTNER / COMPARISON TABLE
───────────────────────────────────── */
.section-partner {
  background: #0b0b0b;
  padding: 100px 24px 110px;
}
.section-partner-inner {
  max-width: 860px;
  margin: 0 auto;
}
.section-partner-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-partner-h2 {
  font-size: clamp(24px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
}
.section-partner-h2 em {
  font-style: normal;
  color: var(--red);
}
.section-partner-sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(245,242,236,0.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Table */
.comparison-table-wrap {
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.comparison-table th {
  font-size: 12px;
  font-weight: 400;
  color: rgba(245,242,236,0.4);
  padding: 0 16px 16px;
  text-align: center;
}
.comparison-table th.col-capability {
  text-align: left;
  padding-left: 0;
}
.comparison-table th.col-apex {
  color: var(--red);
  font-weight: 600;
}
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}
.comparison-table td {
  padding: 18px 16px;
  text-align: center;
  color: rgba(245,242,236,0.45);
  font-size: 13px;
}
.comparison-table td:first-child {
  text-align: left;
  padding-left: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
}
.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}

/* ─────────────────────────────────────
   SECTION - LEADERSHIP
───────────────────────────────────── */
.section-leadership {
  background: #151517;
  padding: 100px 24px 110px;
}
.section-leadership-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-leadership-h2 {
  font-size: clamp(24px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 80px;
}
.section-leadership-h2 em {
  font-style: normal;
  color: var(--red);
}

/* Mobile: single column */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.leader-card {
  background: #0b0b0b;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.leader-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #1e1e1e;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 6px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 6px
  );
  flex-shrink: 0;
}
img.leader-photo {
  display: block;
  object-fit: cover;
  object-position: top;
  background-image: none;
}
.leader-info {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.leader-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1px;
}
.leader-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.leader-card-plus {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 16px;
  background: none;
  border: none;
  border-radius: 50%;
  color: rgba(245,242,236,0.6);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.leader-card-plus:hover {
  color: var(--red);
}
.leader-card-plus svg {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.leader-card-plus:hover svg {
  transform: rotate(360deg);
}
.audit-card-plus {
  align-self: flex-end;
  margin-top: auto;
  background: none;
  border: none;
  border-radius: 50%;
  color: rgba(245,242,236,0.6);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.audit-card-plus:hover {
  color: var(--red);
}
.audit-card-plus svg {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.audit-card-plus:hover svg {
  transform: rotate(360deg);
}
/* ─────────────────────────────────────
   SCORECARD MODAL
───────────────────────────────────── */
.product-modal-card--scorecard {
  max-width: 760px !important;
  width: calc(100vw - 48px) !important;
  padding: 0;
  overflow: hidden;
}
.product-modal-card--scorecard .product-modal-close {
  top: 12px;
  right: 12px;
  z-index: 1;
}
.scorecard {
  font-family: inherit;
}
.scorecard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid #cc0000;
}
.scorecard-brand {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}
.scorecard-brand strong {
  color: #cc0000;
}
.scorecard-sample-label {
  font-size: 11px;
  font-weight: 600;
  color: #cc0000;
  border: 1px solid #cc0000;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 36px;
}
.scorecard-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #cc0000;
}
.scorecard-left {
  padding: 20px;
  border-right: 1px solid #cc0000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.scorecard-tagline {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin: 0;
}
.scorecard-score {
  font-size: clamp(30px, 5.8vw, 46px);
  font-weight: 900;
  color: #cc0000;
  line-height: 1;
}
.scorecard-condition {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #cc0000;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #cc0000;
  width: fit-content;
}
.scorecard-metrics {
  display: flex;
  flex-direction: column;
}
.scorecard-metric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid #cc0000;
  padding: 10px 16px;
}
.scorecard-metric--last {
  border-bottom: none;
}
.scorecard-metric-cat {
  font-size: 11px;
  font-weight: 700;
  color: #cc0000;
  line-height: 1.3;
  padding-right: 10px;
}
.scorecard-metric-bar {
  display: none;
}
.scorecard-metric-value {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.scorecard-metric-pct {
  font-size: 28px;
  font-weight: 900;
  color: #cc0000;
  line-height: 1;
}
.scorecard-bar-track {
  width: 100%;
  height: 5px;
  background: #f0dada;
  border-radius: 3px;
  overflow: hidden;
  margin: 4px 0 3px;
}
.scorecard-bar-fill {
  height: 100%;
  background: #cc0000;
  border-radius: 3px;
  transition: width 0.4s ease;
}
.scorecard-metric-note {
  font-size: 11px;
  color: #444;
  line-height: 1.3;
}
.scorecard-insight {
  padding: 14px 20px;
  font-size: 13px;
  color: #222;
  line-height: 1.6;
  border-top: 1px solid #ddd;
}
.scorecard-insight strong {
  color: #111;
}
@media (max-width: 540px) {
  .scorecard-main { grid-template-columns: 1fr; }
  .scorecard-left { border-right: none; border-bottom: 1px solid #cc0000; }
  .product-modal-card--snapshot,
  .product-modal-card--scorecard {
    overflow: visible !important;
  }
  .snapshot {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .snapshot-table {
    min-width: 480px;
  }
  .snapshot-td--gap {
    white-space: normal;
  }
  .snapshot-table--gaps .snapshot-th:first-child {
    width: auto;
  }
  .scorecard-sample-label {
    margin-right: 36px;
  }
}
.product-modal-card--leader {
  max-width: 460px;
  text-align: center;
}
.leader-modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.leader-modal-inner .product-modal-title {
  padding-right: 0;
  margin-bottom: 0;
}
.leader-modal-inner .product-modal-leader-title {
  margin: -12px 0 0;
}
.leader-modal-photo {
  width: 100%;
  max-width: 340px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}
.leader-modal-photo-placeholder {
  width: 100%;
  max-width: 340px;
  height: 300px;
  border-radius: 12px;
  background: #e0ddd6;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.04) 0px,
    rgba(0,0,0,0.04) 1px,
    transparent 1px,
    transparent 6px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(0,0,0,0.04) 0px,
    rgba(0,0,0,0.04) 1px,
    transparent 1px,
    transparent 6px
  );
}
.leader-modal-inner .product-modal-body {
  text-align: left;
  width: 100%;
}
.product-modal-leader-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,242,236,0.5);
  margin: -8px 0 20px;
}

/* ─────────────────────────────────────
   SECTION - AUDIT CTA
───────────────────────────────────── */
.section-audit {
  background: #0b0b0b;
  padding: 100px 24px 110px;
  text-align: center;
}
.section-audit-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-audit-h2 {
  font-size: clamp(24px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 80px;
}
.section-audit-h2 em {
  font-style: normal;
  color: var(--red);
}
.audit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.audit-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
}
.audit-card-body {
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.audit-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.audit-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,242,236,0.75);
  line-height: 1.65;
  flex: 1;
}
.audit-footnote {
  font-size: clamp(13px, 1.3vw, 15px);
  color: rgba(245,242,236,0.5);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─────────────────────────────────────
   AUDIT FORM
───────────────────────────────────── */
.audit-form {
  max-width: 860px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.audit-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  width: 100%;
  align-items: end;
}
.audit-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.audit-form-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(245,242,236,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.audit-form-input {
  background: #1a1a1a;
  border: 1px solid rgba(245,242,236,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--cream);
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  outline: none;
}
.audit-form-input::placeholder {
  color: rgba(245,242,236,0.3);
}
.audit-form-input:focus {
  border-color: rgba(204,0,0,0.6);
  background: #202020;
}
.audit-form-input.is-invalid {
  border-color: #ff6b6b;
  background: #1f1515;
}
.audit-form-field-error {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 4px;
  display: block;
}
.audit-form-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.audit-form-btn:hover {
  background: #aa0000;
  transform: translateY(-1px);
}
.audit-form-btn:active {
  transform: translateY(0);
}
.audit-form-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.audit-form-status {
  font-size: 14px;
  color: rgba(245,242,236,0.7);
  margin: 0;
}
.audit-form-status.is-success { color: #4caf50; }
.audit-form-status.is-error   { color: #ff6b6b; }

/* ─────────────────────────────────────
   SNAPSHOT / GAPS MODALS
───────────────────────────────────── */
.product-modal-card--snapshot {
  max-width: 760px !important;
  width: calc(100vw - 48px) !important;
  padding: 0;
  overflow: hidden;
}
.product-modal-card--snapshot .product-modal-close {
  top: 12px;
  right: 12px;
  z-index: 1;
}
.snapshot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid #cc0000;
}
.snapshot-table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
}
.snapshot-th {
  background: #cc0000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
}
.snapshot-th--num {
  width: 28px;
  padding-left: 20px;
}
.snapshot-tr {
  border-bottom: 1px solid #e0ddd6;
}
.snapshot-tr:last-child {
  border-bottom: none;
}
.snapshot-td {
  padding: 12px 14px;
  font-size: 13px;
  color: #222;
  vertical-align: top;
  line-height: 1.5;
}
.snapshot-td--num {
  font-size: 13px;
  font-weight: 600;
  color: #cc0000;
  padding-left: 20px;
  white-space: nowrap;
  width: 28px;
}
.snapshot-td--name {
  font-weight: 700;
  color: #cc0000;
  white-space: nowrap;
}
.snapshot-td--type {
  font-weight: 700;
  color: #cc0000;
  white-space: nowrap;
}
.snapshot-td--rationale {
  color: #cc0000;
}
.snapshot-td--gap {
  font-weight: 700;
  color: #cc0000;
  white-space: nowrap;
  vertical-align: top;
}
.snapshot-td--behind {
  color: #222;
}
.snapshot-td--opportunity {
  color: #222;
}
.snapshot-table--gaps .snapshot-th:first-child {
  width: 110px;
}
.section-manifesto {
  background: #151517;
  padding: 100px 24px;
}
.section-manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  color: rgba(245,242,236,0.7);
  line-height: 1.7;
  margin: 0 0 52px;
  font-style: italic;
}
.manifesto-quote b {
  color: #ffffff;
  font-weight: 700;
}
.manifesto-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.manifesto-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1px;
}
.manifesto-org {
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: rgba(245,242,236,0.4);
}

/* ─────────────────────────────────────
   SECTION LOGO
───────────────────────────────────── */
.section-logo {
  background: #0b0b0b;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border-dark);
}
.section-logo-img {
  width: 80vw;
  height: auto;
  display: block;
  opacity: 0.15;
}

/* ─────────────────────────────────────
   PRODUCT MODALS
───────────────────────────────────── */
.product-modal[hidden] {
  display: none;
}
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.22s var(--ease);
  overflow-y: auto;
}
.product-modal.is-open {
  opacity: 1;
}
.product-modal-card {
  background: #fff;
  color: #111;
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: translateY(18px);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  margin: auto 0;
}
.product-modal.is-open .product-modal-card {
  transform: none;
}
.product-modal-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
  padding-right: 32px;
  line-height: 1.2;
}
.product-modal-body {
  font-size: 15px;
  color: #222;
  line-height: 1.78;
}
.product-modal-body p + p {
  margin-top: 14px;
}
.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #444;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
  line-height: 1;
}
.product-modal-close:hover {
  background: rgba(0,0,0,0.07);
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--black);
  padding: 56px 24px 32px;
  border-top: 1px solid var(--border-dark);
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}
.foot-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.foot-brand-body {
  font-size: 15px;
  font-weight: 400;
  color: rgba(245,242,236,0.4);
  line-height: 1.7;
  max-width: 200px;
}
.foot-col-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.25);
  margin-bottom: 24px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,242,236,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 11px;
  font-weight: 400;
  color: rgba(245,242,236,0.25);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom a { color: inherit; text-decoration: none; transition: color 0.2s; }
.foot-bottom a:hover { color: rgba(245,242,236,0.5); }

/* ─────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--ink);
  border-top: 1px solid var(--border-dark);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.cookie-banner-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,242,236,0.75);
}
.cookie-banner-link {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link:hover { color: var(--red); }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 10px 24px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
  flex: 1;
  text-align: center;
}
.cookie-btn--accept { background: var(--red); color: #fff; }
.cookie-btn--accept:hover { background: #b8150c; }
.cookie-btn--decline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,242,236,0.2);
}
.cookie-btn--decline:hover { background: rgba(245,242,236,0.08); }

/* ─────────────────────────────────────
   RESPONSIVE - MOBILE-FIRST BREAKPOINTS
───────────────────────────────────── */

/* Small tablet (520px+) */
@media (min-width: 520px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Large phone / small tablet (601px+) */
@media (min-width: 601px) {
  .cookie-banner-inner { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .cookie-banner-text { flex: 1 1 400px; }
  .cookie-btn { flex: none; text-align: left; }
  .product-modal-card { padding: 40px 44px; }
  .section-logo { padding: 80px 24px; }
  .section-logo-img { width: min(72vw, 860px); }
}

/* Tablet (700px+) */
@media (min-width: 700px) {
  .audit-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Audit form stacks on mobile */
@media (max-width: 699px) {
  .audit-form-row { grid-template-columns: 1fr; }
  .audit-form-field--btn { align-items: stretch; }
  .audit-form-btn { width: 100%; }
}

/* Small desktop (769px+) */
@media (min-width: 769px) {
  .hero { aspect-ratio: 21 / 9; min-height: 80vh; }
  .hero-intro { padding: 0 24px; }
  .hero-h1-sub { white-space: nowrap; }
  .hero-h1-sub-br { display: none; }
  .section-message-h2 > span { white-space: nowrap; }
  .section-message        { padding: 220px 24px; }
  .section-products       { padding: 200px 24px 220px; }
  .section-advantage      { padding: 200px 24px 220px; }
  .section-partner        { padding: 200px 24px 220px; }
  .section-leadership     { padding: 200px 24px 220px; }
  .section-audit          { padding: 200px 24px 220px; }
  .section-manifesto      { padding: 180px 24px; }
  .section-logo           { padding: 140px 24px; }
}

/* Small desktop (860px+) */
@media (min-width: 860px) {
  .advantage-grid { grid-template-columns: repeat(3, 1fr); }
  .advantage-card { min-height: 240px; }
  .leadership-grid { grid-template-columns: repeat(6, 1fr); }
  .leader-card { grid-column: span 2; }
  .leader-card:nth-child(4) { grid-column: 2 / span 2; }
  .leader-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* Desktop (901px+) */
@media (min-width: 901px) {
}

/* Desktop (961px+) */
@media (min-width: 961px) {
  nav          { padding: 0 56px; }
  footer       { padding: 72px 56px 40px; }
  .foot-top    { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; padding-bottom: 56px; }
  .foot-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ─────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
