/* ============================================================
   EMERALD ANTI CHEAT: "Obsidian Guardian"
   Cinematic technical-luxury identity
   ============================================================ */

/* ----------------------------------------------------------
   1. TOKENS
   ---------------------------------------------------------- */
:root {
  /* surfaces */
  --bg: #060c09;
  --bg-deep: #030705;
  --bg-deep-solid: #040806;
  --panel: #0a110d;
  --panel-2: #0c1611;
  --panel-3: #101c16;

  /* hairlines */
  --line: rgba(122, 205, 168, 0.1);
  --line-soft: rgba(122, 205, 168, 0.055);
  --line-strong: rgba(122, 205, 168, 0.22);

  /* ink */
  --ink: #eef6f0;
  --ink-2: #c2d2c9;
  --ink-dim: #8da093;
  --ink-faint: #5e7067;
  --ink-ghost: #3a4a42;

  /* brand */
  --jade: #21db8c;
  --jade-bright: #66ffbe;
  --jade-deep: #0a6f48;
  --jade-glow: rgba(33, 219, 140, 0.5);

  /* premium gold accent (from logo) */
  --gold: #e7c074;
  --gold-bright: #f6d99a;
  --gold-deep: #b78a3c;

  --discord: #8b9bff;

  /* type */
  --font-display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* geometry */
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 80px);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: "ss01", "cv05";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* base ambient lighting: restrained, not neon */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(16, 120, 78, 0.16), transparent 60%),
    radial-gradient(900px 600px at 6% 4%, rgba(12, 92, 60, 0.12), transparent 55%),
    radial-gradient(100% 60% at 50% 120%, rgba(8, 60, 40, 0.18), transparent 70%);
}

/* film grain: cinematic texture */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

body.menu-open { overflow: hidden; }

::selection { color: #04100b; background: var(--jade-bright); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
svg { display: block; }

/* custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-deep-solid); }
::-webkit-scrollbar-thumb {
  background: #1a2a22;
  border: 3px solid var(--bg-deep-solid);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover { background: #244236; }

/* ----------------------------------------------------------
   2. ACCESSIBILITY
   ---------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #04100b;
  background: var(--jade-bright);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--jade-bright);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ----------------------------------------------------------
   3. SCROLL PROGRESS + CURSOR SPOTLIGHT (injected by JS)
   ---------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--jade) 55%, var(--jade-bright));
  box-shadow: 0 0 14px var(--jade-glow);
  will-change: transform;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 460px;
  height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(33, 219, 140, 0.07), transparent 62%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  will-change: transform;
}
.cursor-glow.is-active { opacity: 1; }

/* ----------------------------------------------------------
   4. LAYOUT PRIMITIVES
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding: clamp(80px, 11vw, 150px) 0;
}

/* hairline frame with crop / registration marks (signature device) */
.framed {
  position: relative;
}
.framed::before {
  content: "";
  position: absolute;
  inset: var(--crop-inset, -1px);
  pointer-events: none;
  z-index: 4;
  --c: var(--crop-color, var(--line-strong));
  --s: var(--crop-size, 16px);
  --t: 1px;
  background:
    linear-gradient(var(--c), var(--c)) 0 0 / var(--s) var(--t) no-repeat,
    linear-gradient(var(--c), var(--c)) 0 0 / var(--t) var(--s) no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 0 / var(--s) var(--t) no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 0 / var(--t) var(--s) no-repeat,
    linear-gradient(var(--c), var(--c)) 0 100% / var(--s) var(--t) no-repeat,
    linear-gradient(var(--c), var(--c)) 0 100% / var(--t) var(--s) no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 100% / var(--s) var(--t) no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 100% / var(--t) var(--s) no-repeat;
  transition: opacity 300ms var(--ease);
}

/* technical kicker / eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--jade-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--jade));
}
.section-heading.centered .eyebrow { justify-content: center; }

/* generic section heading */
.section-heading { max-width: 620px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p,
.fivem-copy > p,
.support-header > p {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.75;
}

/* ----------------------------------------------------------
   5. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, p { margin-top: 0; }

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

h1 {
  margin-bottom: 30px;
  font-size: clamp(46px, 6.1vw, 86px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
h1 > span { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 58px);
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

/* gem-cut highlight for emphasized words */
h1 em, h2 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(180deg, var(--jade-bright), var(--jade) 55%, var(--jade-deep));
  -webkit-background-clip: text;
  background-clip: text;
}

/* ----------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------- */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 250ms var(--ease), border-color 250ms var(--ease),
    background 250ms var(--ease), box-shadow 250ms var(--ease), color 250ms var(--ease);
}
.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 250ms var(--ease);
}
.button .discord-icon,
.nav-discord svg { fill: currentColor; stroke: none; }

