/* ============================================================
   APLINASTRIKE v5 — mintfpv-inspired · hyper professional
   Black · large type · product PNG · 2/3 combat frame
   ============================================================ */

:root {
  --bg: #000;
  --bg-2: #070809;
  --line: rgba(255,255,255,0.09);
  --line-2: rgba(255,255,255,0.16);
  --text: #f4f4f4;
  --mute: #949494;
  --dim: #5a5a5a;
  --green: #3f8f68;
  --green-soft: #6fbf90;
  --steel: #9aa3ad;
  --swiss: #D52B1E;
  --font: "Inter", system-ui, sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --nav: 68px;
  --gutter: clamp(1.25rem, 4.2vw, 3.25rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav) + var(--safe-t));
  background: #000;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--font);
  background: #000;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  /* faint depth — futurist without HUD noise */
  background-image:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(111, 191, 144, 0.04), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(154, 163, 173, 0.03), transparent 50%);
  background-attachment: fixed;
}

/* ============================================================
   ACCESS GATE — epic partner lock screen
   ============================================================ */
body.gate-locked {
  overflow: hidden;
  height: 100dvh;
  height: 100vh;
}
body.gate-locked > :not(#gate) {
  visibility: hidden !important;
  pointer-events: none !important;
  max-height: 0 !important;
  overflow: hidden !important;
}
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #000;
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}
.gate.gate-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gate-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(111, 191, 144, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(154, 163, 173, 0.05), transparent 55%),
    #000;
}
.gate-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 3px
  );
  opacity: 0.7;
  animation: gateScan 8s linear infinite;
}
@keyframes gateScan {
  from { transform: translateY(0); }
  to { transform: translateY(12px); }
}
/* ---- Loader: clean SVG layers, aggressive strike loop ---- */
.gate-loader {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gate-loader.is-done {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
  position: absolute;
}
.gate-logo-wrap {
  position: relative;
  width: min(72vw, 280px);
  aspect-ratio: 1168 / 880;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
}
.gate-part {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  will-change: transform, opacity;
  /* flat vectors — no texture, no fringe */
  image-rendering: auto;
}
/* White strike base — hard enter from lower-left, exit upper-right */
.gate-part-white {
  animation: logoWhiteIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
/* Green peak — delayed slam from upper-left, exit lower-right */
.gate-part-green {
  animation: logoGreenIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes logoWhiteIn {
  0%   { opacity: 0; transform: translate(-48px, 36px) scale(0.92) rotate(-4deg); }
  8%   { opacity: 1; }
  28%  { transform: translate(2px, -1px) scale(1.03) rotate(0.5deg); }
  36%  { transform: translate(0, 0) scale(1) rotate(0deg); }
  52%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  72%  { opacity: 0; transform: translate(36px, -22px) scale(0.96) rotate(3deg); }
  100% { opacity: 0; transform: translate(36px, -22px) scale(0.96) rotate(3deg); }
}
@keyframes logoGreenIn {
  0%   { opacity: 0; transform: translate(-28px, -42px) scale(0.9) rotate(5deg); }
  10%  { opacity: 0; }
  16%  { opacity: 1; }
  34%  { transform: translate(1px, 2px) scale(1.04) rotate(-0.5deg); }
  42%  { transform: translate(0, 0) scale(1) rotate(0deg); }
  52%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  78%  { opacity: 0; transform: translate(22px, 28px) scale(0.94) rotate(-4deg); }
  100% { opacity: 0; transform: translate(22px, 28px) scale(0.94) rotate(-4deg); }
}
.gate-loader-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 4.5vw, 1.8rem);
  letter-spacing: -0.02em;
  color: #f4f4f4;
  animation: logoNameIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes logoNameIn {
  0%, 14% { opacity: 0; transform: translateY(10px); letter-spacing: 0.08em; }
  34%, 52% { opacity: 1; transform: translateY(0); letter-spacing: -0.02em; }
  72%, 100% { opacity: 0; transform: translateY(-8px); letter-spacing: 0.04em; }
}

.gate-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  text-align: center;
  padding: 2.35rem 1.75rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(165deg, rgba(12,12,12,0.95), rgba(0,0,0,0.92));
  box-shadow:
    0 0 0 1px rgba(111, 191, 144, 0.06),
    0 30px 80px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.04);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gate-panel.is-in {
  opacity: 1;
  transform: none;
}
.gate-panel[hidden] { display: none; }
.gate-panel.is-in[hidden] { display: block; }
.gate-brand {
  margin-bottom: 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
}
/* Clean flat dual-tone mark — no scrap/texture marks */
.gate-mark-frame {
  width: min(58vw, 200px);
  aspect-ratio: 1168 / 880;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.55))
          drop-shadow(0 0 24px rgba(111, 191, 144, 0.18));
}
.gate-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.gate-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.gate-company {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.75rem, 5.5vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #f4f4f4;
  /* solid name — match site brand lockup, not metallic wash */
}
.gate-company-sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  letter-spacing: 0.04em;
  color: rgba(244,244,244,0.78);
}
.gate-company-loc {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
}
.gate-divider {
  width: 48px;
  height: 1px;
  margin: 1.15rem auto 1.1rem;
  background: linear-gradient(90deg, transparent, var(--green-soft), transparent);
  opacity: 0.7;
}
.gate-mono {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.55rem;
}
.gate-sub {
  font-size: 0.9rem;
  color: var(--mute);
  line-height: 1.5;
  margin-bottom: 1.35rem;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.gate-form {
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.gate-form.is-ready {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.gate-label {
  display: block;
  text-align: left;
  font-size: 0.68rem;
  color: var(--dim);
  margin-bottom: 0.4rem;
  letter-spacing: 0.12em;
}
.gate-input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line-2);
  background: #080808;
  border-radius: 2px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gate-input:focus {
  border-color: rgba(111, 191, 144, 0.45);
  box-shadow: 0 0 0 1px rgba(111, 191, 144, 0.15);
}
.gate-submit { margin-top: 0.15rem; }
.gate-err {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: #c55;
  letter-spacing: 0.1em;
}
.gate-foot {
  margin-top: 1.35rem;
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.12em;
}
.gate-shake {
  animation: gateShake 0.4s var(--ease);
}
@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}
body.gate-success .gate-panel {
  box-shadow:
    0 0 0 1px rgba(111, 191, 144, 0.35),
    0 0 60px rgba(111, 191, 144, 0.15),
    0 30px 80px rgba(0,0,0,0.65);
}
@media (prefers-reduced-motion: reduce) {
  .gate-scan, .gate-shake,
  .gate-part-green, .gate-part-white, .gate-loader-name {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

::selection {
  background: rgba(111, 191, 144, 0.22);
  color: #fff;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; background: none; border: none; outline: none; }
input { font-size: 16px; }

.mono {
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: calc(var(--nav) + var(--safe-t));
  padding: var(--safe-t) var(--gutter) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(111, 191, 144, 0.12);
  box-shadow: 0 1px 0 rgba(111, 191, 144, 0.04);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-mark {
  flex-shrink: 0;
  width: 44px;
  height: 36px;
  object-fit: contain;
  filter: none;
  transition: opacity 0.25s var(--ease);
}
.brand:hover .brand-mark {
  opacity: 0.88;
}
.swiss-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 2.5px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.swiss-mark.lg {
  width: 28px;
  height: 28px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-copy strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}
.brand-copy span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
}
.links { display: flex; align-items: center; gap: 0.25rem; }
.links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mute);
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
}
.links a:hover { color: var(--text); }
.links .cta {
  margin-left: 0.35rem;
  background: #fff;
  color: #000 !important;
  border-radius: 2px;
  padding: 0.6rem 1.1rem !important;
}

/* Language — folder menu: selected flag only, open for options */
.lang {
  position: relative;
  margin-left: 0.5rem;
  flex-shrink: 0;
  z-index: 60;
}
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 30px;
  padding: 0 0.4rem 0 0.28rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 3px;
  background: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.lang-trigger:hover,
.lang.is-open .lang-trigger {
  border-color: rgba(111, 191, 144, 0.45);
  background: rgba(0,0,0,0.72);
  box-shadow: 0 0 0 1px rgba(111, 191, 144, 0.12);
}
.lang-face {
  width: 30px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.lang-face .flag {
  width: 100%;
  height: 100%;
  display: block;
}
.lang-chevron {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid rgba(255,255,255,0.55);
  transition: transform 0.2s var(--ease);
}
.lang.is-open .lang-chevron {
  transform: rotate(180deg);
  border-top-color: var(--green-soft);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 148px;
  padding: 0.3rem;
  background: rgba(6,6,6,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 0.15rem;
}
.lang-menu[hidden] { display: none; }
.lang-opt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.lang-opt:hover { background: rgba(255,255,255,0.06); }
.lang-opt.is-on {
  background: rgba(111, 191, 144, 0.1);
  box-shadow: inset 0 0 0 1px rgba(111, 191, 144, 0.28);
}
.lang-opt .flag {
  width: 28px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
  display: block;
}

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  position: relative;
  cursor: pointer;
}
.burger i, .burger i::before, .burger i::after {
  position: absolute; left: 12px; right: 12px; height: 1.5px; background: #fff;
}
.burger i { top: 22px; }
.burger i::before { content: ""; top: -7px; }
.burger i::after { content: ""; top: 7px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.btn.solid {
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 42%, #a0a0a0 100%);
  color: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 8px 26px rgba(0,0,0,0.38);
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.btn.solid:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ffffff 0%, #e4e4e4 42%, #b0b0b0 100%);
}
.btn.ghost {
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn.ghost:hover { border-color: rgba(255,255,255,0.35); }
.btn.full { width: 100%; }

/* ---- Type helpers ---- */
.kicker {
  font-size: 0.78rem;
  color: var(--green-soft);
  margin-bottom: 1.25rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.kicker::before {
  content: "";
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--green-soft), transparent);
  opacity: 0.85;
}
.sub {
  font-size: clamp(0.98rem, 1.9vw, 1.12rem);
  color: var(--mute);
  line-height: 1.55;
  max-width: 28ch;
}
.sub.mid { max-width: 36ch; margin: 0 auto 1.75rem; text-align: center; color: var(--mute); }

/* Subtle page reveals */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HERO — mintfpv: big type + STATIC hi-res PNG on black
   ============================================================ */
.hero {
  min-height: 100dvh;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.75fr 1.35fr;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  align-items: center;
  padding: calc(var(--nav) + var(--safe-t) + 0.25rem) var(--gutter) 1.25rem;
  max-width: 1680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; /* keep oversized drone from shifting the page sideways */
  width: 100%;
  max-width: min(1680px, 100%);
}
/* soft red wash removed — was reading as sunlight on the drone */
.hero-left,
.hero-right { position: relative; z-index: 1; }

.hero-left { max-width: 520px; }

.hero-identity {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}
.hero-a {
  width: 56px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
}
.hero-name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.15;
}
.hero-name strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  letter-spacing: 0.02em;
  color: var(--text);
}
.hero-name .mono {
  font-size: 0.78rem;
  color: var(--green-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(111, 191, 144, 0.2);
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

/* Major headlines — same mono + weight language as “Unjammable Potency” */
.type-major {
  /* slightly more refined display for silver heads */
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  filter: drop-shadow(0 0 36px rgba(255, 255, 255, 0.14));
}
.type-major .type-line {
  display: block;
  min-height: 1.05em;
  white-space: nowrap;
  /* stronger silver metallic look */
  color: transparent;
  background: linear-gradient(
    175deg,
    #ffffff 0%,
    #ffffff 12%,
    #e8e8e8 28%,
    #c0c0c0 48%,
    #9e9e9e 72%,
    #787878 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.type-major .type-line.accent {
  background: linear-gradient(
    175deg,
    #ffffff 0%,
    #ffffff 10%,
    #f0f0f0 26%,
    #d0d0d0 50%,
    #a8a8a8 75%,
    #808080 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* caret only while typing — very subtle */
.type-major .type-line.typing::after {
  content: "▌";
  display: inline;
  margin-left: 2px;
  color: rgba(200, 200, 200, 0.7);
  opacity: 0.65;
  -webkit-text-fill-color: rgba(200, 200, 200, 0.75);
  animation: caret 0.9s step-end infinite;
  font-weight: 400;
}
@keyframes caret {
  50% { opacity: 0; }
}
/* Post-landing major heads — same design as landing slogan, slightly stepped down from hero max */
.combat-label h2.type-major,
.why-top h2.type-major,
.contact h2.type-major,
.how-copy h2.type-major,
.trust-hero-overlay h2.type-major,
.path-head h2.type-major {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.2vw, 3.9rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero .sub { margin-bottom: 2rem; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0;
}

/* Product PNG — static, oversized, hyper-res */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(82vh, 800px);
  width: 100%;
  margin-right: calc(var(--gutter) * -0.4);
}
/* glow/sunlight effect removed */
.drone-glow { display: none !important; }
.drone-png {
  position: relative;
  z-index: 1;
  width: min(155%, 1120px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: none;
  user-select: none;
  /* STATIC — no float / tilt / spin */
  transform: none !important;
  animation: none !important;
  image-rendering: -webkit-optimize-contrast;
}

/* ============================================================
   COMBAT — full width, ~2/3 viewport height
   ============================================================ */
.combat {
  border-top: 1px solid var(--line);
  background: #000;
}
.combat-label {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.1rem, 4.5vw, 3rem) var(--gutter) 1.75rem;
  position: relative;
  z-index: 2;
}
.combat-label h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
  padding-bottom: 0.5rem;
}
.combat-label .mono {
  font-size: 0.78rem;
  color: var(--dim);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: 0.12em;
}
/* soft kicker line — same language as rest of site */
.combat-label .mono::before {
  content: "";
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--mute), transparent);
  opacity: 0.7;
  transform: none;
  border: 0;
}

.combat-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  height: 70vh;
  min-height: 380px;
  max-height: none;
  background: #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  box-shadow: none;
}
/* no HUD corners */
.combat-frame::before,
.combat-frame::after {
  display: none;
}
.combat-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.88) brightness(0.9);
}
.combat-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 18%);
}
.combat-meta {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
  z-index: 2;
}
.combat-meta .mono {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: none;
  min-width: 12ch;
  text-shadow: none;
  font-weight: 400;
}
.track {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.track i {
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.55);
  box-shadow: none;
}

