/* Audeon — design system. Single stylesheet for all pages. */

/* ─── Reset & tokens ─────────────────────────────────────────────────── */
:root {
  --black:  #0B0B0E;
  --carbon: #16161B;
  --steel:  #2A2A33;
  --ash:    #5A5A66;
  --bone:   #F2F2EE;
  --cream:  #E6E5DE;
  --cyan:   #00E5FF;
  --ember:  #FF5A1F;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --pad-x: 56px;
  --pad-x-sm: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  width: 100%;
}
h1, h2, h3, h4, h5, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; }

::selection { background: var(--cyan); color: var(--black); }

/* ─── Typography utilities ───────────────────────────────────────────── */
.display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.04em; line-height: 0.95; }
.display-semi { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.035em; line-height: 1; }
.mono { font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; }
.mono-lg { font-family: var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; }
.cyan { color: var(--cyan); }
.muted { color: rgba(242, 242, 238, 0.6); }
.text-bone-cc { color: rgba(242, 242, 238, 0.8); }
.text-bone-99 { color: rgba(242, 242, 238, 0.6); }
.text-bone-77 { color: rgba(242, 242, 238, 0.47); }
.text-bone-66 { color: rgba(242, 242, 238, 0.4); }

/* ─── Eyebrow ─────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.85);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}
.eyebrow.no-dot::before { display: none; }
.eyebrow.dark { color: rgba(11, 11, 14, 0.6); }
.eyebrow.dark::before { background: var(--black); box-shadow: none; }

/* ─── CTA buttons ─────────────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
  cursor: pointer;
  user-select: none;
}
.cta:hover { transform: scale(1.02); }
.cta--lg { padding: 18px 28px; font-size: 15px; }
.cta--sm { padding: 10px 16px; font-size: 13px; }
.cta--primary { background: var(--cyan); color: var(--black); }
.cta--primary:hover { background: #1ce8ff; }
.cta--dark { background: var(--black); color: var(--bone); }
.cta--dark:hover { background: #1c1c22; }
.cta--light { background: var(--bone); color: var(--black); }
.cta--light:hover { background: #fff; }
.cta--ghost { background: transparent; color: var(--bone); box-shadow: inset 0 0 0 1px var(--steel); }
.cta--ghost:hover { box-shadow: inset 0 0 0 1px var(--cyan); color: var(--cyan); }
.cta--ghost-dark { background: transparent; color: var(--black); box-shadow: inset 0 0 0 1px rgba(11, 11, 14, 0.2); }
.cta--ghost-dark:hover { box-shadow: inset 0 0 0 1px var(--black); }
.cta__arrow { width: 14px; height: 14px; flex: 0 0 auto; }

/* ─── Wordmark ────────────────────────────────────────────────────────── */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--bone);
}
.wordmark--lg { font-size: 28px; }
.wordmark--md { font-size: 22px; }
.wordmark--dark { color: var(--black); }
.wordmark__mark { flex: 0 0 auto; }

/* ─── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  background: transparent;
  color: var(--bone);
  border-bottom: 1px solid rgba(42, 42, 51, 0.4);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(11, 11, 14, 0.7);
}
.nav--light {
  background: var(--bone);
  color: var(--black);
  border-bottom: 1px solid rgba(11, 11, 14, 0.06);
  backdrop-filter: none;
}
.nav__links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.nav__links a { opacity: 0.85; transition: opacity 150ms ease, color 150ms ease; }
.nav__links a:hover { opacity: 1; color: var(--cyan); }
.nav__right { display: flex; gap: 18px; align-items: center; font-size: 14px; }
.nav__right a { opacity: 0.8; transition: opacity 150ms ease; }
.nav__right a:hover { opacity: 1; }
.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bone);
  color: var(--black);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  opacity: 1 !important;
}
.nav--light .nav__cart { background: var(--black); color: var(--bone); }
.nav__cart-badge {
  background: var(--cyan);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 700;
}
.nav__cart-badge:empty,
.nav__cart-badge[data-count="0"] { display: none; }
.nav__cart-icon { width: 16px; height: 16px; flex: 0 0 auto; }

/* ─── Breadcrumb ──────────────────────────────────────────────────────── */
.breadcrumb {
  padding: 18px var(--pad-x);
  background: var(--black);
  color: rgba(242, 242, 238, 0.6);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--steel);
}
.breadcrumb__current { color: var(--bone); }