.button-primary {
  color: #03120b;
  background: linear-gradient(135deg, var(--jade-bright), var(--jade) 70%);
  box-shadow: 0 8px 30px rgba(31, 220, 140, 0.18), inset 0 1px rgba(255, 255, 255, 0.4);
}
.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 700ms var(--ease);
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(31, 220, 140, 0.32), inset 0 1px rgba(255, 255, 255, 0.4);
}
.button-primary:hover::after { transform: translateX(130%); }
.button-primary:hover svg { transform: translateX(3px); }

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.018);
  border-color: var(--line-strong);
}
.button-secondary:hover {
  transform: translateY(-2px);
  background: rgba(33, 219, 140, 0.06);
  border-color: rgba(95, 240, 176, 0.45);
}

.button-small { min-height: 44px; padding: 0 18px; font-size: 11px; }

.button-light {
  color: #042115;
  background: linear-gradient(180deg, #ffffff, #e6f6ec);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.button-light:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.36); }

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(4, 33, 21, 0.2);
}
.button-outline-light:hover { transform: translateY(-2px); border-color: #fff; background: rgba(4, 33, 21, 0.4); }

/* ----------------------------------------------------------
   7. HEADER / NAV
   ---------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 300ms var(--ease), border-color 300ms var(--ease),
    backdrop-filter 300ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(5, 10, 8, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(21, 216, 135, 0.28));
  transition: transform 400ms var(--ease);
}
.brand:hover img { transform: rotate(-6deg) scale(1.06); }
.brand strong { color: var(--jade-bright); font-weight: 600; }

.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav > a:not(.button) {
  position: relative;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 4px 0;
  transition: color 200ms var(--ease);
}
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--jade));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}
.primary-nav > a:not(.button):hover,
.primary-nav > a.is-active:not(.button) { color: var(--ink); }
.primary-nav > a:not(.button):focus-visible { color: var(--ink); }
.primary-nav > a:not(.button):hover::after,
.primary-nav > a.is-active:not(.button)::after { transform: scaleX(1); }
.primary-nav > a:not(.button):focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

/* ----------------------------------------------------------
   8. HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: 60px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 30%, var(--line-strong) 70%, transparent);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-one {
  top: -320px;
  right: -180px;
  background: rgba(14, 152, 94, 0.14);
}

.hero-side-mark {
  position: absolute;
  top: 50%;
  left: 14px;
  right: auto;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  white-space: nowrap;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero-copy { position: relative; }

/* hero coordinate ribbon above title */
.hero-copy .eyebrow {
  padding: 8px 14px 8px 0;
}

.hero-lead {
  max-width: 540px;
  margin: 0 0 38px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.7;
}

.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.support-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 26px 0 0;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.status-dot {
  position: relative;
  flex: none;
  width: 8px;
  height: 8px;
  background: var(--jade-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--jade);
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(95, 240, 176, 0.4);
  border-radius: 50%;
  animation: pulse-ring 2.6s var(--ease) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* emblem stage: the guardian core */
.hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  padding-left: clamp(20px, 4vw, 56px);
  border-left: 1px solid var(--line);
  place-items: center;
}
.emblem-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 480px;
  place-items: center;
}
.emblem-stage::before {
  /* concentric guardian rings */
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  max-width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle, transparent 58%, rgba(33, 219, 140, 0.04) 59%, transparent 62%),
    radial-gradient(circle, transparent 74%, rgba(231, 192, 116, 0.05) 75%, transparent 78%);
}
.emblem-stage::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  max-width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(56, 224, 152, 0.2);
  animation: rotate 48s linear infinite;
}

