/*
 * mach-about.css
 * /wp-content/themes/mach-io/assets/mach-about.css
 */

/* ── TOKENS (identical to Nexus / RadX) ── */
:root {
  --display: 'Bebas Neue', Impact, sans-serif;
  --sans: 'Poppins', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --bg: #04070d;
  --bg-2: #070b14;
  --surface: #0d1420;
  --surface-2: #111826;
  --elevated: #151e2c;
  --text: #eef2ff;
  --text-2: #8594b4;
  --text-3: #4a5878;
  --text-4: #2e3d58;
  --mach: #1fb6f0;
  --mach-bright: #3fc5f8;
  --mach-dim: rgba(31, 182, 240, .08);
  --mach-glow: rgba(31, 182, 240, .4);
  --warn: #ff5b5b;
  --warn-dim: rgba(255, 91, 91, .08);
  --green: #22c55e;
  --hairline: rgba(255, 255, 255, .07);
  --hairline-2: rgba(255, 255, 255, .13);
  --hairline-strong: rgba(255, 255, 255, .2);
  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --sy: clamp(80px, 10vw, 120px);
  --radius: 10px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--mach-dim);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(1200px 700px at 80% -10%, rgba(31, 182, 240, .08), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(31, 182, 240, .05), transparent 60%);
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

section {
  position: relative;
  z-index: 3;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mach);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--mach);
  opacity: .7;
}

.eyebrow.center {
  justify-content: center;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .92;
  text-transform: uppercase;
  margin: 0;
}

.h-xl {
  font-size: clamp(60px, 10vw, 152px);
}

.h-lg {
  font-size: clamp(44px, 6.4vw, 104px);
}

.h-md {
  font-size: clamp(34px, 4.2vw, 68px);
}

.h-sm {
  font-size: clamp(22px, 2.4vw, 32px);
}

.body-lg {
  font-size: clamp(17px, 1.2vw, 19px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 60ch;
}

.accent {
  color: var(--mach);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--mach);
  color: #021019;
  box-shadow: 0 0 0 1px rgba(31, 182, 240, .4), 0 18px 40px -12px var(--mach-glow);
}

.btn-primary:hover {
  background: var(--mach-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--text);
}

.btn-outline {
  border: 1px solid var(--mach);
  color: var(--mach);
  background: transparent;
}

.btn-outline:hover {
  background: var(--mach-dim);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(4, 7, 13, .6);
  border-bottom: 1px solid var(--hairline);
  transition: background .25s var(--ease);
}

.nav.scrolled {
  background: rgba(4, 7, 13, .88);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-sep {
  opacity: .35;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-3);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--text);
}

@media(max-width:900px) {
  .nav-links {
    display: none;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(100px, 14vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 72ch;
}

.hero-overtitle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-overtitle::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--mach);
  opacity: .5;
}

.hero-overtitle span {
  color: var(--text-3);
}

.hero-h1 {
  font-size: clamp(52px, 7.8vw, 122px);
}

.hero-h1 .line-accent {
  color: var(--mach);
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.status-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(31, 182, 240, .06);
  border: 1px solid rgba(31, 182, 240, .22);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mach);
  align-self: flex-start;
}

.cs-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mach);
  animation: csPulse 2s ease-in-out infinite;
}

@keyframes csPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .25;
  }
}

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(10, 15, 25, .6);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.proof-item {
  flex: 1;
  min-width: 110px;
  padding: 16px 20px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-item:last-child {
  border-right: none;
}

.proof-val {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1;
}

.proof-val .unit {
  color: var(--mach);
  font-size: .58em;
  padding-left: 3px;
}

.proof-key {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-top: 2px;
}

/* ── 3-PANEL STMT ── */
.stmt-bar {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(48px, 6vw, 72px) 0;
}

.stmt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.stmt-panel {
  background: var(--surface);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.stmt-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mach), transparent);
  opacity: .4;
}

.stmt-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mach);
  margin-bottom: 14px;
}

.stmt-head {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}

.stmt-body {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── STORY ── */
.story {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.story h2 {
  margin: 12px 0 24px;
}

.callout-block {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--mach);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 32px;
}

.callout-block .clbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mach);
  margin-bottom: 10px;
}

.callout-block p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── WHY SECTION ── */
.why-section {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg);
}

.why-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .25s var(--ease);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mach), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.why-card:hover::before {
  opacity: .6;
}

.why-card:hover {
  background: var(--surface-2);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--mach-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--mach);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ── STACK / PLATFORM ── */
