/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --ground: #080808;
  --black: #000000;
  --surface: #141414;
  --surface-raised: #1c1c1c;
  --hairline: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #909090;
  --green: #3DDC6E;
  --green-dim: #1f6e3a;

  --display: "Clash Display", "Trebuchet MS", system-ui, sans-serif;
  --body: "General Sans", system-ui, "Segoe UI", sans-serif;
  --mono: "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --rail-w: 64px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--ground);
  color: var(--text-secondary);
  font-family: var(--body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  text-wrap: pretty;
}

/* subtle film grain, fixed + non-interactive */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; color: var(--text-primary); line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance; }

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

/* shared mono label */
.mono {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.mono--green { color: var(--green); }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* skip link */
.skip {
  position: fixed;
  top: -120px;
  left: 1rem;
  z-index: 200;
  background: var(--green);
  color: var(--ground);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.3s var(--ease);
}
.skip:focus { top: 1rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

section { position: relative; }
.band { background: var(--surface); }

.section-pad { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.section-num {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.section-num .num { color: var(--green); }

h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.lead { color: var(--text-secondary); max-width: 46ch; }

/* ============================================================
   METER RAIL (fixed left edge desktop)
   ============================================================ */
.rail {
  position: fixed;
  top: 0; left: 0;
  width: var(--rail-w);
  height: 100dvh;
  z-index: 80;
  border-right: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(8,8,8,0.92), rgba(8,8,8,0.55) 30%, rgba(8,8,8,0));
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
}
.rail__scale { display: flex; flex-direction: column; align-items: center; gap: clamp(1rem, 5vh, 3.2rem); }
.rail__tick {
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.rail__track {
  position: absolute;
  top: 4.5rem; bottom: 4.5rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--hairline);
  border-radius: 2px;
}
.rail__cap {
  position: absolute;
  left: 50%;
  top: 0;
  width: 10px; height: 26px;
  transform: translate(-50%, 0);
  background: var(--green);
  border-radius: 3px;
  box-shadow: 0 0 14px 1px rgba(61, 220, 110, 0.55);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .rail__cap { box-shadow: 0 0 8px rgba(61,220,110,0.4); }
}

/* mobile horizontal progress bar under nav */
.railbar { display: none; }

@media (max-width: 900px) {
  .rail { display: none; }
  .railbar {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    z-index: 79;
    background: var(--hairline);
  }
  .railbar__fill {
    height: 100%;
    width: 0%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(61,220,110,0.6);
    transform-origin: left;
  }
  :root { --rail-w: 0px; }
}

/* push page right of the rail on desktop */
.page { margin-left: var(--rail-w); transition: margin-left 0.3s var(--ease); }
@media (max-width: 900px) { .page { margin-left: 0; } }

/* ============================================================
   NAV (floating, scroll-aware)
   ============================================================ */
.nav {
  position: fixed;
  top: 1.25rem;
  left: calc(var(--rail-w) + clamp(1rem, 3vw, 2rem));
  right: clamp(1rem, 3vw, 2rem);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.65rem 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.45s var(--ease), padding 0.4s var(--ease);
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--ground) 72%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: var(--hairline);
}
.nav.is-hidden { transform: translateY(-150%); }

.nav__logo img { height: 22px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.85rem 0.9rem;
  border-radius: 999px;
  transition: color 0.3s var(--ease);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem;
  bottom: 0.5rem;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  box-shadow: 0 0 8px rgba(61,220,110,0.55);
}
.nav__link.is-active { color: var(--text-primary); }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__phone {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 0.85rem 0.5rem;
  transition: color 0.3s var(--ease);
}
.nav__phone:hover { color: var(--green); }

.nav__right { display: flex; align-items: center; gap: 0.5rem; }

/* CTA pill — button-in-button */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green);
  color: var(--ground);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.6rem 0.6rem 0.6rem 1.25rem;
  border-radius: 999px;
  min-height: 44px;
  border: 0;
  cursor: pointer;
  transition: transform 0.4s var(--ease-soft), filter 0.3s var(--ease);
  will-change: transform;
}
.cta:hover { filter: brightness(1.08); }
.cta:active { transform: scale(0.97); }
.cta__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(8,8,8,0.16);
  transition: transform 0.4s var(--ease-soft);
}
.cta:hover .cta__node { transform: translate(3px, -1px) scale(1.06); }
.cta__node svg { width: 15px; height: 15px; stroke: var(--ground); stroke-width: 2.2; fill: none; }
.cta--sm { font-size: 0.75rem; padding: 0.5rem 0.5rem 0.5rem 0.95rem; }
.cta--sm .cta__node { width: 26px; height: 26px; }