.hero-logo {
  position: relative;
  z-index: 3;
  width: min(330px, 76%);
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 40px rgba(24, 224, 140, 0.16));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-shield-glow {
  position: absolute;
  width: 260px;
  height: 320px;
  background: rgba(29, 221, 140, 0.16);
  border-radius: 50%;
  filter: blur(90px);
}

.emblem-axis { position: absolute; background: var(--line); }
.emblem-axis-horizontal { inset: auto 0; height: 1px; }
.emblem-axis-vertical { inset: 16px auto; left: 50%; width: 1px; }

.emblem-index {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.emblem-note {
  position: absolute;
  z-index: 4;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.emblem-note strong, .emblem-note small, .emblem-note > span { display: block; }
.emblem-note strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.emblem-note-top { top: 50px; left: 0; }
.emblem-note-top::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 11px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.emblem-note-bottom {
  right: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes rotate { to { transform: rotate(360deg); } }

/* ----------------------------------------------------------
   9. TRUST STRIP / PRINCIPLES
   ---------------------------------------------------------- */
.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  align-items: center;
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.trust-strip > span {
  padding: 26px 28px 26px 0;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.trust-strip div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 26px 28px;
  font-size: 14px;
  border-left: 1px solid var(--line);
  transition: background 300ms var(--ease), color 300ms var(--ease);
}
.trust-strip div:hover { background: rgba(33, 219, 140, 0.03); color: var(--ink); }
.trust-strip b {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ----------------------------------------------------------
   10. FEATURES: editorial dossier grid
   ---------------------------------------------------------- */
.features-section { background: linear-gradient(180deg, var(--bg-deep-solid), var(--bg) 60%); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

/* lead feature: wide panel with shield visual */
.feature-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 40px;
  padding: clamp(36px, 4vw, 60px) clamp(28px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.feature-card-large > .feature-icon {
  position: static;
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 24px;
}
.feature-card-large > div:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  padding-top: 0;
  max-width: 520px;
  align-self: start;
}
.feature-card-large > .card-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}
.feature-card-large h3 { font-size: clamp(26px, 2.6vw, 36px); }
.feature-card-large p { max-width: 460px; font-size: 16px; }

/* secondary features: open columns separated by rules */
.feature-card:not(.feature-card-large) {
  position: relative;
  padding: 40px 30px 44px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: background 360ms var(--ease);
}
.feature-card:not(.feature-card-large):nth-child(3n + 1) { border-left: 1px solid var(--line); }
.feature-card:not(.feature-card-large)::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--jade));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease);
}
.feature-card:not(.feature-card-large):hover { background: rgba(33, 219, 140, 0.025); }
.feature-card:not(.feature-card-large):hover::before { transform: scaleX(1); }

/* ghost numeral */
.feature-number {
  display: block;
  margin-bottom: 14px;
  color: var(--ink-ghost);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  transition: color 360ms var(--ease);
}
.feature-card:hover .feature-number { color: var(--gold); }

.feature-card h3 { font-size: 20px; }
.feature-card p {
  margin-bottom: 0;
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.7;
}