.stack-section {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.stack-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.stack-header .body-lg {
  max-width: none;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.stack-card {
  background: var(--surface);
  padding: 36px 28px;
  position: relative;
  transition: background .25s var(--ease);
}

.stack-card:hover {
  background: var(--surface-2);
}

.stack-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 18px;
}

.stack-name {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.stack-name .prefix {
  color: var(--mach);
  font-size: .45em;
  font-family: var(--mono);
  letter-spacing: .14em;
}

.stack-outcome {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.stack-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ── TEAM SECTION ── */
.team-section {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}

.team-intro .body-lg {
  max-width: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-card {
  background: var(--surface);
  padding: 24px 20px;
  transition: background .25s var(--ease);
}

.team-card:hover {
  background: var(--surface-2);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  margin-bottom: 16px;
  filter: grayscale(15%);
  transition: filter .3s;
}

.team-card:hover .team-photo {
  filter: grayscale(0%);
}

.team-name {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.team-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mach);
}

/* ── CTA ── */
.cta-section {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(31, 182, 240, .12), transparent 65%);
  pointer-events: none;
}

.cta-rule {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mach), transparent);
  opacity: .6;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-inner .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.cta-h2 {
  font-size: clamp(36px, 5.5vw, 88px);
  margin-bottom: 24px;
}

.cta-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: 40px 0;
}

footer .row {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer .brand {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--text);
}

footer .brand-sep {
  opacity: .35;
}

footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

footer .links a {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color .2s;
}

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

footer .mono {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-4);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

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

.reveal-d3 {
  transition-delay: .3s;
}

@keyframes machPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 10px var(--mach);
  }

  50% {
    opacity: .4;
    box-shadow: 0 0 4px var(--mach);
  }
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4, 7, 13, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  transform: translateY(16px);
  transition: transform .35s var(--ease);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(31, 182, 240, .08);
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--elevated);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-3);
  transition: background .2s, color .2s;
}

.modal-close:hover {
  background: var(--hairline-2);
  color: var(--text);
}

.modal-close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

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

/* ── RESPONSIVE ── */
@media(max-width:1020px) {

  .story-inner,
  .stack-header,
  .team-intro {
    grid-template-columns: 1fr;
  }

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

  .why-cards,
  .field-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media(max-width:640px) {

  .why-cards,
  .field-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    flex-direction: column;
  }

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

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

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

/* ── TEAM CARD WITH BIO ── */
.team-grid-bio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-grid-bio-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  max-width: 66.67%;
}

.team-bio-card {
  background: var(--surface);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background .25s var(--ease);
}

.team-bio-card:hover {
  background: var(--surface-2);
}

.team-bio-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--mach);
  margin-bottom: 20px;
  filter: grayscale(10%);
  transition: filter .3s;
}

.team-bio-card:hover .team-bio-photo {
  filter: grayscale(0%);
}

.team-bio-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.team-bio-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mach);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  width: 100%;
}

.team-bio-text {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.7;
  text-align: center;
}

@media(max-width:1020px) {
  .team-grid-bio {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid-bio-row2 {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    border-radius: 0 0 var(--radius) var(--radius);
  }
}

@media(max-width:640px) {
  .team-grid-bio {
    grid-template-columns: 1fr;
  }

  .team-grid-bio-row2 {
    grid-template-columns: 1fr;
    max-width: none;
  }
}


/* ── FULL STORY SECTION ── */
.full-story {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}

.full-story-inner {
  max-width: 800px;
  margin: 0 auto;
}

.full-story h2 {
  text-align: center;
  margin-bottom: 40px;
}

.full-story p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 24px;
  text-align: center;
}

.full-story p:last-child {
  margin-bottom: 0;
}

.full-story strong {
  color: var(--text);
  font-weight: 600;
}

.full-story a {
  color: var(--mach);
  border-bottom: 1px solid rgba(31, 182, 240, .3);
  transition: border-color .2s;
}

.full-story a:hover {
  border-color: var(--mach);
}

.story-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ── QUALITY POLICY ── */
.quality-section {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.quality-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mach), transparent);
  opacity: .5;
}

.quality-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quality-inner h2 {
  margin-bottom: 32px;
}

.quality-inner p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 20px;
}

.quality-inner p:last-child {
  margin-bottom: 0;
}
/* /////////////////////////// */
.nav-links {
  margin: 0;
}

.brand.header {
  max-width: 103px;
}