/* hamburger */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), top 0.45s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
body.menu-open .nav__burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* mobile overlay */
.menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: color-mix(in srgb, var(--ground) 92%, transparent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem clamp(1.5rem, 8vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 9vw, 3.25rem);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  padding: 0.4rem 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.menu a .idx { font-family: var(--mono); font-weight: 400; font-size: 0.75rem; color: var(--green); margin-right: 1rem; vertical-align: super; letter-spacing: 0.1em; }
body.menu-open .menu a { opacity: 1; transform: translateY(0); }
body.menu-open .menu a:nth-child(1) { transition-delay: 0.12s; }
body.menu-open .menu a:nth-child(2) { transition-delay: 0.18s; }
body.menu-open .menu a:nth-child(3) { transition-delay: 0.24s; }
body.menu-open .menu a:nth-child(4) { transition-delay: 0.30s; }
.menu .menu__foot {
  margin-top: 2.5rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  transform: none; opacity: 1;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .nav__links, .nav__phone, .nav__right .cta { display: none; }
  .nav__burger { display: block; }
  .nav { left: 1rem; right: 1rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% 60%;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--ground) 4%, rgba(8,8,8,0.86) 34%, rgba(8,8,8,0.42) 62%, rgba(8,8,8,0.18) 100%),
    linear-gradient(0deg, var(--ground) 0%, rgba(8,8,8,0) 32%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(4rem, 10vh, 8rem);
  padding-top: 9rem;
}
.hero__kicker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero__kicker .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--green); box-shadow: 0 0 8px rgba(61,220,110,0.7); flex: none; }
.hero__kicker span { letter-spacing: 0.24em; }
.hero h1 {
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  line-height: 1.02;
  max-width: 16ch;
  margin-bottom: 1.75rem;
}
.hero__sub { color: var(--text-secondary); font-size: clamp(1.0625rem, 1.6vw, 1.375rem); max-width: 34ch; margin-bottom: 2.5rem; }
.hero__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.calllink {
  position: relative;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  padding: 0.85rem 0.25rem;
  background-image: linear-gradient(var(--green), var(--green));
  background-size: 0 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.45s var(--ease), color 0.3s var(--ease);
}
.calllink:hover { background-size: 100% 1.5px; color: var(--green); }
.calllink .ph { color: var(--text-muted); margin-right: 0.5rem; }

/* hero LED breathing on the real meters (very subtle, masked over the image right side) */
.hero__breath {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 80% at 88% 70%, rgba(61,220,110,0.10), transparent 55%);
  animation: breathe 6s var(--ease) infinite alternate;
}
@keyframes breathe { from { opacity: 0.55; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero__breath { animation: none; opacity: 0.7; } }

/* ============================================================
   PROMISE
   ============================================================ */
.promise h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  max-width: 18ch;
}
.promise .easy { position: relative; white-space: nowrap; }
.promise .easy::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.08em;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(61,220,110,0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.2s;
}
.promise.in .easy::after { transform: scaleX(1); }
.promise__tick { margin-bottom: 1.5rem; }
.promise__support { margin-top: 2rem; color: var(--text-secondary); font-size: clamp(1.0625rem, 1.4vw, 1.25rem); max-width: 38ch; }

/* ============================================================
   SERVICES — channel strip
   ============================================================ */
.svc-head { margin-bottom: clamp(3rem, 7vw, 5.5rem); max-width: 50ch; }
.svc-head h2 { margin-bottom: 1.25rem; }

.chan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-top: 1px solid var(--hairline);
}
.chan:last-of-type { border-bottom: 1px solid var(--hairline); }
.chan--flip .chan__media { order: -1; }