.feature-icon, .support-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  color: var(--jade-bright);
  background:
    linear-gradient(145deg, rgba(33, 219, 140, 0.1), transparent),
    var(--panel-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  place-items: center;
  transition: transform 360ms var(--ease), border-color 360ms var(--ease),
    color 360ms var(--ease);
}
.feature-card:hover .feature-icon {
  transform: translateY(-3px);
  border-color: rgba(95, 240, 176, 0.4);
}
.feature-icon svg, .support-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* shield visual in lead feature */
.card-visual {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
}
.shield-visual span {
  position: absolute;
  border: 1px solid rgba(63, 229, 157, 0.14);
  border-radius: 50%;
}
.shield-visual span:nth-child(1) { width: 240px; height: 240px; }
.shield-visual span:nth-child(2) { width: 170px; height: 170px; border-style: dashed; animation: rotate 38s linear infinite; }
.shield-visual span:nth-child(3) { width: 110px; height: 110px; background: rgba(38, 221, 143, 0.05); }
.shield-visual svg {
  z-index: 2;
  width: 70px;
  height: 70px;
  fill: rgba(45, 229, 150, 0.05);
  stroke: var(--jade-bright);
  stroke-width: 1;
  filter: drop-shadow(0 0 16px rgba(65, 238, 164, 0.34));
}

/* ----------------------------------------------------------
   11. PRODUCT PREVIEW
   ---------------------------------------------------------- */
.preview-section { overflow: hidden; background: var(--bg-deep-solid); }
.preview-ambient {
  position: absolute;
  top: 220px;
  left: 50%;
  width: 900px;
  height: 520px;
  max-width: 90%;
  background: rgba(20, 189, 116, 0.1);
  border-radius: 50%;
  filter: blur(130px);
  transform: translateX(-50%);
}

.product-stage {
  position: relative;
  max-width: 1020px;
  margin: 72px auto 0;
  padding-top: 60px;
}

.desktop-frame {
  position: relative;
  z-index: 3;
  width: min(780px, calc(100% - 80px));
  margin-inline: auto;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.frame-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 52px;
  padding: 0 18px;
  align-items: center;
  background: linear-gradient(180deg, var(--panel-3), var(--panel));
  border-bottom: 1px solid var(--line);
}
.window-controls { display: flex; gap: 8px; }
.window-controls span { width: 9px; height: 9px; background: #2a3a32; border-radius: 50%; }
.window-controls span:first-child { background: var(--jade); }

.frame-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.frame-title img { width: 18px; height: 18px; object-fit: contain; }

.frame-state {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.frame-state span {
  width: 6px;
  height: 6px;
  background: var(--jade-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--jade);
}

.frame-content {
  display: grid;
  min-height: 440px;
  padding: 44px;
  background:
    radial-gradient(circle at 50% 40%, rgba(23, 133, 88, 0.14), transparent 60%),
    var(--bg-deep-solid);
  place-items: center;
}
.frame-content img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 30px rgba(25, 216, 137, 0.08);
}

.frame-footer {
  display: flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.frame-footer span { display: flex; align-items: center; gap: 7px; }
.frame-footer i { width: 6px; height: 6px; background: var(--jade-bright); border-radius: 50%; }

/* connector callouts */
.preview-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--ink-2);
  background: rgba(8, 16, 12, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.preview-label span {
  width: 6px;
  height: 6px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--jade);
}
.label-one { top: 140px; left: 0; }
.label-two { top: 372px; left: 14px; }
.label-three { top: 102px; right: 6px; }
.label-four { top: 404px; right: 0; }
.label-one::after, .label-two::after, .label-three::after, .label-four::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, var(--jade), transparent);
}
.label-one::after, .label-two::after { left: 100%; }
.label-three::after, .label-four::after { right: 100%; transform: rotate(180deg); }

/* ----------------------------------------------------------
   12. FIVEM
   ---------------------------------------------------------- */
