/* ========================================================================
   BASE LAYER · PEPTIDES — Homepage mockup
   Visual language: Tangora navy #1E2935 + electric yellow #F1FF12
   Typography: Satoshi (display + body) + JetBrains Mono (eyebrows, data)
   ======================================================================== */

:root {
  --navy: #1E2935;
  --navy-2: #243140;
  --navy-3: #2D3B4D;
  --navy-line: #34455A;
  --bone: #F4F1EA;
  --bone-2: #E8E3D7;
  --ink: #0E1620;
  --yellow: #F1FF12;
  --yellow-soft: #DCE810;
  --muted: #8FA0B5;
  --muted-2: #6A7B91;

  --ff-display: 'Satoshi', system-ui, -apple-system, sans-serif;
  --ff-body: 'Satoshi', system-ui, -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--navy); color: var(--bone); }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.sr-only, .visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------
   WORDMARK — real BASE ★ LAYER artwork (inline SVG, currentColor)
   --------------------------------------------------------------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  position: relative;
  line-height: 1;
}
.wm-logo {
  /* native aspect 918 × 202 ≈ 4.545:1 */
  display: block;
  width: auto;
  height: 28px;
  color: currentColor;
  aspect-ratio: 918 / 202;
}
.wm-tm {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 3px 7px;
  border: 1px solid var(--navy-line);
  border-radius: 2px;
  position: relative;
  top: -1px;
  line-height: 1;
}

/* ---------------------------------------------------------------
   NAV
   --------------------------------------------------------------- */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(30, 41, 53, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--navy-line);
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a { transition: color .15s var(--ease); }
.nav-links a:hover { color: var(--bone); }
.nav-cta {
  color: var(--navy) !important;
  background: var(--yellow);
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
}
.nav-cta:hover { background: var(--bone) !important; }
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) var(--pad-x) 0;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(241,255,18,0.06), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(241,255,18,0.04), transparent 55%),
    var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.hero-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(40px, 6vw, 80px);
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px 8px 10px;
  border: 1px solid var(--navy-line);
  border-radius: 999px;
  background: rgba(36, 49, 64, 0.5);
}
.eb-star { width: 12px; height: 12px; color: var(--yellow); }

.hero-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 22px 0 24px;
  color: var(--bone);
}
.hero-title em {
  font-style: normal;
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.08em;
  background: var(--yellow);
  opacity: 0.18;
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--bone);
  opacity: 0.78;
  max-width: 52ch;
  margin: 0 0 36px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 0 0 0 rgba(241,255,18,0.4);
}
.btn-primary:hover { background: var(--bone); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--navy-line);
}
.btn-ghost:hover { background: var(--navy-2); }
.btn-arrow {
  display: inline-block;
  transition: transform .2s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-lg { padding: 16px 24px; font-size: 16px; }

.hero-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 32px; flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-meta li { display: flex; align-items: baseline; gap: 8px; }
.hero-meta strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--bone);
  letter-spacing: -0.01em;
}

/* hero art */
.hero-art {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
}
.hero-art img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 22, 32, 0.55) 100%);
  pointer-events: none;
}
.hero-ticker {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: rgba(14, 22, 32, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone);
  overflow: hidden;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.tk-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  flex-shrink: 0;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.tk-label { color: var(--muted); text-transform: uppercase; }
.tk-val { color: var(--bone); font-weight: 600; }
.tk-val em { font-style: normal; color: var(--muted); font-weight: 400; }
.tk-sep { color: var(--muted-2); }

/* marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  margin-top: 0;
  background: var(--navy);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 18px 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  color: var(--bone);
}
.marquee-track span { opacity: 0.92; }
.mq-star { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------
   SECTION HEADS
   --------------------------------------------------------------- */
.kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
}
.kicker.dark { color: var(--navy); opacity: 0.7; }

.sec-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.sec-head h2 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.sec-sub {
  font-size: 17px;
  color: var(--bone);
  opacity: 0.72;
  margin: 0;
  line-height: 1.55;
}