.chan__body { max-width: 44ch; }
.chan__index { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.chan__index .ch { font-family: var(--mono); font-size: 0.8125rem; letter-spacing: 0.14em; color: var(--green); font-variant-numeric: tabular-nums; }
.chan__fader { flex: 1; height: 1px; background: var(--hairline); position: relative; overflow: hidden; }
.chan__fader::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease);
}
.chan.in .chan__fader::before { transform: scaleX(0.62); }
.chan__live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green);
}
.chan__live .led { width: 7px; height: 7px; border-radius: 999px; background: var(--green); box-shadow: 0 0 8px rgba(61,220,110,0.8); }
.chan h3 { margin-bottom: 1rem; }
.chan__desc { color: var(--text-secondary); margin-bottom: 1.75rem; }
.chan__link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--body); font-weight: 600; font-size: 0.9375rem; color: var(--text-primary);
  min-height: 44px;
}
.chan__link svg { width: 16px; height: 16px; stroke: var(--green); stroke-width: 2.2; fill: none; transition: transform 0.4s var(--ease-soft); }
.chan__link:hover { color: var(--green); }
.chan__link:hover svg { transform: translateX(4px); }

/* double-bezel media frame */
.frame {
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  border-radius: 1.5rem;
  padding: 0.5rem;
}
.frame__inner {
  position: relative;
  border-radius: 1.05rem;
  overflow: hidden;
  background: var(--black);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
}
.frame__inner img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 1.2s var(--ease); }
.frame:hover .frame__inner img { transform: scale(1.04); }
.frame__tag {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  background: rgba(8,8,8,0.65); backdrop-filter: blur(6px);
  padding: 0.35rem 0.6rem; border-radius: 999px;
}

@media (max-width: 768px) {
  .chan { grid-template-columns: 1fr; gap: 2rem; }
  .chan--flip .chan__media { order: 0; }
}

/* ============================================================
   PROOF — see it live
   ============================================================ */
.proof__head { max-width: 48ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.proof__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: center;
}
.proof__big { grid-row: span 1; }
.proof__yt {
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  border-radius: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.proof__yt p { color: var(--text-secondary); }
.ytlink {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--green);
  min-height: 44px;
}
.ytlink svg { width: 22px; height: 22px; stroke: var(--green); stroke-width: 2; fill: none; transition: transform 0.4s var(--ease-soft); }
.ytlink:hover svg { transform: translate(3px, -3px); }
.proof__sub { color: var(--text-muted); font-size: 0.9375rem; margin-top: 0.75rem; }
.frame--tall .frame__inner img { aspect-ratio: 4 / 5; }