/* ─── Section padding ─────────────────────────────────────────────────── */
.section { padding: 120px var(--pad-x); }
.section--lg { padding: 140px var(--pad-x); }
.section--md { padding: 100px var(--pad-x); }
.section--sm { padding: 80px var(--pad-x); }
.section--black { background: var(--black); }
.section--carbon { background: var(--carbon); }
.section--bone { background: var(--bone); color: var(--black); }
.section--cyan { background: var(--cyan); color: var(--black); }

/* ─── MoodyScene placeholder ─────────────────────────────────────────── */
.moody {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--bone);
}
.moody__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.moody__caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.53);
}
.moody__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moody__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 14, 0.2) 0%, rgba(11, 11, 14, 0.65) 100%);
  pointer-events: none;
}

.moody--concert {
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(0, 229, 255, 0.27) 0%, transparent 45%),
    radial-gradient(80% 60% at 100% 90%, rgba(197, 74, 30, 0.2) 0%, transparent 55%),
    radial-gradient(60% 40% at 50% 60%, #1a2030 0%, var(--black) 70%);
}
.moody--studio {
  background:
    radial-gradient(60% 50% at 50% 30%, #2a2a33 0%, var(--black) 80%),
    radial-gradient(40% 30% at 50% 50%, rgba(0, 229, 255, 0.13) 0%, transparent 60%);
}
.moody--street {
  background:
    radial-gradient(80% 60% at 85% 20%, rgba(0, 229, 255, 0.2) 0%, transparent 50%),
    radial-gradient(60% 60% at 20% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #15161e 0%, var(--black) 100%);
}
.moody--dusk {
  background:
    linear-gradient(180deg, #1a1622 0%, var(--black) 60%),
    radial-gradient(70% 40% at 50% 0%, rgba(0, 229, 255, 0.2) 0%, transparent 60%);
}
.moody--underwater {
  background:
    radial-gradient(100% 60% at 50% 110%, rgba(0, 229, 255, 0.27) 0%, transparent 60%),
    linear-gradient(180deg, #0a1620 0%, var(--black) 100%);
}

/* ─── Container helpers ──────────────────────────────────────────────── */
.row-split {
  display: grid;
  gap: 80px;
  align-items: center;
}
.row-split--12-10 { grid-template-columns: 1.1fr 1fr; }
.row-split--10-12 { grid-template-columns: 1fr 1.1fr; }
.row-split--11-10 { grid-template-columns: 1.15fr 1fr; }
.row-split--12-20 { grid-template-columns: 1fr 2fr; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.section-head__title { display: flex; flex-direction: column; gap: 14px; }

/* ─── Hero (homepage) ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 780px;
  overflow: hidden;
}
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 80px;
  z-index: 3;
}
.hero__inner { max-width: 820px; display: flex; flex-direction: column; gap: 24px; }
.hero__h1 { font-size: 108px; }
.hero__body { font-size: 18px; line-height: 1.5; max-width: 520px; color: rgba(242, 242, 238, 0.8); }
.hero__ctas { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.hero__strip {
  position: absolute;
  top: 100px;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  z-index: 3;
}
.hero__strip-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan);
}
.hero__strip-spec {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(242, 242, 238, 0.67);
  line-height: 1.7;
}

/* ─── Product card ───────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--carbon);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--steel);
  min-height: 360px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px var(--cyan);
}
.product-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 4px 8px;
  background: rgba(0, 229, 255, 0.08);
  border-radius: 4px;
}
.product-card__art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  min-height: 180px;
}
.product-card__art img,
.product-card__art svg { max-width: 100%; max-height: 100%; }
.product-card__footer { display: flex; flex-direction: column; gap: 4px; }
.product-card__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.53);
}
.product-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.product-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bone);
}

/* ─── Spec rail (3-stat row) ─────────────────────────────────────────── */
.specrail {
  display: grid;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}
.specrail--3 { grid-template-columns: repeat(3, 1fr); }
.specrail--4 { grid-template-columns: repeat(4, 1fr); padding: 18px 0; gap: 14px; }
.specrail__stat { display: flex; flex-direction: column; gap: 4px; }
.specrail__n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--cyan);
}
.specrail--4 .specrail__n { font-size: 22px; letter-spacing: -0.02em; }
.specrail__l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.53);
}
.specrail--4 .specrail__l { font-size: 10.5px; }

/* ─── Pillars (Why Audeon) ──────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
  margin-top: 32px;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  padding: 24px 0;
  border-top: 1px solid var(--steel);
}
.pillar__n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cyan);
}
.pillar__t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.pillar__d { font-size: 14px; line-height: 1.55; color: rgba(242, 242, 238, 0.6); }

/* ─── Newsletter ────────────────────────────────────────────────────── */
.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.newsletter__copy { display: flex; flex-direction: column; gap: 10px; max-width: 540px; }
.newsletter__h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.newsletter__form { display: flex; gap: 10px; align-items: center; min-width: 480px; flex: 1; max-width: 600px; }
.newsletter__input {
  flex: 1;
  padding: 18px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  background: transparent;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--black);
  outline: none;
}
.newsletter__input::placeholder { color: rgba(11, 11, 14, 0.5); }
.newsletter__input:focus { border-color: var(--black); }

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--bone);
  padding: 72px var(--pad-x) 36px;
  border-top: 1px solid var(--steel);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__brand-copy {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(242, 242, 238, 0.6);
  max-width: 280px;
}
.footer__socials { display: flex; gap: 10px; margin-top: 4px; }
.footer__social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bone);
  box-shadow: inset 0 0 0 1px var(--steel);
  transition: box-shadow 150ms ease, color 150ms ease;
}
.footer__social:hover { box-shadow: inset 0 0 0 1px var(--cyan); color: var(--cyan); }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li {
  font-size: 14px;
  color: rgba(242, 242, 238, 0.8);
  transition: color 150ms ease;
}
.footer__col li:hover { color: var(--cyan); }
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--steel);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(242, 242, 238, 0.53);
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal-right { display: flex; gap: 24px; flex-wrap: wrap; }