/* ============================================================
   WHY FIBER
   ============================================================ */
.why {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 6rem) var(--gutter);
  position: relative;
}
.why::before {
  content: "";
  position: absolute;
  inset: 8% 4% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 191, 144, 0.35), transparent);
  opacity: 0.7;
  pointer-events: none;
}
.why-top { margin-bottom: 2.5rem; }
.why-top h2 {
  margin: 0;
}

.toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.toggle button {
  padding: 0.95rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mute);
  cursor: pointer;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
}
.toggle button:hover { color: var(--text); }
.toggle button.on {
  color: var(--text);
  border-bottom-color: var(--green-soft);
  background: linear-gradient(180deg, rgba(111, 191, 144, 0.08), transparent);
  box-shadow: inset 0 0 0 1px rgba(111, 191, 144, 0.06);
}

.panel {
  border: 1px solid var(--line);
  background: var(--bg-2);
  margin-bottom: 2rem;
}
.panel.hide { display: none; }
.panel-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
}
.panel-copy h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.panel-copy p {
  font-size: 0.95rem;
  color: var(--mute);
  line-height: 1.55;
  max-width: 28ch;
}
/* Advantage diagrams — keep full visual scale */
.viz {
  width: 100%;
  height: auto;
  min-height: 200px;
  transform: none;
}
.viz .t {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  fill: #777;
}
.viz .t.red { fill: #c55; }
.viz .t.green { fill: var(--green-soft); }
.wave { animation: pulse 1.4s ease-in-out infinite; }
.glass {
  stroke-dasharray: 5 6;
  animation: dash 1s linear infinite;
  filter: drop-shadow(0 0 3px rgba(74,155,110,0.4));
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}
@keyframes dash { to { stroke-dashoffset: -22; } }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cards article {
  background: #000;
  padding: 1.5rem 1.25rem;
  transition: background 0.25s, box-shadow 0.25s;
  position: relative;
}
.cards article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--green-soft), transparent);
  opacity: 0.35;
}
.cards article:hover {
  background: #0a0a0a;
  box-shadow: inset 0 0 40px rgba(111, 191, 144, 0.03);
}
.cards .mono {
  display: block;
  font-size: 0.8rem;
  color: var(--green-soft);
  margin-bottom: 0.85rem;
}
.cards h3 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}
.cards p {
  font-size: 0.9rem;
  color: var(--mute);
}

