/* ============================================================
   RETRO2FIX — sporty-futuristic HUD theme
   base: blue-black carbon · primary: signal cyan · glow: plasma violet
   amber is reserved for "fault" semantics in the diagnostic readout
   ============================================================ */

:root {
  --void: #05070d;
  --panel: #0a101c;
  --panel-2: #0d1524;
  --line: #1b2740;
  --line-soft: #131e33;
  --ink: #e9f1ff;
  --body-c: #a9b7d0;
  --dim: #6b7a95;
  --cyan: #33e5ff;
  --cyan-deep: #0fb8d4;
  --violet: #a05cff;
  --amber: #ffb020;
  --on-cyan: #041018;

  --font-d: "Chakra Petch", sans-serif;
  --font-b: "Saira", sans-serif;
  --font-m: "Share Tech Mono", monospace;

  --wrap: 1180px;
  --ch: 14px; /* chamfer size */

  --scrollbar-thumb: #2a5d78;
  --scrollbar-track: #060910;
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  color-scheme: dark;
  background: var(--void);
  scroll-behavior: smooth;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}
@supports not (scrollbar-color: auto) {
  html::-webkit-scrollbar { width: 12px; height: 12px; }
  html::-webkit-scrollbar-track { background: var(--scrollbar-track); }
  html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan-deep), var(--violet));
    border: 2px solid var(--scrollbar-track);
  }
  html::-webkit-scrollbar-thumb:hover { background: var(--cyan-deep); }
}
body {
  background: transparent;
  color: var(--body-c);
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* ambient aurora — fixed color field the whole page scrolls over */
body::before {
  content: "";
  position: fixed;
  inset: -8%;
  z-index: -1;
  background:
    radial-gradient(46% 38% at 84% 4%, rgba(160, 92, 255, 0.17), transparent 64%),
    radial-gradient(40% 34% at 4% 30%, rgba(51, 229, 255, 0.11), transparent 62%),
    radial-gradient(52% 44% at 70% 74%, rgba(160, 92, 255, 0.09), transparent 64%),
    radial-gradient(44% 40% at 12% 96%, rgba(51, 229, 255, 0.08), transparent 62%),
    var(--void);
}
@media (prefers-reduced-motion: no-preference) {
  body::before { animation: aurora 46s ease-in-out infinite alternate; }
}
@keyframes aurora {
  to { transform: translate3d(1.5%, -2%, 0) scale(1.06); }
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--cyan); text-decoration: none; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
::selection { background: var(--cyan); color: var(--on-cyan); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
section { scroll-margin-top: 96px; }

h1, h2, h3 { font-family: var(--font-d); color: var(--ink); text-wrap: balance; }
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.eyebrow {
  font-family: var(--font-m);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.sec { padding: 148px 0; position: relative; }
.sec-alt {
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.72) 0%, rgba(5, 7, 13, 0.2) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.sec-lead { margin-top: 16px; font-size: 1.05rem; }
.hl-cyan { color: var(--cyan); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hl-cyan {
    background: linear-gradient(94deg, #8bf3ff 0%, var(--cyan) 55%, #b47dff 118%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 24px rgba(80, 190, 255, 0.35));
  }
}

/* ---------- buttons: true chamfered corners ---------- */
.btn {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 15px 30px;
  clip-path: polygon(var(--ch) 0, 100% 0, 100% calc(100% - var(--ch)), calc(100% - var(--ch)) 100%, 0 100%, 0 var(--ch));
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-18deg) translateX(-160%);
}
@media (prefers-reduced-motion: no-preference) {
  .btn-solid::after { transition: transform 0.55s ease; }
  .btn-solid:hover::after { transform: skewX(-18deg) translateX(440%); }
}
.btn-solid {
  background: var(--cyan);
  color: var(--on-cyan);
}
.btn-solid:hover { background: #7df0ff; box-shadow: 0 6px 30px rgba(51, 229, 255, 0.35); }
.btn-ghost {
  background: rgba(51, 229, 255, 0.07);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(51, 229, 255, 0.45);
}
.btn-ghost:hover { background: rgba(51, 229, 255, 0.16); }

/* ---------- topbar ---------- */
.topbar {
  background: #03050a;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--dim);
}
.topbar a { color: var(--dim); }
.topbar a:hover { color: var(--cyan); }
.topbar-in {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 8px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 13, 0.78);
  border-bottom: 1px solid var(--line-soft);
}
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  /* long wash — spans well past the bar so most of the nav stays lit */
  width: 160%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(51, 229, 255, 0.12) 12%,
    rgba(51, 229, 255, 0.55) 28%,
    rgba(51, 229, 255, 0.85) 40%,
    rgba(160, 92, 255, 0.9) 50%,
    rgba(51, 229, 255, 0.85) 60%,
    rgba(160, 92, 255, 0.55) 72%,
    rgba(160, 92, 255, 0.12) 88%,
    transparent 100%
  );
  pointer-events: none;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  .nav::after { animation: nav-line 10s linear infinite; }
}
@keyframes nav-line {
  /* off-left → off-right; restart happens while fully off-screen */
  from { transform: translateX(-100%); }
  to { transform: translateX(62.5%); } /* 100vw-equivalent: parent/self = 100/160 */
}
@supports (backdrop-filter: blur(4px)) {
  .nav { background: rgba(5, 7, 13, 0.62); backdrop-filter: blur(14px) saturate(1.3); }
}
.nav-in {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { filter: drop-shadow(0 0 8px rgba(160, 92, 255, 0.5)); }
.brand-word {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.brand-word em { color: var(--cyan); font-style: italic; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-d);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--body-c);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover { color: var(--cyan); border-color: var(--cyan); }
.nav-cta { padding: 12px 22px; font-size: 0.85rem; }
.nav-burger { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-bg {
  position: absolute;
  inset: -6%;
  background: url("../images/hero-bg.webp") center 30% / cover no-repeat;
  opacity: 0.58;
  transform-origin: 55% 40%;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg { animation: ken-burns 32s ease-in-out infinite alternate; }
}
@keyframes ken-burns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-2.5%, -1.5%, 0); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.94) 0%, rgba(5, 7, 13, 0.62) 46%, rgba(5, 7, 13, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.55) 0%, rgba(5, 7, 13, 0.1) 40%, var(--void) 98%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(214, 249, 255, 0.026) 0 1px, transparent 1px 3px),
    linear-gradient(rgba(51, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 229, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, #000 20%, transparent 75%);
}
.hero-in {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 88px;
}
.hero-eb { text-shadow: 0 0 18px rgba(51, 229, 255, 0.55); }
.hero-h1 {
  display: grid;
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hl { display: block; }
.hl-1 { font-size: 0.42em; color: var(--amber); letter-spacing: 0.24em; margin-bottom: 10px; }
.hero-sub { max-width: 480px; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin-top: 30px;
  font-family: var(--font-m);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--dim);
}
.hero-chips li::before { content: "▸ "; color: var(--violet); }

/* headline load-in */
@media (prefers-reduced-motion: no-preference) {
  .hl, .hero-eb, .hero-sub, .hero-ctas, .hero-chips {
    animation: slide-in 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
  }
  .hero-eb { animation-delay: 0.04s; }
  .hl-1 { animation-delay: 0.1s; }
  .hl-2 { animation-delay: 0.17s; }
  .hl-3 { animation-delay: 0.24s; }
  .hero-sub { animation-delay: 0.34s; }
  .hero-ctas { animation-delay: 0.42s; }
  .hero-chips { animation-delay: 0.5s; }
  .diag { animation: diag-in 0.7s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) backwards; }
}
@keyframes slide-in {
  from { opacity: 0; transform: translateX(-36px); }
}
@keyframes diag-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
}