/* ─── PDP hero / buy panel ──────────────────────────────────────────── */
.pdp-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 760px;
  background: var(--black);
}
.pdp-hero__media { position: relative; padding: 24px; }
.pdp-hero__media-inner {
  position: relative;
  height: 100%;
  min-height: 712px;
  border-radius: 14px;
  overflow: hidden;
}
.pdp-hero__thumbs {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.pdp-hero__thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--carbon);
  box-shadow: inset 0 0 0 1px var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 150ms ease;
}
.pdp-hero__thumb--active { box-shadow: inset 0 0 0 2px var(--cyan); }
.pdp-hero__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.pdp-hero__model-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  z-index: 2;
}
.pdp-hero__model-label::before {
  content: "● ";
}
.pdp-hero__panel {
  padding: 72px 64px 72px 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: var(--bone);
}
.pdp-hero__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.pdp-hero__body { font-size: 17px; line-height: 1.55; color: rgba(242, 242, 238, 0.8); max-width: 480px; }
.pdp-hero__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 20px;
  flex-wrap: wrap;
}
.pdp-hero__price { font-family: var(--font-display); font-weight: 600; font-size: 40px; letter-spacing: -0.025em; }
.pdp-hero__price-was {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(242, 242, 238, 0.4);
  text-decoration: line-through;
  margin-left: 14px;
}
.pdp-hero__qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--steel);
  margin-right: 10px;
}
.pdp-hero__qty button {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--bone);
  padding: 4px 8px;
  line-height: 1;
}
.pdp-hero__qty button:hover { color: var(--cyan); }
.pdp-hero__qty-val { font-family: var(--font-mono); font-size: 14px; min-width: 14px; text-align: center; }
.pdp-hero__cta-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.pdp-hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--steel);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.53);
  flex-wrap: wrap;
}

/* ─── PDP feature blocks ────────────────────────────────────────────── */
.feature__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.feature__body { font-size: 17px; line-height: 1.6; color: rgba(242, 242, 238, 0.73); max-width: 460px; }
.feature__stats { display: flex; gap: 48px; margin-top: 8px; flex-wrap: wrap; }
.feature__stat { display: flex; flex-direction: column; gap: 4px; }
.feature__stat-n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--cyan);
  letter-spacing: -0.02em;
}
.feature__stat-l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.47);
}
.feature__col { display: flex; flex-direction: column; gap: 24px; }
.feature__media { height: 500px; border-radius: 14px; overflow: hidden; }

/* ─── PDP spec table ────────────────────────────────────────────────── */
.specsheet__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.specsheet__lede {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11, 11, 14, 0.53);
  margin-top: 8px;
  max-width: 300px;
}
.specsheet__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 11, 14, 0.09);
}
.specsheet__k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 11, 14, 0.53);
}
.specsheet__v { font-size: 15px; color: var(--black); }