/* ---------------------------------------------------------------
   THESIS
   --------------------------------------------------------------- */
.thesis {
  padding: clamp(72px, 9vw, 128px) var(--pad-x);
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.thesis-inner { max-width: var(--maxw); margin: 0 auto; }
.thesis-h {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  max-width: 22ch;
}
.thesis-h .muted { color: var(--muted); display: block; }
.thesis-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1100px;
}
.thesis-cols p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--bone);
  opacity: 0.82;
  margin: 0;
}
.thesis-cols strong { color: var(--yellow); font-weight: 700; }
@media (max-width: 760px) {
  .thesis-cols { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   PROTOCOLS
   --------------------------------------------------------------- */
.protocols {
  padding: clamp(72px, 9vw, 128px) var(--pad-x);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border-bottom: 1px solid var(--navy-line);
}
.protocol-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 980px) {
  .protocol-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--navy);
  border: 1px solid var(--navy-line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.card:hover { border-color: var(--muted-2); transform: translateY(-2px); }

.card-feature {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.card-feature:hover { border-color: var(--bone); }
.card-feature .card-tag {
  background: var(--navy);
  color: var(--yellow);
}
.card-feature .card-icon { color: var(--navy); }
.card-feature .card-lede { color: var(--navy); opacity: 0.78; }
.card-feature .card-bullets li { border-color: rgba(30,41,53,0.18); color: var(--navy); }
.card-feature .card-bullets em { color: var(--navy); opacity: 0.65; }
.card-feature .card-price { color: var(--navy); }
.card-feature .card-link { color: var(--navy); }
.card-feature .card-link:hover { color: var(--bone); }

.card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.card-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.card-icon { width: 28px; height: 28px; color: var(--yellow); }

.card h3 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.card-lede {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--bone);
  opacity: 0.7;
  margin: 0 0 22px;
}

.card-bullets {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.card-bullets li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0;
  border-top: 1px solid var(--navy-line);
  font-size: 14px;
  color: var(--bone);
}
.card-bullets li:last-child { border-bottom: 1px solid var(--navy-line); }
.card-bullets em {
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 6px;
}
.card-price {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--yellow);
}
.card-price em {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.card-link {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  transition: opacity .15s var(--ease);
}
.card-link:hover { opacity: 0.7; }

/* ---------------------------------------------------------------
   SPLIT
   --------------------------------------------------------------- */
.split {
  padding: clamp(72px, 9vw, 128px) var(--pad-x);
  background: var(--navy-2);
  border-bottom: 1px solid var(--navy-line);
}
.split {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
}
.split-img {
  margin: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--navy-line);
  aspect-ratio: 4 / 5;
  background: var(--navy);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  background: linear-gradient(180deg, transparent 0%, rgba(14, 22, 32, 0.85) 100%);
}
.cap-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--yellow);
}

.split-body h2 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  max-width: 16ch;
}
.split-body > p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--bone);
  opacity: 0.78;
  margin: 0 0 36px;
  max-width: 56ch;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0;
}
.stat-grid > div {
  padding: 22px 0 0;
  border-top: 1px solid var(--navy-line);
}
.stat-grid dt {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.stat-grid dd {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--yellow);
  margin: 0 0 6px;
}
.stat-grid dd em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  font-weight: 700;
  margin-left: 2px;
}
.stat-grid small {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--ff-mono);
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------
   PROCESS
   --------------------------------------------------------------- */
.process {
  padding: clamp(72px, 9vw, 128px) var(--pad-x);
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.steps {
  max-width: var(--maxw); margin: 0 auto;
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border: 1px solid var(--navy-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.steps li {
  padding: 32px 28px;
  border-right: 1px solid var(--navy-line);
  position: relative;
  background: var(--navy);
  transition: background .2s var(--ease);
}
.steps li:hover { background: var(--navy-2); }
.steps li:last-child { border-right: none; }
@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li:nth-child(2n) { border-right: none; }
  .steps li:nth-child(1), .steps li:nth-child(2) { border-bottom: 1px solid var(--navy-line); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .steps li { border-right: none; border-bottom: 1px solid var(--navy-line); }
  .steps li:last-child { border-bottom: none; }
}
.step-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  font-weight: 600;
}
.step-ic {
  width: 36px; height: 36px;
  color: var(--bone);
  margin: 16px 0 18px;
  opacity: 0.92;
}
.steps h4 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.steps p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone);
  opacity: 0.7;
  margin: 0;
}