@media (max-width: 768px) {
  .proof__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about__body h2 { margin-bottom: 1.75rem; }
.about__body p { color: var(--text-secondary); margin-bottom: 1.25rem; max-width: 50ch; }
.factstrip {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.fact { display: flex; flex-direction: column; gap: 0.35rem; }
.fact__k { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.fact__v { font-family: var(--mono); font-size: 0.875rem; color: var(--text-secondary); letter-spacing: 0.02em; }
@media (max-width: 768px) { .about { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__head { margin-bottom: 2.5rem; }
.contact__head h2 { margin-bottom: 1rem; }

.panel {
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  border-radius: 1.75rem;
  padding: 0.5rem;
}
.panel__inner {
  background: var(--ground);
  border-radius: 1.3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}

.field { position: relative; display: block; margin-bottom: 1.5rem; }
.field input, .field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 0.75rem;
  color: var(--text-primary);
  font-family: var(--body);
  font-size: 1rem;
  padding: 1.5rem 1rem 0.6rem;
  transition: border-color 0.3s var(--ease);
  min-height: 56px;
}
.field textarea { min-height: 120px; resize: vertical; padding-top: 1.75rem; line-height: 1.5; }
.field label {
  position: absolute;
  left: 1rem; top: 1.05rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  pointer-events: none;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease), font-size 0.25s var(--ease);
  transform-origin: left;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.85rem) scale(0.82);
  color: var(--green);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #c44; }

fieldset { border: 0; margin-bottom: 1.5rem; }
fieldset legend { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.85rem; }
.radios { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio {
  position: relative;
}
.radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.8125rem; letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  min-height: 44px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.radio span::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px;
  background: var(--green-dim);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.radio input:checked + span { border-color: var(--green); color: var(--text-primary); background: color-mix(in srgb, var(--green) 8%, var(--surface)); }
.radio input:checked + span::before { background: var(--green); box-shadow: 0 0 8px rgba(61,220,110,0.7); }
.radio input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }

.form__submit { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form__note { font-family: var(--mono); font-size: 0.6875rem; color: var(--text-muted); letter-spacing: 0.04em; }
.form__status { font-family: var(--mono); font-size: 0.8125rem; color: var(--green); letter-spacing: 0.04em; margin-top: 1rem; min-height: 1.2em; }

/* NAP block */
.nap { margin-top: 0.5rem; }
.nap__row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; }
.nap__k { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); width: 4.5rem; flex: none; }
.nap__v { font-family: var(--mono); font-size: 1rem; color: var(--text-primary); letter-spacing: 0.01em; line-height: 1.5; }
.nap__v a { transition: color 0.3s var(--ease); }
.nap__v a:hover { color: var(--green); }
.nap__live { display: inline-flex; align-items: center; gap: 0.5rem; }
.nap__live .led { width: 7px; height: 7px; border-radius: 999px; background: var(--green); box-shadow: 0 0 9px rgba(61,220,110,0.8); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
@media (prefers-reduced-motion: reduce) { .nap__live .led { animation: none; } }
.maplink {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.06em; color: var(--green);
  margin-top: 0.25rem; min-height: 44px;
}
.maplink svg { width: 13px; height: 13px; stroke: var(--green); stroke-width: 2; fill: none; }
.maplink:hover { text-decoration: underline; text-underline-offset: 3px; }

.socials { display: flex; gap: 0.85rem; margin-top: 2.5rem; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease-soft), background 0.3s var(--ease);
}
.socials a:hover { border-color: var(--green); transform: translateY(-2px); background: color-mix(in srgb, var(--green) 6%, var(--surface)); }
.socials img { width: 19px; height: 19px; }

@media (max-width: 768px) { .contact__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding-block: clamp(4rem, 9vw, 7rem) 3rem; border-top: 1px solid var(--hairline); }
.footer__mark { position: relative; padding-bottom: 1.5rem; margin-bottom: 3rem; }
.footer__mark .word {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3rem, 14vw, 11rem);
  line-height: 0.9;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.footer__mark .meter {
  position: absolute; left: 0; bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--hairline);
  overflow: hidden;
}
.footer__mark .meter::before {
  content: ""; position: absolute; inset: 0;
  background: var(--green);
  box-shadow: 0 0 10px rgba(61,220,110,0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
}
.footer__mark.in .meter::before { transform: scaleX(1); }

.footer__cols { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem 3rem; }
.footer__nap { font-family: var(--mono); font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.8; letter-spacing: 0.02em; }
.footer__nap a:hover { color: var(--green); }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s var(--ease); }
.footer__links a:hover { color: var(--text-primary); }
.footer__social { display: flex; gap: 0.75rem; height: fit-content; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--hairline); border-radius: 999px;
  transition: border-color 0.3s var(--ease);
}
.footer__social a:hover { border-color: var(--green); }
.footer__social img { width: 17px; height: 17px; }
.footer__legal { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.footer__legal p { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.06em; color: var(--text-muted); }

/* ============================================================
   SCROLL ENTRANCES
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 0.07s; }
.reveal[data-d="2"] { transition-delay: 0.14s; }
.reveal[data-d="3"] { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chan__fader::before, .promise .easy::after, .footer__mark .meter::before { transition: none; transform: scaleX(1); }
  .chan.in .chan__fader::before { transform: scaleX(0.62); }
  .cta, .frame__inner img, .nav { transition: none; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS (shared chrome + interior components)
   ============================================================ */

/* --- nav fits six links; collapse to burger earlier --- */
.nav__link { padding-inline: 0.7rem; }
.nav__link::after { left: 0.7rem; right: 0.7rem; }
.nav__link[aria-current="page"] { color: var(--text-primary); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
@media (max-width: 1180px) { .nav__phone { display: none; } }
@media (max-width: 1000px) {
  .nav__links, .nav__phone, .nav__right .cta { display: none; }
  .nav__burger { display: block; }
}
/* extend mobile-menu stagger to six links */
body.menu-open .menu a:nth-child(5) { transition-delay: 0.36s; }
body.menu-open .menu a:nth-child(6) { transition-delay: 0.42s; }

/* --- interior page hero (shorter than the home full-bleed) --- */
.hero--page { min-height: clamp(30rem, 72vh, 46rem); }
.hero--compact { min-height: clamp(22rem, 56vh, 32rem); }
.hero--page .hero__content,
.hero--compact .hero__content { padding-top: 8.5rem; padding-bottom: clamp(3rem, 7vh, 5.5rem); }
.hero--page h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.hero--compact h1 { font-size: clamp(2.25rem, 5vw, 4rem); }

/* generic intro lede */
.lede { color: var(--text-secondary); font-size: clamp(1.0625rem, 1.5vw, 1.3rem); max-width: 52ch; }
.measure { max-width: 62ch; }
.stack-sm > * + * { margin-top: 1.1rem; }

/* --- three-up service cards (home) --- */
.svc3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  border-radius: 1.5rem;
  padding: 0.5rem;
  transition: transform 0.5s var(--ease-soft), border-color 0.4s var(--ease);
  will-change: transform;
}
.svc-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--green) 34%, var(--hairline)); }
.svc-card__media {
  position: relative;
  border-radius: 1.05rem;
  overflow: hidden;
  background: var(--black);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
}
.svc-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__tag {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  background: rgba(8,8,8,0.65); backdrop-filter: blur(6px);
  padding: 0.35rem 0.6rem; border-radius: 999px;
}
.svc-card__body { padding: 1.5rem 1.25rem 1.6rem; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.svc-card__ix { display: flex; align-items: center; gap: 0.8rem; }
.svc-card__ix .ch { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em; color: var(--green); font-variant-numeric: tabular-nums; }
.svc-card__ix .ln { flex: 1; height: 1px; background: var(--hairline); }
.svc-card h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.svc-card p { color: var(--text-secondary); font-size: 0.9375rem; flex: 1; }
.svc-card__go { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--text-primary); }
.svc-card__go svg { width: 16px; height: 16px; stroke: var(--green); stroke-width: 2.2; fill: none; transition: transform 0.4s var(--ease-soft); }
.svc-card:hover .svc-card__go { color: var(--green); }
.svc-card:hover .svc-card__go svg { transform: translateX(4px); }
@media (max-width: 880px) { .svc3 { grid-template-columns: 1fr; } }