/* ─── In-the-box ────────────────────────────────────────────────────── */
.intheb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.intheb-card {
  padding: 22px 22px 20px;
  background: var(--carbon);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px var(--steel);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
}
.intheb-card__n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan);
}
.intheb-card__t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.intheb-card__d { font-size: 13px; line-height: 1.5; color: rgba(242, 242, 238, 0.6); }

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid rgba(11, 11, 14, 0.13);
  padding: 24px 0;
}
.faq__item:first-child { border-top: 1px solid rgba(11, 11, 14, 0.13); }
.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  gap: 24px;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--black);
}
.faq__indicator {
  font-family: var(--font-mono);
  font-size: 22px;
  color: rgba(11, 11, 14, 0.4);
  transition: transform 200ms ease;
  flex: 0 0 auto;
  line-height: 1;
}
.faq__item[open] .faq__indicator { transform: rotate(45deg); }
.faq__a {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(11, 11, 14, 0.67);
  max-width: 680px;
  margin-top: 14px;
}
.faq__support {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── About: principles cards ───────────────────────────────────────── */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.principle-card {
  padding: 32px 32px 36px;
  background: var(--carbon);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--steel);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.principle-card__n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cyan);
}
.principle-card__t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
}
.principle-card__d { font-size: 15px; line-height: 1.65; color: rgba(242, 242, 238, 0.73); }

/* ─── About: numbers strip ──────────────────────────────────────────── */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(11, 11, 14, 0.13);
}
.numbers__stat { display: flex; flex-direction: column; gap: 10px; }
.numbers__n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 88px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.numbers__l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 11, 14, 0.53);
  line-height: 1.55;
}

/* ─── About: process steps ──────────────────────────────────────────── */
.process { display: flex; flex-direction: column; gap: 0; }
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--steel);
  align-items: baseline;
}
.process__step:last-child { border-bottom: 1px solid var(--steel); }
.process__n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--cyan);
  letter-spacing: -0.025em;
}
.process__t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
}
.process__d { font-size: 16px; line-height: 1.6; color: rgba(242, 242, 238, 0.73); max-width: 560px; }

/* ─── Contact ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-methods { display: flex; flex-direction: column; }
.contact-method {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--steel);
  align-items: baseline;
}
.contact-method:last-child { border-bottom: 1px solid var(--steel); }
.contact-method__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.contact-method__value { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.contact-method__sub { font-size: 13px; color: rgba(242, 242, 238, 0.6); margin-top: 4px; }
.contact-form {
  background: var(--carbon);
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: inset 0 0 0 1px var(--steel);
}
.contact-form__h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.53);
}
.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  background: var(--black);
  color: var(--bone);
  border: 0;
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  outline: none;
  box-shadow: inset 0 0 0 1px var(--steel);
  transition: box-shadow 150ms ease;
}
.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus { box-shadow: inset 0 0 0 1px var(--cyan); }
.contact-form__textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.contact-form__success {
  display: none;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-form.is-sent .contact-form__success { display: block; }

.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--bone);
  border-radius: 14px;
  padding: 32px;
  box-shadow: inset 0 0 0 1px rgba(11, 11, 14, 0.09);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-card__city {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
}
.location-card__addr { font-size: 15px; line-height: 1.6; color: rgba(11, 11, 14, 0.67); }
.location-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 11, 14, 0.53);
}

.dark-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dark-card {
  background: var(--carbon);
  border-radius: 14px;
  padding: 40px;
  box-shadow: inset 0 0 0 1px var(--steel);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dark-card__t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.dark-card__d { font-size: 15px; line-height: 1.6; color: rgba(242, 242, 238, 0.73); }

/* ─── About hero band image ─────────────────────────────────────────── */
.band {
  height: 480px;
  position: relative;
  overflow: hidden;
}

/* ─── CTA strip (cyan) ──────────────────────────────────────────────── */
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-strip__h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.035em;
  line-height: 1;
}

