:root {
  --bg-0: #04070b;
  --bg-1: #09111b;
  --bg-2: #0f1f2d;
  --line: rgba(118, 167, 214, 0.3);
  --text: #f2f8ff;
  --muted: #9aaec3;
  --accent-cyan: #46e0ce;
  --accent-blue: #6ebfff;
  --accent-orange: #ff8a3d;
  --accent-lime: #d8ff65;
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.45);
  --shadow-cyan: 0 0 30px rgba(70, 224, 206, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: var(--bg-0);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

.js-image-expand {
  cursor: zoom-in;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  border: 1px solid var(--accent-cyan);
  border-radius: 10px;
  background: #06101a;
  color: var(--text);
  padding: 0.62rem 0.8rem;
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.js-image-expand:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-lime);
  outline-offset: 3px;
}

.video-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background: #000;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  pointer-events: none;
  filter: brightness(0.5) contrast(1.15) saturate(1.2);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(700px 420px at 8% 5%, rgba(70, 224, 206, 0.2), transparent 65%),
    radial-gradient(860px 560px at 95% 10%, rgba(255, 138, 61, 0.2), transparent 66%),
    linear-gradient(150deg, rgba(3, 6, 10, 0.93) 8%, rgba(4, 10, 16, 0.86) 58%, rgba(2, 5, 10, 0.94) 100%);
}

.glow-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(154, 200, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 200, 255, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: grid-shift 18s linear infinite;
}

.scanline {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.14;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0 1px,
    transparent 1px 4px
  );
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  z-index: 300;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-orange));
  box-shadow: 0 0 18px rgba(70, 224, 206, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 220;
  padding-top: 0.75rem;
}

.header-shell {
  position: relative;
  width: min(var(--maxw), calc(100% - 1.8rem));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(8, 17, 27, 0.9), rgba(5, 10, 16, 0.78)),
    rgba(4, 9, 14, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  padding: 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(70, 224, 206, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle {
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(9, 16, 25, 0.85);
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  padding: 0.52rem 0.7rem;
  display: none;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.55rem 0.72rem;
  border-radius: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(120, 174, 228, 0.12);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  border: 1px solid rgba(255, 138, 61, 0.52);
  color: #ffe0c9;
  background: rgba(255, 138, 61, 0.12);
}

.site-nav .nav-cta.is-active {
  background: rgba(255, 138, 61, 0.18);
}

.section {
  width: min(var(--maxw), calc(100% - 1.8rem));
  margin: 0 auto;
  padding: clamp(2.8rem, 6vw, 6.3rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 760px);
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
  min-height: calc(100svh - 94px);
  padding-top: clamp(2rem, 4.6vw, 4rem);
  padding-bottom: clamp(2.8rem, 5vw, 4.8rem);
  align-content: center;
}

.hero-copy {
  width: 100%;
  margin-inline: auto;
  text-align: center;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid rgba(118, 167, 214, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 280px at 50% 0%, rgba(70, 224, 206, 0.16), transparent 66%),
    rgba(3, 8, 14, 0.34);
  box-shadow: var(--shadow-cyan);
}

.hero-copy h1 {
  margin-inline: auto;
  max-width: 18ch;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-family: "Space Mono", monospace;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 5.2vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

h1 span:first-of-type {
  color: var(--accent-orange);
}

h1 span:last-of-type {
  color: var(--accent-lime);
}

.hero-text {
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.78;
  max-width: 64ch;
}

.hero-pills {
  margin: 1rem auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pills span {
  border: 1px solid rgba(70, 224, 206, 0.36);
  border-radius: 999px;
  background: rgba(6, 18, 28, 0.64);
  color: #d7f7ff;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.36rem 0.66rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.btn {
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.82rem 1.16rem;
  gap: 0.48rem;
  min-height: 44px;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #04121a;
  background: linear-gradient(120deg, var(--accent-cyan), var(--accent-blue));
  box-shadow: 0 9px 24px rgba(74, 175, 255, 0.32);
}

.btn-primary:hover {
  filter: saturate(1.06);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(12, 21, 34, 0.55);
}

.btn-ghost:hover {
  border-color: rgba(70, 224, 206, 0.58);
  box-shadow: 0 10px 24px rgba(70, 224, 206, 0.12);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  line-height: 1;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.download-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.download-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 10, 0.72);
  backdrop-filter: blur(4px);
}

.download-modal__card {
  position: relative;
  width: min(540px, calc(100% - 0.4rem));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1rem, 2.8vw, 1.5rem);
  background:
    radial-gradient(220px 140px at 100% 0%, rgba(255, 138, 61, 0.18), transparent 72%),
    radial-gradient(220px 140px at 0% 100%, rgba(70, 224, 206, 0.18), transparent 72%),
    rgba(5, 10, 16, 0.95);
  box-shadow: var(--shadow-lg), 0 0 42px rgba(70, 224, 206, 0.12);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.24s ease;
}

.download-modal.is-open .download-modal__card {
  transform: translateY(0) scale(1);
}

.download-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.34rem 0.62rem;
  background: rgba(9, 16, 25, 0.84);
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  cursor: pointer;
}

.download-modal__eyebrow {
  margin: 0;
  color: var(--accent-cyan);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-modal h3 {
  margin-top: 0.55rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.52rem);
  line-height: 1.2;
}

.download-modal__text {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.pix-key-btn {
  width: 100%;
  margin-top: 0.95rem;
  border: 1px solid rgba(140, 255, 47, 0.85);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(140, 255, 47, 0.16), rgba(70, 224, 206, 0.08)),
    rgba(140, 255, 47, 0.1);
  color: #e7ffd0;
  padding: 0.78rem 0.75rem;
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.pix-key-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 255, 101, 1);
}