.fivem-section {
  background: linear-gradient(180deg, var(--bg), var(--bg-deep-solid));
  border-top: 1px solid var(--line);
}
.fivem-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.fivem-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(26, 213, 135, 0.08), transparent 55%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.fivem-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(107, 226, 172, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 226, 172, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.server-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 116px;
  height: 116px;
  color: var(--jade-bright);
  background: rgba(16, 47, 35, 0.9);
  border: 1px solid rgba(80, 234, 168, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(37, 214, 139, 0.2), inset 0 0 30px rgba(37, 214, 139, 0.1);
  transform: translate(-50%, -50%);
  place-items: center;
}
.server-core svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.core-ring {
  position: absolute;
  inset: -54px;
  border: 1px dashed rgba(56, 224, 152, 0.2);
  border-radius: 50%;
  animation: rotate 34s linear infinite reverse;
}
.core-ring::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 40px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

.network-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--ink-dim);
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.network-node::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 220, 150, 0.28));
}
.network-node span {
  width: 6px;
  height: 6px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--jade);
}
.node-one { top: 92px; left: 40px; }
.node-one::after { top: 50px; left: 57px; transform: rotate(34deg); }
.node-two { top: 128px; right: 30px; }
.node-two::after { top: 43px; right: 70px; transform: rotate(142deg); }
.node-three { right: 48px; bottom: 68px; }
.node-three::after { right: 70px; bottom: 53px; transform: rotate(40deg); }

.fivem-copy h2, .fivem-copy > p { max-width: 620px; }

.check-list {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 15px;
}
.check-list svg {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 4px;
  color: var(--jade-bright);
  background: rgba(44, 223, 147, 0.08);
  border: 1px solid rgba(59, 225, 154, 0.2);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.fivem-support {
  position: relative;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.014);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-dim);
  font-size: 14px !important;
}
.fivem-copy .button-row { margin-top: 28px; }

/* ----------------------------------------------------------
   13. SUPPORT
   ---------------------------------------------------------- */
.support-section { background: var(--bg-deep-solid); }

.support-panel {
  position: relative;
  padding: clamp(32px, 5vw, 64px);
  background:
    radial-gradient(circle at 92% 0%, rgba(45, 222, 148, 0.08), transparent 380px),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  --crop-color: var(--line-strong);
  --crop-size: 22px;
  --crop-inset: 14px;
}

.support-header {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.support-header h2 { margin-bottom: 0; font-size: clamp(32px, 4vw, 48px); }
.support-header > p { margin-bottom: 5px; }

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}
.support-cards article {
  padding: 38px 32px 38px 0;
  border-right: 1px solid var(--line);
  transition: background 320ms var(--ease);
}
.support-cards article:not(:first-child) { padding-left: 32px; }
.support-cards article:last-child { border-right: 0; }
.support-cards article:hover { background: rgba(33, 219, 140, 0.02); }
.support-cards .support-icon { margin-bottom: 26px; }
.support-cards h3 { font-size: 17px; }
.support-cards p { margin-bottom: 0; color: var(--ink-dim); font-size: 14px; line-height: 1.7; }

.support-action {
  display: flex;
  margin-top: 0;
  padding: 24px 26px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(33, 219, 140, 0.05);
  border: 1px solid rgba(53, 223, 151, 0.16);
  border-radius: var(--radius);
}
.support-action > span {
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------
   14. FAQ
   ---------------------------------------------------------- */
.faq-section { background: linear-gradient(180deg, var(--bg-deep-solid), var(--bg)); }
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.faq-layout .section-heading { position: sticky; top: 130px; }

.accordion { border-top: 1px solid var(--line-strong); }
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 300ms var(--ease);
}
.faq-item.is-open { background: rgba(33, 219, 140, 0.02); }
.faq-item button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 20px 6px;
  gap: 18px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  transition: color 240ms var(--ease);
}
.faq-item button::before {
  content: counter(faq, decimal-leading-zero);
  color: var(--ink-ghost);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  transition: color 240ms var(--ease);
}
.accordion { counter-reset: faq; }
.faq-item { counter-increment: faq; }
.faq-item.is-open button,
.faq-item button:hover { color: var(--ink); }
.faq-item.is-open button::before { color: var(--gold); }