/* ─── Policy / legal pages ─────────────────────────────────────────── */
.policy-hero {
  padding: 80px var(--pad-x) 56px;
  background: var(--black);
  color: var(--bone);
  border-bottom: 1px solid var(--steel);
}
.policy-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.policy-hero__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.policy-hero__updated {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.5);
  margin-top: 18px;
}
.policy-page {
  background: var(--bone);
  color: var(--black);
  padding: 72px var(--pad-x) 96px;
}
.policy-shell {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 56px 64px;
  box-shadow: 0 1px 0 rgba(11, 11, 14, 0.04), 0 24px 56px -32px rgba(11, 11, 14, 0.18);
}
.policy-shell h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--black);
  margin: 36px 0 12px;
}
.policy-shell h2:first-child { margin-top: 0; }
.policy-shell h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 24px 0 8px;
  color: var(--black);
}
.policy-shell p,
.policy-shell li {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11, 11, 14, 0.78);
  margin: 0 0 12px;
}
.policy-shell ul,
.policy-shell ol {
  padding-left: 22px;
  margin: 8px 0 16px;
}
.policy-shell ul { list-style: disc; }
.policy-shell ol { list-style: decimal; }
.policy-shell li { margin-bottom: 6px; }
.policy-shell li::marker { color: var(--cyan); }
.policy-shell strong { color: var(--black); font-weight: 600; }
.policy-shell a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 150ms ease;
}
.policy-shell a:hover { color: var(--cyan); }
.policy-shell table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.policy-shell th,
.policy-shell td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(11, 11, 14, 0.08);
}
.policy-shell th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 11, 14, 0.55);
  font-weight: 600;
}
.policy-shell .payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}
.policy-shell .payment-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--bone);
  color: var(--black);
  box-shadow: inset 0 0 0 1px rgba(11, 11, 14, 0.12);
}
@media (max-width: 768px) {
  .policy-page { padding: 40px var(--pad-x) 64px; }
  .policy-shell { padding: 32px 24px; border-radius: 12px; }
  .policy-shell h2 { font-size: 20px; }
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  :root { --pad-x: 40px; }
  .hero__h1 { font-size: 88px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; gap: 24px; }
  .row-split,
  .row-split--12-10,
  .row-split--10-12,
  .row-split--11-10,
  .row-split--12-20 { grid-template-columns: 1fr; gap: 48px; }
  .pdp-hero { grid-template-columns: 1fr; }
  .pdp-hero__panel { padding: 56px var(--pad-x); }
  .pdp-hero__name { font-size: 56px; }
  .feature__h2 { font-size: 44px; }
  .specsheet__h2, .faq__h2 { font-size: 40px; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .numbers__n { font-size: 64px; }
  .principles { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr; }
  .dark-cards { grid-template-columns: 1fr; }
  .intheb-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section, .section--lg, .section--md { padding-top: 80px; padding-bottom: 80px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 18px; }
  .nav { padding: 14px var(--pad-x); gap: 8px; }
  .nav__links { display: none; }
  .nav__right { gap: 12px; font-size: 13px; }
  .nav__right > a:not(.nav__cart) { font-size: 13px; }
  .nav__cart { padding: 8px 14px; font-size: 12px; }
  .wordmark--md { font-size: 18px; }
  .hero { height: 580px; }
  .hero__h1 { font-size: 44px; line-height: 1; }
  .hero__body { font-size: 15px; }
  .hero__content { padding: 0 var(--pad-x) 56px; }
  .hero__strip { display: none; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .cta { width: 100%; justify-content: center; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
  .section-head .cta { width: 100%; justify-content: center; }
  .section-head h2 { font-size: 40px !important; }
  .product-grid { grid-template-columns: 1fr; }
  .specrail--3 { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .specrail__n { font-size: 22px; }
  .specrail--4 { grid-template-columns: repeat(2, 1fr); }
  .pdp-hero__panel { padding: 48px var(--pad-x); }
  .pdp-hero__name { font-size: 40px; }
  .pdp-hero__body { font-size: 15px; }
  .feature__h2 { font-size: 32px; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .cta-strip__h3 { font-size: 36px; }
  .newsletter { gap: 24px; }
  .newsletter__h3 { font-size: 30px; }
  .newsletter__form { min-width: 0; width: 100%; flex-direction: column; align-items: stretch; }
  .newsletter__input { width: 100%; }
  .newsletter__form .cta { width: 100%; justify-content: center; }
  .specsheet__h2, .faq__h2 { font-size: 30px; }
  .specsheet__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .specsheet__v { font-size: 14px; }
  .numbers { grid-template-columns: 1fr 1fr; gap: 24px; }
  .numbers__n { font-size: 48px; }
  .intheb-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 56px var(--pad-x) 28px; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 12px; }
  .process__step { grid-template-columns: 1fr; gap: 12px; }
  .contact-method { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .pdp-hero__media-inner { min-height: 380px; }
  .pdp-hero__thumbs { left: 12px; top: 12px; }
  .pdp-hero__thumb { width: 48px; height: 48px; }
  .section, .section--lg, .section--md { padding-top: 64px; padding-bottom: 64px; }
  .principle-card { padding: 24px; min-height: 0; }
  .principle-card__t { font-size: 24px; }
  .dark-card { padding: 28px; }
  .dark-card__t { font-size: 28px; }
  .breadcrumb { padding: 14px var(--pad-x); font-size: 10px; flex-wrap: wrap; }
}

@media (max-width: 380px) {
  :root { --pad-x: 14px; }
  .hero__h1 { font-size: 38px; }
  .nav__right > a:not(.nav__cart) { display: none; }
  .pdp-hero__name { font-size: 34px; }
  .feature__h2 { font-size: 28px; }
}