.pix-key-label {
  font-family: "Space Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pix-key-btn strong {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.9rem, 2.4vw, 1.1rem);
  letter-spacing: 0.03em;
  color: #8cff2f;
  text-shadow: 0 0 10px rgba(140, 255, 47, 0.46);
}

.pix-key-btn small {
  color: #c8efac;
  font-size: 0.73rem;
}

.pix-feedback {
  min-height: 1.2rem;
  margin: 0.62rem 0 0;
  font-size: 0.82rem;
  color: #b8d8f7;
  text-align: center;
}

.pix-feedback.is-error {
  color: #ffb19f;
}

.download-modal__cta {
  margin-top: 0.35rem;
  width: 100%;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: grid;
  place-items: center;
  padding: clamp(0.7rem, 2vw, 1.4rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 5, 10, 0.82);
  backdrop-filter: blur(5px);
  cursor: zoom-out;
}

.image-modal__frame {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1500px);
  max-height: 92vh;
  display: grid;
  place-items: center;
}

.image-modal__frame img {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  border: 1px solid rgba(110, 191, 255, 0.38);
  border-radius: 8px;
  background: #02050a;
  box-shadow: var(--shadow-lg);
}

.image-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.38rem 0.66rem;
  background: rgba(4, 9, 14, 0.86);
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  cursor: pointer;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
  display: flex;
  overflow: hidden;
  gap: 1.6rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.signal-track {
  display: flex;
  flex-shrink: 0;
  gap: 1.6rem;
  min-width: max-content;
  animation: track-roll 22s linear infinite;
}

.signal-track span {
  font-family: "Space Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4e5f9;
  white-space: nowrap;
}

.section-head {
  margin-bottom: 1.35rem;
  max-width: 920px;
}

h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 0.97;
  letter-spacing: 0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  background:
    linear-gradient(160deg, rgba(11, 20, 33, 0.86), rgba(7, 14, 22, 0.82));
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 224, 206, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), var(--shadow-cyan);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(420px 170px at 50% 0%, rgba(70, 224, 206, 0.12), transparent 72%);
  transition: opacity 0.22s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.feature-tag {
  margin: 0;
  font-family: "Space Mono", monospace;
  color: var(--accent-lime);
  font-size: 0.75rem;
}

.feature-card h3 {
  margin-top: 0.6rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.2;
}

.feature-card > p:not(.feature-tag) {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.theme-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.theme-preview figure {
  min-width: 0;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: rgba(3, 8, 14, 0.58);
}

.theme-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(110, 191, 255, 0.28);
  border-radius: 8px;
  transition: transform 0.28s ease, filter 0.28s ease, border-color 0.28s ease;
}

.theme-preview figure:hover img,
.theme-preview img:focus-visible {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
  border-color: rgba(70, 224, 206, 0.62);
}

.theme-preview figcaption {
  padding: 0.42rem 0.35rem 0.48rem;
  font-family: "Space Mono", monospace;
  font-size: clamp(0.56rem, 1.2vw, 0.68rem);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 15, 25, 0.9);
  position: relative;
  z-index: 1;
}

.route-preview {
  grid-template-columns: repeat(3, minmax(74px, 1fr));
}

.route-preview img {
  object-position: center center;
}

.safehouse-preview {
  grid-template-columns: repeat(2, minmax(100px, 1fr));
}

.safehouse-preview img {
  object-position: center center;
}

.obd-hud {
  display: grid;
  grid-template-columns: minmax(320px, 1040px);
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: start;
}

.obd-copy {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.obd-copy h2 {
  margin-inline: auto;
  max-width: 20ch;
}

.obd-copy p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 68ch;
  margin-inline: auto;
}

.obd-note {
  margin-top: 0.4rem;
  color: #ffd8b8;
}

.obd-compatibility {
  color: #8cff2f;
  text-shadow: 0 0 8px rgba(140, 255, 47, 0.45);
}

.obd-copy .btn {
  margin-top: 1rem;
}

.pilot-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  width: 100%;
}

.pilot-preview figure {
  min-width: 0;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(3, 8, 14, 0.58);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.pilot-preview figure:hover {
  transform: translateY(-3px);
}

.pilot-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 2535 / 1205;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(70, 224, 206, 0.28);
  border-radius: 8px;
  transition: transform 0.28s ease, filter 0.28s ease, border-color 0.28s ease;
}

.pilot-preview figure:hover img,
.pilot-preview img:focus-visible {
  transform: scale(1.015);
  filter: saturate(1.08) contrast(1.04);
  border-color: rgba(70, 224, 206, 0.62);
}