/* ============================================================
   HOW IT WORKS — spool hero + step montage
   ============================================================ */
.how {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 9vw, 6rem) var(--gutter);
  max-width: 1180px;
  margin: 0 auto;
}
.how-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.how-intro--text {
  grid-template-columns: 1fr;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.how-intro--text .how-copy .sub {
  max-width: 40ch;
}
.how-copy .sub {
  max-width: 36ch;
  margin-top: 1rem;
}
.how-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(42vh, 380px);
}
.how-spool-png {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.55));
  user-select: none;
}

.how-steps {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}
.how-step {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.how-step:hover {
  border-color: rgba(111, 191, 144, 0.22);
  box-shadow: inset 0 0 40px rgba(111, 191, 144, 0.03);
}
.how-step.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.how-step.reverse .how-step-media { order: 2; }
.how-step.reverse .how-step-text { order: 1; }

.how-step-media {
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step-media img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
}
.how-step-text .mono {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--green-soft);
  margin-bottom: 0.65rem;
}
.how-step-text h3 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.how-step-text p {
  font-size: 0.95rem;
  color: var(--mute);
  line-height: 1.55;
  max-width: 36ch;
}

/* ============================================================
   TRUST — Swiss legitimacy (classic hero, no strip fade)
   ============================================================ */