/* ---------- diagnostic panel (signature) ---------- */
.diag {
  position: relative;
  background: rgba(8, 13, 24, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(51, 229, 255, 0.06);
}
@supports (backdrop-filter: blur(4px)) {
  .diag { backdrop-filter: blur(8px); }
}
.diag-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(51, 229, 255, 0.09), rgba(160, 92, 255, 0.09));
  border-bottom: 1px solid var(--line);
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--cyan);
}
.diag-id { margin-left: auto; color: var(--dim); }
.diag-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
}
@media (prefers-reduced-motion: no-preference) {
  .diag-dot { animation: blink 1.6s steps(2, start) infinite; }
}
@keyframes blink { 50% { opacity: 0.25; } }

.diag-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
  background: #05080f;
}
.diag-stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition: opacity 0.35s ease;
}
.diag-stage img.swap { opacity: 0; }

.diag-scan {
  position: absolute;
  left: 0; right: 0;
  height: 34%;
  top: -40%;
  background: linear-gradient(180deg, transparent 0%, rgba(51, 229, 255, 0.14) 78%, rgba(51, 229, 255, 0.85) 99%, #d6f9ff 100%);
  mix-blend-mode: screen;
}
@media (prefers-reduced-motion: no-preference) {
  .diag-scan { animation: scan 3.4s linear infinite; }
}
@keyframes scan {
  0% { transform: translateY(0); }
  72% { transform: translateY(430%); }
  100% { transform: translateY(430%); }
}

.diag-ping {
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
}
.diag-ping::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(51, 229, 255, 0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .diag-ping::after { animation: ping 2.2s ease-out infinite; }
}
@keyframes ping {
  0% { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}
.p-1 { top: 30%; right: 22%; }
.p-2 { bottom: 26%; left: 18%; border-color: var(--amber); }
.p-2::after { border-color: rgba(255, 176, 32, 0.5); animation-delay: 0.9s; }

.corner { position: absolute; width: 18px; height: 18px; }
.c-tl { top: 10px; left: 10px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.c-tr { top: 10px; right: 10px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.c-bl { bottom: 10px; left: 10px; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.c-br { bottom: 10px; right: 10px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }

.diag-log {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-m);
  font-size: 0.8rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: #9fd8e8;
  min-height: 148px;
}
.dl-fault { color: var(--amber); }
.dl-ok { color: var(--cyan); }
.dl-cursor::after {
  content: "▊";
  margin-left: 2px;
  color: var(--cyan);
}
@media (prefers-reduced-motion: no-preference) {
  .dl-cursor::after { animation: blink 0.9s steps(2, start) infinite; }
}

/* ---------- stat strip ---------- */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(8, 13, 24, 0.85);
  margin-bottom: -1px;
}
.stat {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-k {
  display: block;
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-bottom: 4px;
}
.stat-v {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--ink);
}
.stat-v em { font-size: 0.85rem; font-weight: 500; color: var(--cyan); margin-left: 4px; }

/* ---------- corner-tick card device ---------- */
.tick {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
}
.tick::before, .tick::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  transition: border-color 0.2s ease;
  pointer-events: none;
}
.tick::before { top: -1px; left: -1px; border-top: 2px solid var(--cyan-deep); border-left: 2px solid var(--cyan-deep); }
.tick::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--cyan-deep); border-right: 2px solid var(--cyan-deep); }