.faq-item button span {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}
.faq-item.is-open button span { border-color: var(--jade); background: rgba(33, 219, 140, 0.08); }
.faq-item button span::before, .faq-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--jade-bright);
  transform: translate(-50%, -50%);
  transition: transform 240ms var(--ease);
}
.faq-item button span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open button span::after { transform: translate(-50%, -50%) rotate(0); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease);
}
.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.75;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding: 0 44px 28px 44px; }

/* ----------------------------------------------------------
   15. FINAL CTA
   ---------------------------------------------------------- */
.final-cta-section { background: var(--bg); padding-top: 40px; }

.final-cta {
  position: relative;
  min-height: 480px;
  padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(110% 140% at 0% 0%, rgba(11, 130, 84, 0.55), transparent 55%),
    radial-gradient(120% 130% at 100% 100%, rgba(7, 70, 48, 0.6), transparent 55%),
    linear-gradient(135deg, #07261b, #061811);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  --crop-color: var(--gold);
  --crop-size: 24px;
  --crop-inset: 16px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.06);
}

.cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120, 255, 200, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 255, 200, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 72%);
}
.cta-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 640px;
  height: 420px;
  max-width: 90%;
  background: rgba(70, 230, 160, 0.18);
  border-radius: 50%;
  filter: blur(110px);
  transform: translateX(-50%);
}
.cta-logo {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 460px;
  max-width: 60%;
  opacity: 0.08;
  transform: translateY(-50%) rotate(-8deg);
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.4));
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}
.cta-content .eyebrow { color: var(--gold-bright); justify-content: center; }
.cta-content .eyebrow span { background: linear-gradient(90deg, var(--gold), transparent); }
.cta-content h2 { color: #fff; font-size: clamp(36px, 5vw, 62px); }
.cta-content h2 em {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
}
.cta-content p {
  max-width: 600px;
  margin: 0 auto 34px;
  color: rgba(220, 245, 233, 0.82);
  font-size: 17px;
}
.centered-buttons { justify-content: center; }

/* ----------------------------------------------------------
   16. RESOURCE PAGES
   ---------------------------------------------------------- */
.resource-page main { min-height: 70vh; }

.resource-page .site-header {
  background: rgba(4, 8, 6, 0.8);
  border-bottom-color: var(--line);
}

.primary-nav > a[aria-current="page"] { color: var(--jade-bright); }
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.inner-hero {
  min-height: 670px;
  padding-top: clamp(150px, 17vw, 220px);
  padding-bottom: clamp(82px, 10vw, 130px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(120, 255, 200, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 255, 200, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.inner-hero::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(26, 174, 111, 0.11);
  filter: blur(120px);
  pointer-events: none;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 44px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a { color: var(--ink-dim); transition: color 180ms var(--ease); }
.breadcrumb a:hover { color: var(--jade-bright); }
.breadcrumb [aria-current="page"] { color: var(--jade-bright); }

.inner-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
}

.inner-hero-copy { max-width: 780px; }
.inner-hero-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 7.2vw, 94px);
  line-height: 0.96;
}

.inner-hero-copy > p {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.75;
}

.inner-hero-aside {
  position: relative;
  padding: 30px;
  background: linear-gradient(145deg, rgba(15, 29, 22, 0.9), rgba(7, 14, 11, 0.9));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.inner-hero-aside::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 30px;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--jade));
}

.inner-hero-aside > small {
  display: block;
  margin-bottom: 18px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inner-hero-aside > p {
  margin-bottom: 18px;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.7;
}

.status-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 12px;
  padding: 14px 0;
  align-items: start;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.status-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 10px rgba(33, 219, 140, 0.45);
}

.status-list > li > .status-dot { display: none; }
.status-list li > div { display: grid; gap: 2px; }
.status-list strong { color: var(--ink); font-weight: 600; }
.status-list li > div > span { color: var(--ink-dim); font-size: 13px; }
.status-list a { color: var(--ink-2); transition: color 180ms var(--ease); }
.status-list a:hover { color: var(--jade-bright); }