.trust {
  border-top: 1px solid var(--line);
}
.trust-hero {
  position: relative;
  min-height: min(58vh, 520px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.trust-hero > img {
  width: 100%;
  height: 100%;
  min-height: min(58vh, 520px);
  object-fit: cover;
  object-position: center 35%;
  /* full B&W, no edge fade */
  filter: grayscale(1) brightness(1) contrast(1.08);
}
.trust-hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* light bottom wash only so type stays readable */
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 45%,
    rgba(0,0,0,0.35) 75%,
    rgba(0,0,0,0.7) 100%
  );
}
.trust-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2.25rem, 6vw, 4rem) var(--gutter);
  max-width: 1180px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 1;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  padding: 0.35rem 0.7rem 0.35rem 0.35rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 3px;
  width: fit-content;
}
.trust-badge .swiss-mark {
  width: 22px;
  height: 22px;
  border-radius: 2.5px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.trust-badge .mono {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: rgba(244,244,244,0.9);
}
.trust-hero-overlay .kicker {
  margin-bottom: 0.85rem;
}
.trust-hero-overlay h2.type-major {
  filter: drop-shadow(0 4px 28px rgba(0,0,0,0.55));
}
.trust-hero-overlay h2.type-major::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, var(--green-soft), transparent);
  opacity: 0.75;
}
.trust-lead {
  margin-top: 1rem;
  max-width: 36ch;
  color: rgba(240,240,240,0.9);
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.trust-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-card {
  background: #000;
  padding: 1.65rem 1.35rem 1.75rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  border-top: 2px solid transparent;
  position: relative;
}
.trust-card:hover {
  background: #0a0a0a;
  border-top-color: rgba(111, 191, 144, 0.45);
}
.trust-card .mono {
  display: block;
  font-size: 0.72rem;
  color: var(--green-soft);
  margin-bottom: 0.75rem;
  letter-spacing: 0.12em;
}
.trust-card h3 {
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  letter-spacing: -0.015em;
}
.trust-card p {
  font-size: 0.9rem;
  color: var(--mute);
  line-height: 1.55;
}
/* stagger when revealed */
.trust-card.reveal {
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.trust-band {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.trust-band-media {
  min-height: 320px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.trust-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(0,0,0,0.35));
  pointer-events: none;
}
.trust-band-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: brightness(0.58) contrast(1.1) saturate(0.55);
  transition: transform 1.2s var(--ease);
}
.trust-band.reveal.in .trust-band-media img {
  transform: scale(1.03);
}
.trust-band-copy {
  padding: clamp(2rem, 4.5vw, 2.85rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(165deg, #090a0b 0%, #050505 100%);
  border-left: 1px solid var(--line);
}
.trust-band-copy > .mono {
  font-size: 0.72rem;
  color: var(--green-soft);
  margin-bottom: 0.85rem;
  letter-spacing: 0.12em;
}
.trust-band-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  color: #f2f2f2;
}
.trust-band-copy > p {
  font-size: 0.95rem;
  color: var(--mute);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 38ch;
}
.trust-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}
.trust-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
}
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 1px;
  background: var(--green-soft);
}
.trust-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--green-soft);
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 2px;
}
.trust-link:hover {
  color: #9fd;
  border-bottom-color: rgba(111, 191, 144, 0.45);
}