/* ---------- console grid ---------- */
#consoles::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, background-color 0.35s ease;
  background-color: transparent;
  mix-blend-mode: soft-light;
}
#consoles > .wrap { position: relative; z-index: 1; }
#consoles:has([data-plat="ps"]:hover)::before,
#consoles:has([data-plat="ps"]:focus-visible)::before {
  opacity: 0.42;
  background-color: #4d9fff;
}
#consoles:has([data-plat="xb"]:hover)::before,
#consoles:has([data-plat="xb"]:focus-visible)::before {
  opacity: 0.42;
  background-color: #45d95c;
}
#consoles:has([data-plat="ns"]:hover)::before,
#consoles:has([data-plat="ns"]:focus-visible)::before {
  opacity: 0.42;
  background-color: #ff5560;
}
.cgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ccard {
  /* platform-true accent: PlayStation blue / Xbox green / Nintendo red */
  --plat: var(--cyan);
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
[data-plat="ps"] { --plat: #4d9fff; }
[data-plat="xb"] { --plat: #45d95c; }
[data-plat="ns"] { --plat: #ff5560; }
.ccard::before, .ccard::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 16px; height: 16px;
  pointer-events: none;
  transition: width 0.2s ease, height 0.2s ease;
}
.ccard::before { top: -1px; left: -1px; border-top: 2px solid var(--plat); border-left: 2px solid var(--plat); }
.ccard::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--plat); border-right: 2px solid var(--plat); }
.ccard:hover {
  transform: translateY(-5px);
  border-color: var(--plat);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
@supports (color: color-mix(in srgb, red 50%, transparent)) {
  .ccard:hover {
    border-color: color-mix(in srgb, var(--plat) 60%, transparent);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 36px color-mix(in srgb, var(--plat) 16%, transparent);
  }
}
.ccard:hover::before, .ccard:hover::after { width: 30px; height: 30px; }
.ccard img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.ccard:hover img { transform: scale(1.045); }
.ccard-body { padding: 18px 20px 20px; border-top: 1px solid var(--line-soft); }
.ccard-plat {
  font-family: var(--font-m);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  color: var(--plat);
  margin-bottom: 4px;
}
.ccard h3 {
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ccard-tags {
  font-family: var(--font-m);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 14px;
}
.ccard-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.ccard-go { color: var(--plat); font-size: 0.74rem; opacity: 0; transform: translateX(-6px); transition: opacity 0.2s ease, transform 0.2s ease; }
.ccard:hover .ccard-go { opacity: 1; transform: none; }

.custom {
  margin-top: 26px;
  padding: 30px 34px;
  border: 1px dashed var(--line);
  background: rgba(160, 92, 255, 0.04);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 34px;
  align-items: center;
}
.custom-t {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: 0.06em;
}
.custom p:not(.custom-t) { max-width: 52ch; }

/* ---------- pricing section ---------- */
#pricing.sec-alt {
  background: var(--panel);
  overflow: hidden;
}
#pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(51, 229, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 229, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 15%, transparent 78%);
  opacity: 0.9;
}
#pricing > .wrap { position: relative; z-index: 1; }

/* ---------- pricing tabs ---------- */
.tablist {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.tab {
  flex-shrink: 0;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  background: transparent;
  border: 1px solid var(--line);
  padding: 12px 22px;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] {
  color: var(--on-cyan);
  background: var(--cyan);
  border-color: var(--cyan);
}
.panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px 30px 30px;
  margin-top: 14px;
}
.panel-meta {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--violet);
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
}
.menu { list-style: none; }
.menu li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 1rem;
}
.menu li:last-child { border-bottom: 0; }
.menu li span { color: var(--body-c); }
.menu li span i { color: var(--dim); font-style: normal; font-size: 0.85em; }
.menu li::after {
  content: "";
  order: 2;
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.menu li span { order: 1; }
.menu li b {
  order: 3;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
}
.notes {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--dim);
}
.notes li::before { content: "▸ "; color: var(--cyan-deep); }

