/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

/* ── Shared page utilities ──
   .section-padding is the global token (style.css):
   padding: var(--spacing-section) 0  →  80px / 64px / 48px
   Never redefined here. Horizontal padding via inline style="padding-left:5%;padding-right:5%"
   on wide sections, or <div class="container"> (padding: 0 24px) for card sections. ── */

/* Background variants — no padding overrides */
.about-milestones {
  background: #f8fafc;
}
.about-team {
  background: #f8fafc;
}

.section-overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-deep);
  margin-bottom: 24px;
}

.section-header-centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--spacing-section-sm);
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-slate);
  line-height: 1.7;
  margin-top: 8px;
}

/* Glassmorphic card base */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 48px rgba(18, 20, 24, 0.06),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border-radius: var(--rounded-xxl);
}

/* GSAP Animations */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
}

/* ── Button secondary hover (missing from global) ── */
.button-secondary {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.button-secondary:hover {
  background-color: var(--color-ink-deep);
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(2, 18, 58, 0.18);
}

/* ═══════════════════════════════════════════
   HERO — full-viewport, flex column
   Structure:
     section (100vh, flex col)
       └─ container (flex:1, flex col)
            ├─ breadcrumb
            ├─ hero-split  (flex:1, grid 55/45)
            │    ├─ hero-text  (left)
            │    └─ hero-visual (right, stretches full height)
            └─ stats strip (bottom)
═══════════════════════════════════════════ */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Container must fill the section and stack content vertically */
.about-hero .container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* 100px matches shop page first-section margin-top */
  padding-top: 100px;
  padding-bottom: 100px;
  /* 5% horizontal matches shop .shop-header-card margin pattern */
  padding-left: 5%;
  padding-right: 5%;
  gap: 0;
  margin: 0;
}

/* Watermark */
.about-hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(130px, 19vw, 280px);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(71, 112, 194, 0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

/* Breadcrumb */
.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-slate);
  flex-shrink: 0;
}

.about-breadcrumb a {
  color: var(--color-slate);
  text-decoration: none;
  transition: color 0.2s;
}

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

.about-breadcrumb svg {
  opacity: 0.4;
  flex-shrink: 0;
}

/* Overline pill tag — always inline, never stretches */
.about-overline {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(71, 112, 194, 0.08);
  border: 1px solid rgba(71, 112, 194, 0.18);
  border-radius: var(--rounded-full);
  padding: 6px 14px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.about-overline::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* ── Two-column split (stretches to fill remaining height) ── */
.about-hero-split {
  flex: 1; /* fills space between breadcrumb and stats */
  min-height: 0; /* allows flex child to shrink */
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: stretch; /* both columns same height */
}

/* Left text column — vertically centred within the grid row */
.about-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Headline */
.about-hero-title {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-ink-deep);
  margin-bottom: 20px;
}

.about-hero-desc {
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Right visual card (fills full split height) ── */
.about-hero-visual {
  display: flex; /* so the card can stretch */
  flex-direction: column;
}

.hero-visual-card {
  position: relative;
  flex: 1; /* card fills the entire right column */
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 32px 80px rgba(18, 20, 24, 0.09),
    inset 0 2px 0 rgba(255, 255, 255, 0.92);
  border-radius: var(--rounded-xxl);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Floating instrument — fills remaining card space */
.hero-instrument-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0 16px;
  min-height: 0;
}

.hero-instrument-img {
  max-width: 72%;
  max-height: clamp(200px, 38vh, 320px); /* viewport-relative, never crops */
  height: auto;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(2, 18, 58, 0.13));
  animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Cert pills row (bottom of card) */
.hero-cert-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(71, 112, 194, 0.08);
  border: 1px solid rgba(71, 112, 194, 0.2);
  border-radius: var(--rounded-full);
  padding: 5px 12px;
}

.cert-pill svg {
  flex-shrink: 0;
}

/* Year badge — top-left corner of card */
.hero-year-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--rounded-lg);
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  z-index: 2;
}

.hero-year-num {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-year-sub {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* Hotspot annotation — top-right of card */
.hero-annotation {
  position: absolute;
  top: 24px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.annotation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(71, 112, 194, 0.22);
  flex-shrink: 0;
}

.annotation-line {
  width: 22px;
  height: 1px;
  background: rgba(71, 112, 194, 0.35);
}

.annotation-text {
  line-height: 1.3;
}

.annotation-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-ink-deep);
}