.content-section { background: linear-gradient(180deg, rgba(8, 17, 13, 0.72), transparent); }
.content-heading { max-width: 720px; margin-bottom: 54px; }
.content-heading > p {
  max-width: 650px;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.75;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.resource-card {
  position: relative;
  min-height: 270px;
  padding: clamp(30px, 4.5vw, 52px);
  background: linear-gradient(145deg, rgba(12, 23, 17, 0.98), rgba(6, 12, 9, 0.98));
  overflow: hidden;
}

.resource-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(33, 219, 140, 0.055);
  filter: blur(52px);
  pointer-events: none;
}

.resource-card .feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
}

.resource-card h2,
.resource-card h3 { max-width: 500px; }
.resource-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-dim);
  line-height: 1.75;
}

.resource-card a:not(.button) {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 24px;
  color: var(--jade-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.detail-copy > p {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.8;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  border-top: 1px solid var(--line);
}

.step-list li {
  position: relative;
  padding: 28px 0 28px 64px;
  border-bottom: 1px solid var(--line);
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 30px;
  left: 0;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.step-list h2,
.step-list h3 { margin-bottom: 8px; font-size: 20px; }
.step-list p { margin: 0; color: var(--ink-dim); }
.step-list > li > span { display: none; }

.faq-answer a {
  color: var(--jade-bright);
  text-decoration: underline;
  text-decoration-color: rgba(102, 255, 190, 0.35);
  text-underline-offset: 3px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.related-links a {
  display: flex;
  min-height: 92px;
  padding: 22px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-2);
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}

.related-links a::after { content: ">"; color: var(--jade); font-family: var(--font-mono); }
.related-links a:hover {
  color: var(--jade-bright);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------- */
.site-footer { position: relative; background: var(--bg-deep-solid); overflow: hidden; }

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 6vw, 80px);
  padding: 72px 0 56px;
  border-top: 1px solid var(--line);
}
.footer-brand p {
  max-width: 420px;
  margin: 24px 0 0;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.7;
}
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-links h3 {
  margin-bottom: 20px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-links a {
  display: flex;
  width: fit-content;
  margin: 12px 0;
  align-items: center;
  gap: 9px;
  color: var(--ink-dim);
  font-size: 14px;
  transition: color 200ms var(--ease), transform 200ms var(--ease);
}
.footer-links a:hover { color: var(--jade-bright); transform: translateX(3px); }
.discord-footer-link svg { width: 17px; height: 17px; fill: currentColor; }

/* oversized ghost wordmark */
.footer-wordmark {
  position: relative;
  display: block;
  padding: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(60px, 17vw, 260px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(122, 205, 168, 0.1);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.footer-bottom p {
  margin: 0;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}

/* ----------------------------------------------------------
   17. REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* hero title line reveal */
.js h1 > span > .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 900ms var(--ease-out);
}
.js h1.is-visible > span > .line-inner { transform: translateY(0); }
.js h1 > span:nth-child(2) > .line-inner { transition-delay: 80ms; }
.js h1 > span:nth-child(3) > .line-inner { transition-delay: 160ms; }
.js h1 > span:nth-child(4) > .line-inner { transition-delay: 240ms; }

/* ----------------------------------------------------------
   19. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1.05fr 0.95fr; }
  .preview-label { display: none; }
  .desktop-frame { width: min(780px, 100%); }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(7, 14, 11, 0.98);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav > a:not(.button) {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .primary-nav > a:not(.button)::after { display: none; }
  .nav-discord { width: 100%; margin-top: 12px; }

  .hero { padding-top: 130px; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 720px; margin-inline: auto; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .support-line { justify-content: center; }
  .hero-visual {
    min-height: 420px;
    margin-top: 24px;
    padding: 36px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .emblem-stage { min-height: 400px; max-width: 520px; }
  .hero-side-mark { display: none; }

  .trust-strip { grid-template-columns: 1fr 1fr; margin-top: 50px; }
  .trust-strip > span { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .trust-strip div:nth-child(2) { border-left: 0; }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large { grid-template-columns: 1fr; gap: 20px; }
  .feature-card-large .card-visual { display: none; }
  .feature-card:not(.feature-card-large):nth-child(3n + 1) { border-left: 0; }
  .feature-card:not(.feature-card-large):nth-child(2n) { border-right: 0; }

  .fivem-layout, .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .fivem-visual { min-height: 440px; order: 2; }
  .fivem-copy { order: 1; }
  .faq-layout .section-heading { position: static; }

  .support-header { grid-template-columns: 1fr; gap: 20px; }
  .support-cards { grid-template-columns: 1fr; }
  .support-cards article {
    padding: 28px 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .support-cards article:last-child { border-bottom: 0; }

  .inner-hero { min-height: auto; }
  .inner-hero-grid,
  .detail-split { grid-template-columns: 1fr; }
  .inner-hero-aside { max-width: 620px; }
  .related-links { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .nav-shell { min-height: 72px; }
  .brand img { width: 38px; height: 38px; }
  .brand { font-size: 14px; }

  .hero { padding-top: 116px; }
  h1 { font-size: clamp(40px, 13vw, 60px); }
  .hero-actions .button,
  .fivem-copy .button-row .button,
  .centered-buttons .button { width: 100%; }
  .support-line { align-items: flex-start; text-align: left; line-height: 1.5; }
  .status-dot { margin-top: 5px; }
  .hero-visual { min-height: 360px; }
  .emblem-stage { min-height: 320px; }
  .emblem-note { display: none; }

  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-left: 0; border-top: 1px solid var(--line); padding: 18px 0; }
  .trust-strip > span { padding: 18px 0; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:not(.feature-card-large) { border-right: 0 !important; }
  .feature-card-large { padding: 32px 22px; }

  .inner-hero { padding-top: 126px; }
  .inner-hero-copy h1 { font-size: clamp(42px, 13vw, 62px); }
  .inner-hero-aside { padding: 24px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 0; padding: 32px 24px; }
  .resource-card .feature-number { margin-bottom: 28px; }
  .step-list li { padding-left: 48px; }

  .product-stage { margin-top: 44px; padding-top: 0; }
  .desktop-frame { width: 100%; }
  .frame-topbar { grid-template-columns: auto 1fr; padding: 0 12px; }
  .frame-title { justify-self: end; }
  .frame-state { display: none; }
  .frame-content { min-height: 240px; padding: 16px; }

  .fivem-visual { min-height: 380px; }
  .server-core { width: 94px; height: 94px; }
  .core-ring { inset: -42px; }
  .node-one { top: 56px; left: 22px; }
  .node-two { top: 84px; right: 18px; }
  .node-three { right: 24px; bottom: 50px; }

  .support-panel { --crop-inset: 8px; padding: 26px 20px; }
  .support-action { flex-direction: column; align-items: stretch; }
  .support-action .button { width: 100%; }

  .faq-item.is-open .faq-answer p { padding: 0 0 26px 38px; }

  .final-cta { --crop-inset: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ----------------------------------------------------------
   20. REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* Pointer-driven motion (parallax tilt, cursor glow, magnetic buttons and
     text scramble) is already disabled in script.js for reduced-motion users.
     We deliberately KEEP the gentle ambient loops (logo float, rotating rings,
     status pulse) plus fade-in reveals + hover effects, so the site still feels
     alive even when the OS has "reduce motion" / animations turned off. This
     is a common default on Windows. */
  .cursor-glow { display: none !important; }

  /* Reveals fade in place, without the larger vertical movement. */
  .js .reveal { transform: none; }
  .js h1 > span > .line-inner { transform: none; }
}