/* ---------- process ---------- */
.proc {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 26px;
  align-items: start;
}
.steps { list-style: none; counter-reset: step; display: grid; gap: 14px; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 2px 20px;
  align-items: start;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px 26px;
}
.step-n {
  grid-row: 1 / span 2;
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--cyan);
  padding-top: 3px;
}
.step h3 {
  grid-column: 2;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.step p { grid-column: 2; font-size: 0.98rem; max-width: 62ch; }
.step:last-child .step-n { color: var(--cyan); -webkit-text-stroke: 0; text-shadow: 0 0 22px rgba(51, 229, 255, 0.5); }

.local {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(160, 92, 255, 0.13), transparent 62%),
    linear-gradient(160deg, var(--panel-2), var(--panel));
  padding: 26px 26px 24px;
}
.local::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 18px; height: 18px;
  border-top: 2px solid var(--violet);
  border-left: 2px solid var(--violet);
}
.local-t {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.local-meta {
  font-family: var(--font-m);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-top: 14px;
}
.local-cities {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.9;
  color: var(--dim);
}

/* ---------- guarantees / expect ---------- */
#expect.sec-alt {
  background:
    linear-gradient(135deg, rgba(160, 92, 255, 0.07) 0%, transparent 42%),
    linear-gradient(315deg, rgba(51, 229, 255, 0.05) 0%, transparent 40%),
    repeating-linear-gradient(
      -28deg,
      transparent 0 11px,
      rgba(160, 92, 255, 0.035) 11px 12px
    ),
    var(--panel-2);
  border-top: 1px solid rgba(160, 92, 255, 0.22);
  border-bottom: 1px solid rgba(51, 229, 255, 0.16);
  overflow: hidden;
}
#expect::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 8% 100%, rgba(160, 92, 255, 0.12), transparent 70%),
    radial-gradient(ellipse 50% 55% at 96% 0%, rgba(51, 229, 255, 0.08), transparent 68%);
}
#expect > .wrap { position: relative; z-index: 1; }

.ggrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ggrid-3 { grid-template-columns: repeat(3, 1fr); }
.gcard {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px 26px 28px;
}
.gcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.gcard h3 {
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.gcard p { font-size: 0.95rem; }

/* ---------- bench ---------- */
.bench-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bench-media { position: relative; }
.bench-main {
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.bench-macro {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 46%;
  border: 1px solid rgba(51, 229, 255, 0.4);
  background: var(--panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.bench-macro figcaption {
  font-family: var(--font-m);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  padding: 8px 10px;
}
.bench-copy .sec-head { margin-bottom: 28px; }
.bench-list { list-style: none; display: grid; gap: 14px; margin-bottom: 30px; }
.bench-list li { padding-left: 22px; position: relative; font-size: 1rem; }
.bench-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 9px; height: 9px;
  background: var(--cyan);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.bench-list b { color: var(--ink); font-weight: 600; }

.preflight {
  border: 1px solid var(--line);
  background: #060a12;
  padding: 20px 24px 22px;
  font-family: var(--font-m);
}
.preflight-t {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--violet);
  margin-bottom: 12px;
}
.preflight ul { list-style: none; display: grid; gap: 7px; font-size: 0.8rem; letter-spacing: 0.04em; color: #9fb0cc; }
.preflight .ok { color: var(--cyan); }
.preflight .warn { color: var(--amber); }

/* ---------- faq ---------- */
#faq.sec-alt {
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.55) 0%, transparent 28%, transparent 72%, rgba(5, 7, 13, 0.55) 100%),
    repeating-linear-gradient(
      0deg,
      transparent 0 3px,
      rgba(214, 249, 255, 0.018) 3px 4px
    ),
    var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(51, 229, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 229, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: 0.7;
}
#faq::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(51, 229, 255, 0.2) 18%,
    rgba(160, 92, 255, 0.18) 50%,
    rgba(51, 229, 255, 0.2) 82%,
    transparent 100%
  );
  opacity: 0.55;
}
#faq > .wrap { position: relative; z-index: 1; }

.faq-grid {
  columns: 2;
  column-gap: 20px;
}
.faq-grid details {
  break-inside: avoid;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.faq-grid summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  transition: color 0.15s ease;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  font-family: var(--font-m);
  color: var(--cyan);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.faq-grid details[open] {
  border-color: rgba(51, 229, 255, 0.32);
  background: linear-gradient(180deg, rgba(51, 229, 255, 0.05), transparent 55%), var(--panel);
}
.faq-grid details[open] summary { color: var(--cyan); }
.faq-grid details[open] summary::after { content: "–"; }
.faq-grid details p {
  padding: 0 22px 20px;
  font-size: 0.95rem;
}

/* ---------- contact ---------- */
#contact {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(120, 60, 200, 0.12), transparent 55%),
    linear-gradient(180deg, var(--panel) 0%, var(--void) 100%);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(160, 92, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 35%, rgba(88, 42, 150, 0.16), transparent 26%);
}
#contact::after {
  content: "";
  position: absolute;
  inset: 24px;
  pointer-events: none;
  border: 1px solid rgba(160, 92, 255, 0.12);
  border-radius: 2px;
  mask-image: linear-gradient(180deg, #000 0%, #000 12%, transparent 35%, transparent 65%, #000 88%, #000 100%);
  opacity: 0.9;
}
#contact > .wrap { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 28px 28px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 16px; height: 16px;
  border-top: 2px solid var(--cyan-deep);
  border-left: 2px solid var(--cyan-deep);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 229, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(51, 229, 255, 0.09);
}
.contact-k {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--dim);
  margin-bottom: 10px;
}
.contact-v {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}
.contact-card:hover .contact-v { color: var(--cyan); }
.contact-s { font-size: 0.9rem; color: var(--dim); }
.contact-area {
  margin-top: 30px;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 2;
  color: var(--dim);
  max-width: 74ch;
}

/* ---------- final cta ---------- */
.cta {
  position: relative;
  border-top: 1px solid var(--line-soft);
  background: url("../images/cta-bg.webp") center / cover no-repeat, var(--void);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(214, 249, 255, 0.02) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, rgba(5, 7, 13, 0.85), rgba(5, 7, 13, 0.55) 55%, rgba(5, 7, 13, 0.92));
}
.cta-in {
  position: relative;
  text-align: center;
  padding-block: 140px;
}
.cta h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); margin-bottom: 12px; }
.cta p {
  font-family: var(--font-m);
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--body-c);
  margin-bottom: 30px;
}
.cta .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
.foot { background: #03050a; border-top: 1px solid var(--line-soft); }
.foot-in {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
  gap: 34px;
  padding-block: 60px 40px;
}
.foot-brand p { margin-top: 16px; font-size: 0.92rem; max-width: 34ch; }
.foot-t {
  font-family: var(--font-m);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--dim);
  margin-bottom: 14px;
}
.foot-col { display: grid; align-content: start; gap: 9px; }
.foot-col a { color: var(--body-c); font-size: 0.94rem; transition: color 0.15s ease; }
.foot-col a:hover { color: var(--cyan); }
.foot-p { font-size: 0.94rem; color: var(--body-c); }
.foot-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 18px 26px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-m);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--dim);
}
.foot-base a {
  color: inherit;
  text-decoration: none;
}
.foot-base a:hover { color: var(--cyan); }