.annotation-sub {
  font-size: 10px;
  color: var(--color-slate);
}

/* ══════════════════════════════════════════════
   STATS BAND — dark strip after hero
══════════════════════════════════════════════ */
.about-stats-band {
  background: var(--color-ink-deep);
  position: relative;
  overflow: hidden;
}

.about-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(71, 112, 194, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.stats-band-inner {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.stat-band-block {
  flex: 1;
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease;
}

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

.stat-band-block:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sbb-number {
  display: block;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sbb-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.sbb-sub {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 2px;
}

.stat-band-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   OUR STORY — Full-bleed sticky-scroll section
══════════════════════════════════════════════ */
.about-story {
  overflow: visible; /* sticky needs visible overflow */
}

/* Wide inner wrapper — identical 5vw horizontal breathing room as story-inner.
   Used by manufacturing and CTA so all three sections share the same width. */
.section-wide {
  padding: 0 5vw;
}

/* story-inner: 5vw horizontal breathing room, vertical handled by section-padding */
.story-inner {
  display: grid;
  grid-template-columns: 45% 1fr;
  align-items: start;
  padding: 0 5vw;
  gap: clamp(40px, 5vw, 80px);
}

/* ── Left: GSAP-pinned image stack (CSS sticky removed — broken by ScrollSmoother transform) ── */
.story-pin-panel {
  align-self: start;
  will-change: transform;
}

.story-img-stack {
  position: relative;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 32px 72px rgba(18, 20, 24, 0.09),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
  border-radius: var(--rounded-xxl);
  overflow: hidden;
  aspect-ratio: 4/4; /* was 4/5 — too tall, caused overlap */
  max-height: calc(100vh - 220px); /* never taller than viewport minus header */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Each image frame stacked absolutely, cross-fades */
.story-img-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only active frame is visible — first frame has .active class in HTML */
.story-img-frame.active {
  opacity: 1;
}

.story-img-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(2, 18, 58, 0.12));
}

/* Image label badge */
.story-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--rounded-lg);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sil-year {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sil-text {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* Step counter — bottom-right of image */
.story-step-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 700;
  color: var(--color-ink-deep);
  opacity: 0.4;
  font-size: 13px;
}

.step-sep {
  font-size: 10px;
  opacity: 0.6;
}

/* ── Right: scrolling text steps ── */
.story-scroll-panel {
  display: flex;
  flex-direction: column;
  padding: 150px 0;
}

.story-step {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 48px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0.4;
}

.story-step:last-child {
  border-bottom: none;
}

.story-step.story-step--active {
  opacity: 1;
}

/* Story step children — always visible at full opacity, no reveal animation */

.story-step-title {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-ink-deep);
  margin-bottom: 20px;
}

.story-step-body {
  font-size: 16px;
  color: var(--color-slate);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

.story-step-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(71, 112, 194, 0.07);
  border: 1px solid rgba(71, 112, 194, 0.18);
  border-radius: var(--rounded-full);
  padding: 6px 14px;
}

/* ══════════════════════════════════════════════
   MILESTONES — Vertical left-spine timeline
   Layout per row:  [year 72px] [node 56px] [card 1fr]
   SVG draws a straight vertical line downward
   through all .tl-node centres on scroll.
══════════════════════════════════════════════ */

/*
  2-column editorial layout:
    left  (280px max) — sticky section text
    right (min 0, max 560px) — the vertical timeline
  Total max ≈ 280 + gap + 560 = ~920px, well within any container.
*/
.milestones-layout {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(0, 560px);
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
  width: fit-content;
  margin: auto;
}

.milestones-aside {
  position: sticky;
  top: 120px; /* clears fixed header */
}

.milestones-aside .section-overline {
  margin-bottom: 12px;
}

.milestones-aside .section-title {
  margin-bottom: 16px;
}

.milestones-header-desc {
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.75;
}

/* Timeline wrapper */
.milestones-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* SVG spine — absolute, JS sizes it to match .milestones-timeline */
.milestone-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

#milestone-path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-opacity: 0.55;
  filter: drop-shadow(0 0 6px rgba(71, 112, 194, 0.38));
}