/* ============================================================
   PARTNERSHIP PATH
   ============================================================ */
.path {
  border-top: 1px solid var(--line);
  padding: clamp(3.75rem, 9vw, 6.5rem) var(--gutter);
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.path::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 680px);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(111, 191, 144, 0.05), transparent 70%);
  pointer-events: none;
}
.path-head {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  max-width: 38ch;
  position: relative;
}
.path-head h2.type-major::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, var(--green-soft), transparent);
  opacity: 0.7;
}
.path-lead {
  margin-top: 1rem;
}
.path-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.path-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(111, 191, 144, 0.06), transparent 65%),
    #000;
  border: 1px solid var(--line);
  padding: 1.5rem 1.25rem 1.1rem;
  overflow: hidden;
}
.path-visual-glow {
  position: absolute;
  inset: 20% 10%;
  background: radial-gradient(circle, rgba(154, 163, 173, 0.08), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}
.path-png {
  position: relative;
  z-index: 1;
  width: min(108%, 580px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.65));
  transition: transform 0.8s var(--ease);
}
.path-visual:hover .path-png {
  transform: scale(1.02) translateY(-4px);
}
.path-caption {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  color: var(--dim);
  letter-spacing: 0.14em;
  text-align: center;
}
.path-steps {
  list-style: none;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: #000;
  counter-reset: none;
}
.path-steps li {
  display: grid;
  grid-template-columns: 2.85rem 1fr;
  gap: 0.85rem;
  padding: 1.3rem 1.35rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
  position: relative;
}
.path-steps li:last-child { border-bottom: 0; }
.path-steps li:hover { background: #0a0a0a; }
.path-steps li:hover .path-num {
  color: #9fd4b0;
  text-shadow: 0 0 18px rgba(111, 191, 144, 0.35);
}
.path-steps li.reveal {
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    background 0.3s var(--ease);
  transition-delay: calc(var(--d, 0) * 80ms);
}
/* soft left accent on active/hover */
.path-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.3s var(--ease);
}
.path-steps li:hover::before {
  background: linear-gradient(180deg, var(--green-soft), transparent);
}
.path-num {
  font-size: 0.72rem;
  color: var(--green-soft);
  letter-spacing: 0.12em;
  padding-top: 0.25rem;
  transition: color 0.25s, text-shadow 0.25s;
}
.path-step-body h3 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
}
.path-step-body p {
  font-size: 0.9rem;
  color: var(--mute);
  line-height: 1.55;
  max-width: 38ch;
}
.path-cta {
  margin-top: clamp(2.25rem, 4.5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(111, 191, 144, 0.04), transparent 45%),
    #050505;
}
.path-cta-copy h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.path-cta-note {
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.1em;
}