/* ---------- interior page head ---------- */
.page-head {
  position: relative;
  padding: 96px 0 56px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.55), rgba(5, 7, 13, 0) 92%);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(51, 229, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 229, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 100% at 28% 0%, #000 12%, transparent 78%);
  pointer-events: none;
}
.page-head .wrap { position: relative; }
.ph-bar {
  width: 58px;
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.page-head h1 {
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.06;
}
.ph-lead { max-width: 680px; margin-top: 16px; font-size: 1.06rem; }
.page-head .hero-chips { margin-top: 24px; }

/* ---------- repair menu blocks (repairs page) ---------- */
.rb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rb {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 24px 28px 26px;
}
.rb::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 18px; height: 18px;
  border-top: 2px solid var(--plat);
  border-left: 2px solid var(--plat);
}
.rb-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.rb-head img { width: 76px; height: 76px; object-fit: cover; object-position: center 68%; border: 1px solid var(--line); flex-shrink: 0; }
.rb-plat { font-family: var(--font-m); font-size: 0.66rem; letter-spacing: 0.24em; color: var(--plat); margin-bottom: 3px; }
.rb-head h2 { font-style: italic; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.02em; }
.rb-fee {
  margin-left: auto;
  font-family: var(--font-m);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--on-cyan);
  background: var(--cyan);
  padding: 6px 10px;
  white-space: nowrap;
}
.rb .menu { margin-top: 6px; }
.rb-order {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rb-order a { color: var(--cyan); }
.rb-order a:hover { color: #7df0ff; }
.rb-order-k { color: var(--dim); font-family: var(--font-m); letter-spacing: 0.18em; font-size: 0.68rem; }

/* ---------- about: story + photo stack ---------- */
.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.story-copy p + p { margin-top: 16px; }
.story-lead { color: var(--ink); font-size: 1.16rem; font-weight: 400; }
.stack { display: grid; gap: 20px; }
.stack figure { border: 1px solid var(--line); background: var(--panel); }
.stack img { width: 100%; }
.stack figcaption {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  padding: 10px 12px;
}

/* ---------- service area / hours panel ---------- */
.area {
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(160, 92, 255, 0.12), transparent 62%),
    var(--panel);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.area-1 { grid-template-columns: 1fr; }
.area-t {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.area .local-cities { border-top: 0; padding-top: 0; margin-top: 10px; }
.area .local-meta { margin-top: 10px; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-in { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: 620px; }
  .diag { max-width: 560px; }
  .cgrid { grid-template-columns: repeat(2, 1fr); }
  .ggrid { grid-template-columns: repeat(2, 1fr); }
  .proc { grid-template-columns: 1fr; }
  .local { position: static; }
  .bench-in { grid-template-columns: 1fr; gap: 70px; }
  .bench-macro { right: 0; }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .rb-grid { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 7, 13, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 18px;
  }
  .nav-links a { padding: 13px 2px; border-bottom: 1px solid var(--line-soft); }
  .nav.open .nav-links { display: flex; }
  .nav-burger {
    display: grid;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line);
    padding: 12px 11px;
    cursor: pointer;
  }
  .nav-burger span { width: 20px; height: 2px; background: var(--cyan); transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta { margin-left: auto; padding: 11px 14px; font-size: 0.72rem; }
  .nav-in { gap: 12px; min-height: 64px; }
  .brand-word { font-size: 1.05rem; }
  .topbar-loc { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .sec { padding: 104px 0; }
  .faq-grid { columns: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .custom { grid-template-columns: 1fr; gap: 14px; justify-items: start; }
  .area { grid-template-columns: 1fr; }
  .page-head { padding-top: 56px; }
}
@media (max-width: 560px) {
  .cgrid { grid-template-columns: 1fr; }
  .ggrid { grid-template-columns: 1fr; }
  .hero-in { padding-top: 72px; padding-bottom: 72px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step-n { grid-row: auto; }
  .step h3, .step p { grid-column: auto; }
  .bench-macro { position: static; width: 100%; margin-top: 14px; }
  .foot-in { grid-template-columns: 1fr; }
}