/* Each row: year | node | card */
.tl-item {
  display: grid;
  grid-template-columns: 72px 56px 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Year label */
.tl-year-col {
  text-align: right;
  line-height: 1;
}

.tl-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-slate);
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--rounded-full);
  padding: 4px 10px;
}

.tl-year--active {
  color: white;
  background: var(--color-primary);
}

/* Node column — the SVG spine passes through these dots */
.tl-node-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tl-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  border: 2.5px solid var(--color-primary);
  box-shadow: 0 0 0 4px rgba(71, 112, 194, 0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tl-node--active {
  background: var(--color-primary);
  box-shadow:
    0 0 0 5px rgba(71, 112, 194, 0.2),
    0 0 16px rgba(71, 112, 194, 0.4);
}

.tl-item:hover .tl-node {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(71, 112, 194, 0.18);
}

/* Card */
.tl-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 4px 24px rgba(18, 20, 24, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-radius: var(--rounded-xl);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  will-change: transform, opacity;
}

.tl-card:hover {
  transform: translateX(6px);
  box-shadow:
    0 12px 40px rgba(18, 20, 24, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tl-card--active {
  background: linear-gradient(135deg, rgba(71, 112, 194, 0.06) 0%, rgba(255, 255, 255, 0.88) 100%);
  border-color: rgba(71, 112, 194, 0.22);
}

/* Icon */
.tl-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--rounded-lg);
  background: rgba(71, 112, 194, 0.07);
  border: 1px solid rgba(71, 112, 194, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.tl-icon--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* Text */
.tl-text {
  flex: 1;
  min-width: 0;
}

.tl-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink-deep);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.tl-desc {
  font-size: 13px;
  color: var(--color-slate);
  line-height: 1.65;
}

/* Hide 3rd stat block (Instrument SKUs) */
.stat-band-block:nth-child(3) {
  display: none;
}

/* Live "Now" badge */
.tl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--color-primary);
  border-radius: var(--rounded-full);
  padding: 3px 10px;
}

.tl-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  animation: tl-pulse 1.5s ease-in-out infinite;
}

@keyframes tl-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* ── CORE VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 48px rgba(18, 20, 24, 0.06),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border-radius: var(--rounded-xxl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

.value-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 32px 64px rgba(18, 20, 24, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(71, 112, 194, 0.08);
  border-radius: var(--rounded-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.value-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(71, 112, 194, 0.2);
  letter-spacing: 0.05em;
}

.value-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-ink-deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 14px;
  color: var(--color-slate);
  line-height: 1.7;
}

/* ── MANUFACTURING ── */
.manufacturing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.manufacturing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.mfg-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mfg-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(71, 112, 194, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.mfg-feature-item strong {
  font-size: 15px;
  color: var(--color-ink-deep);
  display: block;
  margin-bottom: 2px;
}

/* Certification card */
.cert-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 48px rgba(18, 20, 24, 0.06),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border-radius: var(--rounded-xxl);
  padding: 32px;
  margin-bottom: 16px;
}

.cert-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  color: var(--color-primary);
}

.cert-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.cert-badges:last-child {
  margin-bottom: 0;
}

.cert-badge {
  background: rgba(71, 112, 194, 0.06);
  border: 1px solid rgba(71, 112, 194, 0.15);
  border-radius: var(--rounded-lg);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cert-badge-mark {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.cert-badge-text {
  font-size: 11px;
  color: var(--color-slate);
  line-height: 1.4;
  font-weight: 500;
}

.cert-badge-text small {
  font-weight: 400;
  font-size: 10px;
  opacity: 0.7;
}

.cert-image-wrapper {
  text-align: center;
}

.cert-image {
  max-height: 52px;
  opacity: 0.7;
}

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

.mfg-stat {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(18, 20, 24, 0.05);
  border-radius: var(--rounded-xl);
  padding: 24px 20px;
  text-align: center;
}

.mfg-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-ink-deep);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.mfg-stat-label {
  font-size: 12px;
  color: var(--color-slate);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-grid.cols-1 {
  grid-template-columns: minmax(0, 380px);
  justify-content: center;
}

.team-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}

.team-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 48px rgba(18, 20, 24, 0.06),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border-radius: var(--rounded-xxl);
  padding: 36px 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 64px rgba(18, 20, 24, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.team-avatar {
  margin-bottom: 20px;
}

.avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(71, 112, 194, 0.1), rgba(71, 112, 194, 0.2));
  border: 2px solid rgba(71, 112, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-ink-deep);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--color-slate);
  line-height: 1.7;
}