.pilot-preview figcaption {
  padding: 0.5rem 0.45rem 0.56rem;
  font-family: "Space Mono", monospace;
  font-size: clamp(0.62rem, 1.2vw, 0.74rem);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 15, 25, 0.9);
}

.safehouse-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.flow-step {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 14, 22, 0.84);
  padding: 1rem 0.88rem;
  min-height: 13.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.flow-step::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-lime));
  opacity: 0.42;
}

.flow-step:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 255, 101, 0.4);
  background: rgba(9, 18, 28, 0.9);
}

.flow-step span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(216, 255, 101, 0.55);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ecffbf;
}

.flow-step h3 {
  margin-top: 0.72rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.flow-step p {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.92rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.experience-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(240px 160px at 95% 0%, rgba(110, 191, 255, 0.16), transparent 72%),
    rgba(8, 15, 24, 0.84);
  padding: 1rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.experience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 191, 255, 0.48);
  background:
    radial-gradient(260px 170px at 95% 0%, rgba(110, 191, 255, 0.2), transparent 72%),
    rgba(10, 19, 30, 0.9);
}

.experience-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.25;
}

.experience-card p {
  margin: 0.62rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.access {
  border: 1px solid rgba(134, 177, 220, 0.38);
  border-radius: clamp(18px, 4vw, 30px);
  padding: clamp(1.8rem, 5vw, 3.2rem) clamp(1rem, 3.5vw, 2.4rem);
  background:
    radial-gradient(460px 240px at 100% 5%, rgba(255, 138, 61, 0.22), transparent 70%),
    radial-gradient(420px 240px at 0% 100%, rgba(70, 224, 206, 0.2), transparent 70%),
    rgba(6, 12, 20, 0.9);
  text-align: center;
  box-shadow: var(--shadow-cyan);
}

.access p {
  color: var(--muted);
  max-width: 70ch;
  margin: 0.8rem auto 0;
  line-height: 1.72;
}

.access-actions {
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.community {
  padding-top: 0;
  text-align: center;
}

.community h2 {
  max-width: 760px;
  margin-inline: auto;
}

.community-links {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.community-link {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  min-height: 148px;
  align-content: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(6, 15, 25, 0.82);
  color: var(--text);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.community-link::after {
  content: "↗";
  position: absolute;
  top: 0.82rem;
  right: 0.9rem;
  color: rgba(216, 255, 101, 0.72);
  font-family: "Space Mono", monospace;
  font-size: 0.94rem;
  transform: translate(-3px, 3px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.community-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 61, 0.58);
  background: rgba(10, 24, 38, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26), var(--shadow-cyan);
}

.community-link:hover::after {
  transform: translate(0, 0);
  opacity: 1;
}

.community-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(70, 224, 206, 0.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 138, 61, 0.38), transparent 48%),
    rgba(5, 12, 21, 0.78);
  box-shadow: 0 0 22px rgba(70, 224, 206, 0.12);
  color: #ffffff;
}

.community-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.community-link span {
  font-family: "Space Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.community-link strong {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 2.3vw, 1.35rem);
  line-height: 1.2;
}

.community-link small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  width: min(var(--maxw), calc(100% - 1.8rem));
  margin: 0 auto;
  padding: 0.8rem 0 2.2rem;
  color: #90a4ba;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(118, 167, 214, 0.18);
}

.site-footer p {
  margin: 0.32rem 0;
}

.to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(7, 13, 21, 0.9);
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  padding: 0.58rem 0.65rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.to-top:hover {
  border-color: rgba(70, 224, 206, 0.58);
  background: rgba(10, 24, 38, 0.95);
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes track-roll {
  to {
    transform: translateX(calc(-100% - 1.6rem));
  }
}

@keyframes grid-shift {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero,
  .obd-hud {
    grid-template-columns: 1fr;
  }

  .safehouse-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    padding-inline: 0.54rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    top: calc(100% + 0.55rem);
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(5, 10, 16, 0.94);
    backdrop-filter: blur(12px);
    padding: 0.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.12rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.22s ease, opacity 0.22s ease;
  }

  .site-nav a {
    width: 100%;
    padding: 0.72rem 0.75rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    transform: none;
  }

  .site-nav.is-open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }

  .feature-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .section,
  .header-shell,
  .site-footer {
    width: calc(100% - 1.1rem);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    max-width: 42vw;
  }

  .hero-copy {
    padding: 1rem 0.8rem;
    border-radius: 18px;
  }

  .hero-pills {
    justify-content: stretch;
  }

  .hero-pills span {
    flex: 1 1 130px;
    text-align: center;
  }

  .safehouse-flow {
    grid-template-columns: 1fr;
  }

  .community-links {
    grid-template-columns: 1fr;
  }

  .pilot-preview {
    grid-template-columns: 1fr;
  }

  .theme-preview,
  .route-preview {
    gap: 0.4rem;
  }

  .theme-preview figcaption {
    font-size: 0.54rem;
    padding-inline: 0.22rem;
  }

  .flow-step {
    min-height: 0;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .access-actions {
    width: 100%;
  }

  .site-footer {
    display: block;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