/* ---------------------------------------------------------------
   PULL QUOTE
   --------------------------------------------------------------- */
.quote {
  padding: clamp(72px, 9vw, 128px) var(--pad-x);
  background: var(--navy-2);
  text-align: center;
  border-bottom: 1px solid var(--navy-line);
  position: relative;
}
.q-star {
  width: 40px; height: 40px;
  color: var(--yellow);
  margin: 0 auto 28px;
  display: block;
}
.quote blockquote {
  max-width: 22ch;
  margin: 0 auto 24px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.quote blockquote em { font-style: normal; color: var(--yellow); }
.quote cite {
  display: inline-flex; flex-direction: column; gap: 4px;
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cite-name { color: var(--bone); font-weight: 600; }
.cite-meta { color: var(--muted); }

/* ---------------------------------------------------------------
   FAQ
   --------------------------------------------------------------- */
.faq {
  padding: clamp(72px, 9vw, 128px) var(--pad-x);
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.faq-list {
  max-width: 880px; margin: 0 auto;
}
.faq details {
  border-top: 1px solid var(--navy-line);
  padding: 24px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--navy-line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.015em;
  color: var(--bone);
  transition: color .15s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--ff-mono);
  font-size: 24px;
  color: var(--yellow);
  transition: transform .2s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--yellow); }
.faq details p {
  margin: 14px 0 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone);
  opacity: 0.76;
}

/* ---------------------------------------------------------------
   CTA
   --------------------------------------------------------------- */
.cta {
  padding: clamp(72px, 9vw, 128px) var(--pad-x);
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 110%, rgba(30, 41, 53, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% -10%, rgba(30, 41, 53, 0.10), transparent 50%);
  pointer-events: none;
}
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; }
.cta h2 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: var(--navy);
}
.cta-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
  opacity: 0.78;
  margin: 0 0 36px;
}

.apply-form {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto 18px;
}
.apply-form input {
  flex: 1 1 240px;
  padding: 16px 18px;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--navy);
  background: rgba(30, 41, 53, 0.06);
  border: 1px solid rgba(30, 41, 53, 0.2);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.apply-form input::placeholder { color: rgba(30, 41, 53, 0.5); }
.apply-form input:focus {
  border-color: var(--navy);
  background: rgba(30, 41, 53, 0.1);
}
.apply-form .btn-primary {
  background: var(--navy);
  color: var(--yellow);
}
.apply-form .btn-primary:hover {
  background: var(--ink);
  color: var(--yellow);
}
.form-status {
  margin: 16px 0 0;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--navy);
  opacity: 0.7;
  flex-basis: 100%;
}
.cta-fine {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
}

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.foot {
  padding: clamp(56px, 7vw, 96px) var(--pad-x) 28px;
  background: var(--ink);
  color: var(--bone);
}
.foot-top {
  max-width: var(--maxw); margin: 0 auto 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--navy-line);
}
.wordmark-foot .wm-logo { height: 40px; }
.foot-tag {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
}

.foot-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h5 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
  font-weight: 600;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a {
  font-size: 14.5px;
  color: var(--bone);
  opacity: 0.7;
  transition: opacity .15s var(--ease), color .15s var(--ease);
}
.foot-grid a:hover { color: var(--yellow); opacity: 1; }

.foot-bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--navy-line);
  flex-wrap: wrap; gap: 12px;
}
.foot-bottom small {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.foot-bottom .mono { color: var(--yellow); opacity: 0.65; }

/* ---------------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