/* ── CTA SECTION ── */

/* Override section-padding (80px) with tighter spacing for the CTA */
.about-cta.section-padding {
  padding-top: var(--spacing-section-lg); /* 48px → 40px → 32px */
  padding-bottom: 0;
}

/* ── About page marquee — straight, no rotation ── */
.about-marquee .marquee-section {
  transform: none !important;
}

.marquee-wrapper.about-marquee {
  padding-bottom: 0 !important;
}

.cta-card {
  background: linear-gradient(135deg, var(--color-ink-deep) 0%, var(--color-primary-deep) 100%);
  border-radius: var(--rounded-xxl);
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(2, 18, 58, 0.3);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(71, 112, 194, 0.15);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: white;
  color: var(--color-ink-deep);
  border-radius: var(--rounded-full);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: var(--rounded-full);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  /* Global padding reduction for tablet */
  .section-padding {
    padding: 48px 0 !important;
  }

  /* ── Hero ── */
  .about-hero {
    height: auto;
    min-height: 100vh;
  }

  .about-hero .container {
    padding-top: clamp(80px, 10vw, 100px);
    padding-bottom: 48px;
    gap: 24px;
  }

  .about-overline {
    margin-top: 20px;
  }

  .about-hero-split {
    flex: unset;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 24px;
  }

  .about-hero-visual {
    max-width: 100%;
    width: 100%;
    margin-top: 50px;
  }

  .hero-visual-card {
    min-height: 340px;
  }
  .hero-instrument-img {
    max-height: 200px;
  }

  /* ── Stats band ── */
  .stats-band-inner {
    flex-wrap: wrap;
  }
  .stat-band-block {
    flex: 1 1 calc(50% - 1px);
    text-align: center;
  }
  .stat-band-divider {
    display: none;
  }

  /* ── Our Story ── */
  .story-inner {
    grid-template-columns: 1fr;
    padding: 0 5vw;
  }

  .story-pin-panel {
    max-width: 100%;
    width: 100%;
  }

  .story-img-stack {
    max-width: 100%;
    width: 100%;
  }

  .story-scroll-panel {
    padding: 0;
  }

  .story-step {
    min-height: auto;
    padding: 24px 0;
    opacity: 1 !important;
  }

  /* ── Milestones timeline ── */
  .milestones-layout {
    grid-template-columns: 1fr; /* stack on tablet */
  }
  .milestones-aside {
    position: static; /* un-sticky on tablet */
  }
  .tl-item {
    grid-template-columns: 60px 48px 1fr;
  }

  /* ── Rest ── */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .manufacturing-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-card {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  /* Global padding reduction for mobile */
  .section-padding {
    padding: 32px 0 !important;
  }

  /* ── Hero ── */
  .about-hero .container {
    padding-top: 80px;
    padding-bottom: 32px;
    gap: 20px;
  }

  .about-hero-title {
    font-size: clamp(34px, 10vw, 52px);
  }
  .about-hero-desc {
    font-size: 14px;
  }
  .hero-visual-card {
    min-height: 280px;
  }
  .hero-instrument-img {
    max-height: 160px;
  }

  /* ── Stats band ── */
  .stats-band-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 16px;
  }
  .stat-band-block {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
    text-align: center;
  }
  .stat-band-divider {
    display: none;
  }
  .sbb-number {
    font-size: clamp(28px, 8vw, 40px);
  }
  .sbb-label {
    font-size: 12px;
    max-width: 80px;
    margin: 0 auto;
  }

  /* ── Our Story ── */
  .story-scroll-panel {
    padding: 0;
  }

  .story-step-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  /* ── Milestones timeline ── */
  .tl-item {
    grid-template-columns: 52px 40px 1fr;
  }
  .tl-year {
    font-size: 11px;
    padding: 3px 8px;
  }
  .milestone-path-svg {
    display: none;
  }

  /* ── Rest ── */
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-grid.cols-1,
  .team-grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 36px 24px;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cert-badges {
    grid-template-columns: repeat(3, 1fr);
  }
}