/* --- photo gallery / range grid --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.frame--sq .frame__inner img { aspect-ratio: 1 / 1; }
.gallery .frame { height: 100%; }

/* --- gear / what-we-carry grid (patchbay motif) --- */
.gearlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.gear { padding: clamp(1.5rem, 3vw, 2.25rem); border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.gear__k { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.gear__k .n { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em; color: var(--green); font-variant-numeric: tabular-nums; }
.gear__k .ln { flex: 1; height: 1px; background: var(--hairline); }
.gear h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 0.6rem; }
.gear p { color: var(--text-secondary); font-size: 0.9375rem; max-width: 44ch; }
@media (max-width: 768px) { .gearlist { grid-template-columns: 1fr; } }

/* --- closing CTA band --- */
.endcta__inner {
  position: relative;
  overflow: hidden;
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  border-radius: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) calc(clamp(2.5rem, 6vw, 5rem) + 3px);
  text-align: center;
}
.endcta__inner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 120%, rgba(61,220,110,0.10), transparent 60%);
  pointer-events: none;
}
.endcta h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1.25rem; max-width: 22ch; margin-inline: auto; position: relative; }
.endcta p { color: var(--text-secondary); max-width: 48ch; margin: 0 auto 2.25rem; position: relative; }
.endcta .hero__actions { justify-content: center; position: relative; }
.endcta__meter { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--hairline); overflow: hidden; }
.endcta__meter::before {
  content: ""; position: absolute; inset: 0;
  background: var(--green); box-shadow: 0 0 10px rgba(61,220,110,0.5);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s var(--ease);
}
.endcta.in .endcta__meter::before { transform: scaleX(1); }

/* --- about: honest two-up of supporting photos --- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.2vw, 1.5rem); margin-top: clamp(2.5rem, 6vw, 4rem); }
@media (max-width: 640px) { .duo { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .svc-card, .svc-card__media img { transition: none; }
  .endcta__meter::before { transition: none; transform: scaleX(1); }
}