/* Contact */
.contact {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--gutter);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact h2 {
  margin-bottom: 0.75rem;
}
.form {
  display: grid;
  gap: 0.75rem;
  text-align: left;
  margin-top: 0.5rem;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.form input {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-2);
  background: #080808;
  border-radius: 2px;
}
.form input:focus { border-color: rgba(255,255,255,0.35); }
.form input::placeholder { color: var(--dim); }
.note {
  font-size: 0.75rem;
  color: var(--dim);
  text-align: center;
}
.ok {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line-2);
  color: var(--mute);
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 1.5rem var(--gutter) calc(1.5rem + var(--safe-b));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--dim);
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--mute);
  font-family: var(--display);
  font-weight: 500;
}
.foot .mono { font-size: 0.72rem; color: var(--dim); }

body.nav-open { overflow: hidden; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    /* tighter: keep full landing in view — cut black air, not drone size */
    padding-top: calc(var(--nav) + var(--safe-t) + 0.35rem);
    padding-bottom: 1.25rem;
    gap: 0.45rem;
    align-items: start;
  }
  .hero-right {
    order: -1;
    min-height: 0; /* was forcing empty black under the PNG */
    margin-right: 0;
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .drone-png {
    width: min(100%, 760px); /* solid phone: no horizontal bleed */
    max-width: 100%;
    margin-bottom: 0;
  }
  body {
    background-attachment: scroll; /* fixed bg janks iOS sideways feel */
  }
  .hero-left {
    max-width: none;
    padding-top: 0;
  }
  .hero-identity {
    margin-bottom: 0.75rem;
    gap: 0.65rem;
  }
  .hero h1 {
    margin-bottom: 0.75rem;
  }
  .hero .sub {
    margin-bottom: 1rem;
  }
  .brand-mark { width: 40px; height: 32px; }
  .brand-copy strong { font-size: 0.94rem; }
  .hero { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .how-intro {
    grid-template-columns: 1fr;
  }
  .how-hero-visual { order: -1; min-height: 280px; }
  .how-spool-png { width: min(92%, 400px); }
  .how-step,
  .how-step.reverse {
    grid-template-columns: 1fr;
  }
  .how-step.reverse .how-step-media,
  .how-step.reverse .how-step-text { order: unset; }
  .how-step-media { min-height: 180px; }
  .how-step-media img { max-height: 260px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band-copy { border-left: 0; border-top: 1px solid var(--line); }
  .trust-band-media { min-height: 220px; }
  .trust-band-media img { min-height: 220px; }
  .trust-hero { min-height: min(48vh, 400px); }
  .trust-hero > img { min-height: min(48vh, 400px); }
  .path-layout { grid-template-columns: 1fr; }
  .path-visual { order: -1; min-height: 260px; }
  .path-cta { flex-direction: column; align-items: flex-start; }
  .path-cta .btn { width: 100%; }
  .burger { display: block; }
  .lang {
    margin-left: auto;
    margin-right: 0.45rem;
  }
  .lang-menu {
    right: 0;
    left: auto;
  }
  .links {
    position: fixed;
    top: calc(var(--nav) + var(--safe-t));
    left: 0; right: 0; bottom: 0;
    background: #000;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--gutter);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .links.open { opacity: 1; pointer-events: auto; }
  .links a {
    font-size: 1.2rem;
    padding: 1.1rem 0.25rem;
    border-bottom: 1px solid var(--line);
    color: var(--text);
  }
  .links .cta {
    margin: 1.5rem 0 0;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body { font-size: 14.5px; }
  .hero {
    padding-top: calc(var(--nav) + var(--safe-t) + 0.15rem);
    padding-bottom: 0.75rem;
    gap: 0.15rem;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
    margin-bottom: 0.5rem;
  }
  .hero-identity { margin-bottom: 0.45rem; }
  .hero .sub { margin-bottom: 0.65rem; }
  .combat-label h2.type-major,
  .why-top h2.type-major,
  .contact h2.type-major {
    font-size: clamp(1.85rem, 7.5vw, 2.65rem);
  }
  .type-major .type-line { white-space: normal; }
  .actions { flex-direction: column; gap: 0.5rem; }
  .actions .btn { width: 100%; }
  .form .row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-hero-overlay h2.type-major,
  .path-head h2.type-major,
  .how-copy h2.type-major {
    font-size: clamp(1.85rem, 7.5vw, 2.65rem);
  }
  .path-steps li {
    grid-template-columns: 2.5rem 1fr;
    padding: 1.15rem 1.1rem;
  }
  .combat-frame {
    height: 66vh;
    min-height: 280px;
  }
  /* Advantage diagrams stay full size */
  .viz { width: 100%; min-height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .type-major .type-line.typing::after { content: none; }
  html { scroll-behavior: auto; }
}

/* Silver CTA polish */
.btn.solid {
  position: relative;
  overflow: hidden;
}
.btn.solid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.35) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}
.btn.solid:hover::after { transform: translateX(120%); }
.btn.solid:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 0 0 1px rgba(255,255,255,0.2),
    0 12px 32px rgba(0,0,0,0.4);
}
.btn.ghost:hover {
  border-color: rgba(111, 191, 144, 0.4);
  box-shadow: 0 0 22px rgba(111, 191, 144, 0.06);
}
.links .cta {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}
.panel {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
}
/* thin tech frame under major section titles */
.combat-label h2.type-major::after,
.why-top h2.type-major::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--green-soft), transparent);
  opacity: 0.7;
}
.contact h2.type-major::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--green-soft), transparent);
  opacity: 0.65;
}

