/* ============================================================
   QUANTUMLINK — CYBERPUNK SYSTEM
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #03030a;
  --bg-2:      #07071a;
  --bg-3:      #0a0a26;
  --ink:       #e6e6f0;
  --ink-soft:  #9090b8;
  --muted:     #5a5a78;

  /* Lines */
  --line:      rgba(0, 240, 255, 0.16);
  --line-soft: rgba(0, 240, 255, 0.06);
  --line-mag:  rgba(255, 46, 154, 0.22);

  /* Neon palette */
  --neon-1:   #ff2e9a;   /* magenta — primary punch */
  --neon-2:   #00f0ff;   /* cyan — UI / structure */
  --neon-3:   #a4ff00;   /* acid lime — accents */
  --neon-4:   #fff700;   /* electric yellow — alerts */
  --violet:   #9d00ff;
  --hot:      #ff5b3b;

  /* Type */
  --display:  'Rajdhani', 'Space Grotesk', sans-serif;
  --sans:     'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:     'Share Tech Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Easing */
  --ease:     cubic-bezier(.7, 0, .15, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Glows */
  --glow-cy: 0 0 14px rgba(0, 240, 255, 0.55), 0 0 36px rgba(0, 240, 255, 0.2);
  --glow-mg: 0 0 14px rgba(255, 46, 154, 0.6),  0 0 36px rgba(255, 46, 154, 0.22);
  --glow-lm: 0 0 14px rgba(164, 255, 0, 0.55),  0 0 30px rgba(164, 255, 0, 0.2);

  --hud-h: 28px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  cursor: none;
  min-height: 100vh;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  padding-top: var(--hud-h);
}
@media (max-width: 720px) { body { cursor: auto; padding-top: 0; --hud-h: 0px; } }

::selection { background: var(--neon-1); color: #000; }

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: none; }
img, svg { display: block; max-width: 100%; }

/* ============================================================
   GLOBAL OVERLAYS — scanlines, scan beam, grid, blobs, noise
   ============================================================ */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    rgba(0, 240, 255, 0.018) 1px,
    transparent 2px,
    transparent 3px
  );
  opacity: 0.5;
}
.scanlines::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 4px,
    rgba(0, 0, 0, 0.18) 4px,
    rgba(0, 0, 0, 0.18) 5px
  );
}

.scan-beam {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 140px;
  z-index: 9996;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 240, 255, 0.04) 30%,
    rgba(0, 240, 255, 0.09) 50%,
    rgba(0, 240, 255, 0.04) 70%,
    transparent 100%
  );
  animation: scanMove 9s linear infinite;
  will-change: transform;
}
@keyframes scanMove {
  0%   { transform: translateY(-200px); }
  100% { transform: translateY(120vh); }
}

/* Background field */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.blob--1 { width: 560px; height: 560px; background: var(--neon-1); top: -180px; left: -160px; }
.blob--2 { width: 500px; height: 500px; background: var(--violet); bottom: -160px; right: -120px; opacity: 0.3; }
.blob--3 { width: 400px; height: 400px; background: var(--neon-2); top: 38%; left: 48%; opacity: 0.16; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(120px, -80px) scale(1.1); }
  66% { transform: translate(-80px, 100px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.04;
  pointer-events: none;
}
@keyframes noiseShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 50% 50%, var(--bg-2), var(--bg) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  pointer-events: none;
  font-family: var(--mono);
}
.loader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.loader__head {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-2);
  text-shadow: var(--glow-cy);
}
.loader__count-wrap {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}
.loader__pct {
  font-size: 0.3em;
  font-family: var(--mono);
  color: var(--neon-1);
  margin-top: 0.4em;
  text-shadow: var(--glow-mg);
}
.loader__bar {
  width: min(420px, 60vw);
  height: 2px;
  background: var(--line-soft);
  position: relative;
  overflow: hidden;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--neon-2), var(--neon-1));
  box-shadow: var(--glow-cy);
}
.loader__foot {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: blink 1.6s steps(1) infinite;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor, .cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 32px;
  height: 32px;
  border: 1px solid var(--neon-2);
  border-radius: 0;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  mix-blend-mode: difference;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .3s, background .3s;
}
.cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--neon-1);
  box-shadow: var(--glow-mg);
}
.cursor.is-hover {
  width: 76px;
  height: 76px;
  background: var(--neon-2);
  border-color: var(--neon-2);
  mix-blend-mode: difference;
}
@media (max-width: 720px) {
  .cursor, .cursor-dot { display: none; }
}

/* ============================================================
   HUD STATUS BAR
   ============================================================ */
.hud {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hud-h);
  z-index: 200;
  background: rgba(3, 3, 14, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--neon-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.4);
}
.hud__seg { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.hud__led {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--neon-3);
  border-radius: 50%;
  box-shadow: var(--glow-lm);
  animation: pulse 1.6s ease-in-out infinite;
}
@media (max-width: 900px) { .hud__seg--mid { display: none; } }
@media (max-width: 600px) { .hud__seg:nth-child(4) { display: none; } }
@media (max-width: 720px) { .hud { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: var(--hud-h); left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: padding .4s var(--ease-out), background .4s;
  background: linear-gradient(180deg, rgba(3, 3, 10, 0.7), transparent);
  backdrop-filter: blur(4px);
}
.nav.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(3, 3, 10, 0.8);
  border-bottom: 1px solid var(--line-soft);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__logo::before {
  content: ">";
  color: var(--neon-2);
  margin-right: 2px;
  text-shadow: var(--glow-cy);
}
.logo-mark { color: var(--neon-2); display: inline-flex; filter: drop-shadow(0 0 6px var(--neon-2)); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   QL ORBITAL MARK (animated logo) — used in nav + hero
   ============================================================ */
.ql-mark { display: inline-block; }
.ql-mark svg { display: block; overflow: visible; }

.ql-mark__orbit {
  transform-origin: 50px 50px;
  transform-box: view-box;
  will-change: transform;
}
.ql-mark__orbit--a { animation: qlOrbitA 9s linear infinite; }
.ql-mark__orbit--b { animation: qlOrbitB 11s linear infinite; }
.ql-mark__orbit--c { animation: qlOrbitC 22s linear infinite; }
@keyframes qlOrbitA { to { transform: rotate(360deg); } }
@keyframes qlOrbitB { to { transform: rotate(-360deg); } }
@keyframes qlOrbitC { to { transform: rotate(360deg); } }

.ql-mark__core {
  transform-origin: 50px 50px;
  transform-box: view-box;
  animation: qlCorePulse 2.4s ease-in-out infinite;
  will-change: transform, filter;
}
@keyframes qlCorePulse {
  0%, 100% { transform: scale(1);   filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.85)); }
  50%      { transform: scale(1.35); filter: drop-shadow(0 0 14px rgba(0, 240, 255, 1)); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ql-mark__orbit--a,
  .ql-mark__orbit--b,
  .ql-mark__orbit--c,
  .ql-mark__core {
    animation: none !important;
  }
}

.nav__links {
  display: flex;
  gap: 4px;
}
.nav__link {
  position: relative;
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .3s;
}
.nav__link::before {
  content: "[";
  margin-right: 4px;
  color: var(--neon-2);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .3s, transform .3s;
}
.nav__link::after {
  content: "]";
  margin-left: 4px;
  color: var(--neon-2);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
}
.nav__link:hover { color: var(--neon-2); text-shadow: var(--glow-cy); }
.nav__link:hover::before, .nav__link:hover::after { opacity: 1; transform: translateX(0); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--neon-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-2);
  background: rgba(0, 240, 255, 0.04);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  position: relative;
  transition: color .3s;
}
.nav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neon-2);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
  z-index: -1;
}
.nav__cta:hover { color: #000; }
.nav__cta:hover::before { transform: translateX(0); }

/* ---- Mobile menu (hamburger) ---- */
.nav__toggle {
  display: none;
  position: relative;
  width: 40px; height: 34px;
  margin-left: 6px;
  background: rgba(0, 240, 255, 0.04);
  border: 1px solid var(--neon-2);
  flex-shrink: 0;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}
.nav__toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--neon-2); box-shadow: var(--glow-cy);
  transition: transform .3s var(--ease-out), opacity .25s;
}
.nav__toggle span:nth-child(1) { top: 11px; }
.nav__toggle span:nth-child(2) { top: 16px; }
.nav__toggle span:nth-child(3) { top: 21px; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 10px clamp(20px, 4vw, 48px) 22px;
    background: rgba(3, 3, 10, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
  }
  .nav.is-open .nav__links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__link {
    width: 100%;
    padding: 15px 6px;
    font-size: 14px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__link::before, .nav__link::after { content: none; }
  .nav__link--refer { margin-top: 14px; text-align: center; padding: 14px 6px; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
section {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
  position: relative;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100svh - var(--hud-h));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: 60px;
  position: relative;
}

.hero__meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-2);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
}
.hero__meta::before {
  content: "//";
  color: var(--neon-1);
  margin-right: 4px;
  letter-spacing: 0;
  text-shadow: var(--glow-mg);
}
.dot {
  width: 8px; height: 8px;
  background: var(--neon-3);
  box-shadow: var(--glow-lm);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}
.hero__meta-sep { color: var(--muted); }

.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 14vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: clamp(40px, 8vh, 100px);
  text-shadow:
    -1px 0 0 rgba(255, 46, 154, 0.5),
    1px 0 0 rgba(0, 240, 255, 0.5),
    0 0 30px rgba(0, 240, 255, 0.08);
  position: relative;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.hero__title .word {
  display: inline-block;
  will-change: transform;
}
.italic {
  font-style: normal;
  color: var(--neon-2);
  text-shadow: var(--glow-cy);
  transform: skewX(-8deg);
  transform-origin: left bottom;
  display: inline-block;
  margin-right: 0.1em;
  letter-spacing: 0.02em;
}
.accent {
  background: linear-gradient(135deg, var(--neon-1) 0%, var(--neon-4) 45%, var(--neon-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 0 24px rgba(255, 46, 154, 0.35));
  position: relative;
}
.hero__title-spot {
  display: inline-block;
  white-space: nowrap;
}
.cursor-blink {
  display: inline-block;
  color: var(--neon-2);
  animation: blink 1s steps(1) infinite;
  font-family: var(--mono);
  font-weight: 400;
  text-shadow: var(--glow-cy);
  margin-left: 0.05em;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__sub {
  margin-top: clamp(32px, 6vh, 60px);
  font-size: clamp(16px, 1.6vw, 22px);
  max-width: 540px;
  color: var(--ink-soft);
  line-height: 1.4;
  font-family: var(--sans);
}
.hero__sub p + p { margin-top: 4px; }

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: clamp(60px, 10vh, 100px);
  flex-wrap: wrap;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  max-width: 280px;
  text-align: left;
}
.hero__note-line {
  width: 60px; height: 1px;
  background: var(--neon-1);
  flex-shrink: 0;
  box-shadow: var(--glow-mg);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--neon-2);
}
.scroll-hint::before { content: "↓"; }
.scroll-hint__bar {
  display: block;
  width: 60px; height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scroll-hint__bar span {
  position: absolute;
  inset: 0;
  background: var(--neon-2);
  box-shadow: var(--glow-cy);
  animation: scrollBar 2s var(--ease) infinite;
}
@keyframes scrollBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.btn--primary {
  background: var(--neon-2);
  color: #000;
  box-shadow: var(--glow-cy);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neon-1);
  transform: translateY(101%);
  transition: transform .55s var(--ease);
  z-index: -1;
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover { color: #fff; box-shadow: var(--glow-mg); }

.btn__label {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  height: 1.2em;
  overflow: hidden;
}
.btn__text { display: block; transition: transform .5s var(--ease); }
.btn__text--hover { position: absolute; top: 100%; left: 0; }
.btn:hover .btn__text { transform: translateY(-100%); }

.btn__arrow { display: inline-flex; transition: transform .4s var(--ease); }
.btn:hover .btn__arrow { transform: rotate(-45deg); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  padding: 30px 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 154, 0.04), transparent);
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee__track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  animation: marquee 38s linear infinite;
}
.marquee__track > span:nth-child(4n+1) { color: var(--neon-2); text-shadow: var(--glow-cy); }
.marquee__track > span:nth-child(4n+3) { color: var(--neon-1); text-shadow: var(--glow-mg); }
.marquee__track .dot-sep {
  color: var(--neon-3);
  font-size: 0.3em;
  font-family: var(--mono);
  letter-spacing: 0;
}
.marquee__track .dot-sep::before { content: " // "; }
.marquee__track .dot-sep { font-size: 0.5em; color: var(--neon-3); text-shadow: var(--glow-lm); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.problem__label, .stats__head, .about__head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--neon-2);
  margin-bottom: 60px;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
}
.num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  letter-spacing: 0.05em;
}
.num::before { content: "["; color: var(--neon-2); margin-right: 2px; text-shadow: var(--glow-cy); }
.num::after  { content: "]"; color: var(--neon-2); margin-left: 2px; text-shadow: var(--glow-cy); }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  max-width: 18ch;
  margin-bottom: 80px;
}
.problem__title em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  position: relative;
  transform: skewX(-6deg);
  display: inline-block;
}
.problem__title em::after {
  content: "";
  position: absolute;
  bottom: 0.05em;
  left: 0; right: 0;
  height: 4px;
  background: var(--neon-1);
  box-shadow: var(--glow-mg);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1.4s var(--ease-out) forwards;
  animation-delay: .8s;
}
@keyframes underline { to { transform: scaleX(1); } }

.problem__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .problem__grid { grid-template-columns: 1fr; gap: 50px; } }

.problem__copy p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 56ch;
}
.problem__copy strong { color: var(--ink); font-weight: 500; }
.problem__copy .muted { color: var(--muted); }
.problem__copy .hl {
  color: var(--neon-2);
  font-weight: 500;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
  border-bottom: 1px dashed var(--neon-2);
}

.problem__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--neon-3) !important;
  margin-top: 32px;
}
.problem__list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: rgba(164, 255, 0, 0.04);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.problem__card {
  position: relative;
  padding: 1px;
  background: linear-gradient(135deg, var(--neon-1), var(--neon-2), var(--neon-3));
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
  align-self: start;
  position: sticky;
  top: 100px;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.problem__card-inner {
  background: var(--bg-2);
  padding: 36px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.problem__card-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--neon-1), transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
  filter: blur(40px);
  top: var(--my, -100px);
  left: var(--mx, -100px);
  transition: top .3s, left .3s;
}
.problem__card-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--neon-3);
  padding: 6px 14px;
  border: 1px solid var(--neon-3);
  margin-bottom: 24px;
  text-shadow: var(--glow-lm);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.problem__card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: none;
}
.problem__card h3 em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
}
.problem__card-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--neon-2);
}
.pulse {
  width: 8px; height: 8px;
  background: var(--neon-3);
  box-shadow: var(--glow-lm);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ============================================================
   STATS
   ============================================================ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .stats__grid { grid-template-columns: 1fr; } }
.stat {
  padding: 60px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .4s;
  overflow: hidden;
}
.stat:last-child { border-right: 0; }
@media (max-width: 900px) { .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 40px 20px; } .stat:last-child { border-bottom: 0; } }
.stat::before {
  content: attr(data-tag);
  position: absolute;
  top: 18px; left: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--neon-2);
  text-transform: uppercase;
  opacity: 0.7;
}
.stat:nth-child(1) { --tag: "STAT::01"; }
.stat:nth-child(2) { --tag: "STAT::02"; }
.stat:nth-child(3) { --tag: "STAT::03"; }
.stat:nth-child(1)::before { content: "STAT::01"; }
.stat:nth-child(2)::before { content: "STAT::02"; }
.stat:nth-child(3)::before { content: "STAT::03"; }
.stat:hover { background: rgba(0, 240, 255, 0.025); }

.stat__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  text-shadow:
    -1px 0 0 rgba(255, 46, 154, 0.4),
    1px 0 0 rgba(0, 240, 255, 0.4);
}
.stat__num em {
  font-size: 0.4em;
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  margin-top: 0.4em;
  margin-left: 4px;
  font-family: var(--mono);
}
.stat p {
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 30ch;
  line-height: 1.55;
}
.stat p strong { color: var(--neon-2); font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: end;
}
@media (max-width: 900px) { .services__head { grid-template-columns: 1fr; gap: 20px; } }
.services__head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.services__head h2 em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  transform: skewX(-6deg);
  display: inline-block;
}
.services__intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.5;
}

.services__list {
  border-top: 1px solid var(--line);
}
.service {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .5s var(--ease-out);
  cursor: none;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.service:hover::before { opacity: 1; }
.service:hover { padding: 70px 0; }

@media (max-width: 900px) {
  .service { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .service:hover { padding: 40px 0; }
}

.service__index {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--neon-2);
  letter-spacing: 0.05em;
  text-shadow: var(--glow-cy);
}
.service__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-3);
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(164, 255, 0, 0.3);
}
.service__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
  transition: transform .5s var(--ease-out), color .5s, text-shadow .5s;
}
.service:hover .service__title {
  transform: translateX(20px);
  text-shadow: -2px 0 0 var(--neon-1), 2px 0 0 var(--neon-2);
}
.service__desc {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: 18px;
  font-family: var(--sans);
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.service__tags li {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
  transition: color .3s, border-color .3s;
}
.service__tags li:hover { color: var(--neon-2); border-color: var(--neon-2); }

.service__visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Shared frame for all three service visuals */
.vis {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transform: scale(0.95);
  transition: transform .6s var(--ease-out), border-color .4s, box-shadow .4s;
}
.service:hover .vis {
  transform: scale(1);
  border-color: var(--neon-2);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

/* ===== AD CREATIVE ===== */
.vis--ad {
  background:
    radial-gradient(circle at 85% 15%, rgba(157, 0, 255, 0.6) 0%, transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(255, 46, 154, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, #15012b 0%, #2d0a4e 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--ink);
}
.vis-ad__chip {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-3);
  align-self: flex-start;
  padding: 3px 8px;
  border: 1px solid var(--neon-3);
  text-shadow: var(--glow-lm);
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}
.vis-ad__claim {
  font-family: var(--display);
  font-weight: 700;
  font-size: 40px;
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 24px rgba(255, 46, 154, 0.45),
    -1px 0 0 var(--neon-1),
    1px 0 0 var(--neon-2);
  margin: 4px 0;
}
.vis-ad__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 7px 12px;
  background: var(--neon-3);
  color: #000;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
  box-shadow: 0 0 16px rgba(164, 255, 0, 0.4);
}
.vis-ad__brand {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.25em;
  color: var(--neon-2);
  text-shadow: var(--glow-cy);
  opacity: 0.85;
}
.vis-ad__sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
.service:hover .vis-ad__sweep { animation: adSweep 1.4s var(--ease-out); }
@keyframes adSweep { to { transform: translateX(100%); } }

/* ===== WEBSITE MOCKUP ===== */
.vis--site {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.vis-site__bar {
  background: var(--bg-3);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.vis-site__dots { display: inline-flex; gap: 4px; }
.vis-site__dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.vis-site__dots i:nth-child(1) { background: var(--neon-1); box-shadow: 0 0 4px var(--neon-1); }
.vis-site__dots i:nth-child(2) { background: var(--neon-4); box-shadow: 0 0 4px var(--neon-4); }
.vis-site__dots i:nth-child(3) { background: var(--neon-3); box-shadow: 0 0 4px var(--neon-3); }
.vis-site__url {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--neon-2);
  letter-spacing: 0.04em;
  flex: 1;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 240, 255, 0.3);
}
.vis-site__body {
  flex: 1;
  padding: 10px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 46, 154, 0.06), transparent 50%);
}
.vis-site__kicker {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-3);
  text-shadow: var(--glow-lm);
}
.vis-site__h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 0.85;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-2) 0%, var(--neon-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.25));
  margin: 2px 0 4px;
}
.vis-site__lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vis-site__lines span {
  height: 2.5px;
  background: var(--line);
  width: 100%;
}
.vis-site__lines span.short { width: 55%; }
.vis-site__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}
.vis-site__grid i {
  height: 24px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.18), rgba(255, 46, 154, 0.12));
  border: 1px solid var(--line);
  display: block;
  position: relative;
}
.vis-site__grid i:nth-child(2) {
  background: linear-gradient(135deg, rgba(164, 255, 0, 0.15), rgba(0, 240, 255, 0.1));
}
.vis-site__grid i:nth-child(3) {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(255, 46, 154, 0.1));
}
.vis-site__cursor {
  position: absolute;
  color: var(--neon-1);
  filter: drop-shadow(0 0 6px var(--neon-1));
  bottom: 22px; right: 28px;
  animation: siteCursor 4.5s ease-in-out infinite;
}
@keyframes siteCursor {
  0%   { transform: translate(-110px, -40px) scale(1); opacity: 0; }
  15%  { opacity: 1; }
  55%  { transform: translate(-30px, -10px) scale(1); opacity: 1; }
  72%  { transform: translate(0, 0) scale(0.7); opacity: 1; }
  78%  { transform: translate(0, 0) scale(1.4); opacity: 1; }
  92%  { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { opacity: 0; transform: translate(0, 0) scale(1); }
}

/* ===== VIDEO FRAME ===== */
.vis--vid {
  background:
    radial-gradient(ellipse at 50% 50%, #1a0e26 0%, #050510 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  color: var(--ink);
}
.vis--vid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
}
.vis-vid__hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.vis-vid__rec {
  color: var(--neon-1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-shadow: var(--glow-mg);
}
.vis-vid__rec i {
  width: 7px; height: 7px;
  background: var(--neon-1);
  border-radius: 50%;
  box-shadow: var(--glow-mg);
  animation: pulse 1s ease-in-out infinite;
}
.vis-vid__tc { color: var(--neon-2); text-shadow: var(--glow-cy); }

.vis-vid__crosshair {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vis-vid__crosshair span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--neon-2);
  opacity: 0.55;
}
.vis-vid__crosshair span:nth-child(1) { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.vis-vid__crosshair span:nth-child(2) { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.vis-vid__crosshair span:nth-child(3) { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.vis-vid__crosshair span:nth-child(4) { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.vis-vid__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-2);
  filter: drop-shadow(0 0 14px var(--neon-2));
  transition: transform .4s var(--ease-out);
  z-index: 1;
}
.service:hover .vis-vid__play { transform: scale(1.12); }

.vis-vid__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
}
.vis-vid__wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}
.vis-vid__wave i {
  flex: 1;
  background: var(--neon-2);
  height: 30%;
  box-shadow: 0 0 4px var(--neon-2);
  animation: wave 0.9s ease-in-out infinite;
  transform-origin: bottom;
}
.vis-vid__wave i:nth-child(8n+1) { animation-delay: 0.00s; }
.vis-vid__wave i:nth-child(8n+2) { animation-delay: 0.08s; }
.vis-vid__wave i:nth-child(8n+3) { animation-delay: 0.16s; }
.vis-vid__wave i:nth-child(8n+4) { animation-delay: 0.24s; }
.vis-vid__wave i:nth-child(8n+5) { animation-delay: 0.32s; }
.vis-vid__wave i:nth-child(8n+6) { animation-delay: 0.40s; }
.vis-vid__wave i:nth-child(8n+7) { animation-delay: 0.48s; }
.vis-vid__wave i:nth-child(8n+8) { animation-delay: 0.56s; }
.vis-vid__wave i:nth-child(3n+1) { background: var(--neon-1); box-shadow: 0 0 4px var(--neon-1); }
@keyframes wave {
  0%, 100% { transform: scaleY(0.25); }
  50%      { transform: scaleY(1); }
}
.vis-vid__bar {
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.vis-vid__bar::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 35%;
  background: var(--neon-1);
  box-shadow: var(--glow-mg);
  animation: vidProgress 6s linear infinite;
}
@keyframes vidProgress {
  0%   { width: 28%; }
  100% { width: 88%; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__lead h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.about__lead em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  transform: skewX(-6deg);
  display: inline-block;
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
}
@media (max-width: 900px) { .about__body { grid-template-columns: 1fr; gap: 40px; } }
.about__col p {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 50ch;
}
.about__col strong { color: var(--neon-2); font-weight: 500; }

blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  position: relative;
  padding: 30px 30px 30px 50px;
  text-transform: none;
  border-left: 2px solid var(--neon-2);
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.04), transparent);
}
blockquote em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
}
.quote-mark {
  position: absolute;
  left: 12px; top: 8px;
  font-size: 60px;
  color: var(--neon-2);
  line-height: 1;
  text-shadow: var(--glow-cy);
  font-family: var(--display);
}

.about__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
  border-block: 1px solid var(--line);
  position: relative;
}
.about__strip::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-2), transparent);
  opacity: 0.5;
}
@media (max-width: 900px) { .about__strip { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.about__strip > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__strip .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 60px);
  color: var(--ink);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}
.about__strip .num::before, .about__strip .num::after { content: none; }
.about__strip span:last-child {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-2);
}

/* ============================================================
   INSTAGRAM / FEED
   ============================================================ */
.insta { position: relative; }

.insta__head {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .insta__head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}
.insta__head .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--neon-2);
  text-shadow: var(--glow-cy);
}
.insta__head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-bottom: 0.08em;
  text-shadow:
    -1px 0 0 rgba(255, 46, 154, 0.35),
     1px 0 0 rgba(0, 240, 255, 0.35);
}
.insta__head h2 em {
  font-style: normal;
  color: var(--neon-2);
  text-shadow: var(--glow-cy);
  display: inline-block;
  transform: skewX(-6deg);
}
.insta__intro {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  max-width: 44ch;
}
.insta__intro strong {
  color: var(--neon-1);
  font-weight: 600;
  text-shadow: var(--glow-mg);
}

.insta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.insta__tile {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.025), rgba(255, 46, 154, 0.015));
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: none;
  transition: border-color .35s, transform .55s var(--ease-out), box-shadow .4s;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
@media (max-width: 900px) { .insta__tile { cursor: pointer; } }
.insta__tile::after {
  content: "";
  position: absolute;
  top: -1px; left: 14px;
  width: 50px; height: 1px;
  background: var(--neon-2);
  box-shadow: var(--glow-cy);
  opacity: 0.5;
  transition: opacity .35s, width .4s;
  z-index: 4;
}
.insta__tile:hover {
  border-color: var(--neon-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 240, 255, 0.15);
}
.insta__tile:hover::after { opacity: 1; width: 80px; }

.insta__index {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-2);
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.35);
  z-index: 3;
  background: rgba(3, 3, 10, 0.55);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-soft);
}

.insta__badge {
  position: absolute;
  top: 12px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 4px 7px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-1);
  background: rgba(3, 3, 10, 0.6);
  border: 1px solid var(--neon-1);
  text-shadow: 0 0 6px rgba(255, 46, 154, 0.4);
  backdrop-filter: blur(4px);
  z-index: 3;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}
.insta__badge svg {
  filter: drop-shadow(0 0 3px rgba(255, 46, 154, 0.6));
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

.insta__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(0, 240, 255, 0.07) 0%,
      rgba(157, 0, 255, 0.06) 50%,
      rgba(255, 46, 154, 0.07) 100%);
  overflow: hidden;
}
.insta__media::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(0, 240, 255, 0.45);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
  z-index: 0;
}
.insta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  z-index: 0;
}
.insta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .8s var(--ease-out), filter .4s;
  filter: saturate(1.05) contrast(1.05);
}
.insta__media img.is-missing { display: none; }
.insta__tile:hover .insta__media img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.1);
}

.insta__overlay {
  position: absolute;
  bottom: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(3, 3, 10, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--neon-2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s var(--ease-out);
  z-index: 3;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.25);
}
.insta__tile:hover .insta__overlay { opacity: 1; transform: translateY(0); }

.insta__sweep {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-2), transparent);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.insta__tile:hover .insta__sweep {
  animation: instaSweep 1.6s var(--ease-out) infinite;
}
@keyframes instaSweep {
  0%   { top: 0%;  opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.insta__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 20px;
}

.insta__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--neon-1);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-1);
  background: rgba(255, 46, 154, 0.05);
  text-shadow: 0 0 6px rgba(255, 46, 154, 0.4);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  position: relative;
  transition: color .3s, text-shadow .3s;
  overflow: hidden;
  isolation: isolate;
}
.insta__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neon-1);
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.insta__cta:hover { color: #000; text-shadow: none; }
.insta__cta:hover::before { transform: translateX(0); }
.insta__cta-icon { flex-shrink: 0; }

.insta__handle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.insta__handle span { color: var(--muted); margin-left: 8px; }
@media (max-width: 600px) {
  .insta__foot { flex-direction: column; align-items: flex-start; }
  .insta__handle { font-size: 10px; }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  text-align: center;
  padding-block: clamp(120px, 18vw, 240px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 46, 154, 0.15), transparent 60%),
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.1), transparent 60%);
  pointer-events: none;
}
.cta__inner { position: relative; }
.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--neon-2);
  margin-bottom: 40px;
  text-shadow: var(--glow-cy);
}
.cta__eyebrow::before { content: "//"; color: var(--neon-1); }
.cta__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 80px;
  text-shadow:
    -1px 0 0 rgba(255, 46, 154, 0.4),
    1px 0 0 rgba(0, 240, 255, 0.4);
}
.cta__title .line { display: block; overflow: hidden; padding-bottom: 0.05em; }
.cta__title em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  transform: skewX(-6deg);
  display: inline-block;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; gap: 50px; } }

.contact__info {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 20px;
}
@media (max-width: 900px) { .contact__info { position: static; } }

.contact__lead {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: none;
}
.contact__lead strong {
  font-weight: 600;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact__list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.contact__list-key {
  color: var(--neon-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  align-self: center;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
}
.contact__list-key::before { content: ">> "; }
.contact__list-val { color: var(--ink); }
a.contact__list-val:hover { color: var(--neon-1); text-shadow: var(--glow-mg); }

.contact__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-3);
  padding: 10px 16px;
  border: 1px solid var(--neon-3);
  align-self: flex-start;
  background: rgba(164, 255, 0, 0.04);
  text-shadow: var(--glow-lm);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* ----- FORM ----- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 240, 255, 0.025), rgba(255, 46, 154, 0.015));
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(8px);
  transition: border-color .4s, opacity .5s, transform .5s;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.contact-form::after {
  content: "";
  position: absolute;
  top: -1px; left: 20px;
  width: 80px; height: 1px;
  background: var(--neon-2);
  box-shadow: var(--glow-cy);
}

.cf__hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

.cf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 600px) { .cf__row { grid-template-columns: 1fr; gap: 28px; } }

.cf__field {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 6px;
}

.cf__label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--neon-2);
  transition: color .3s, text-shadow .3s;
  text-shadow: 0 0 4px rgba(0, 240, 255, 0.25);
}
.cf__label::before { content: "> "; color: var(--neon-1); }
.cf__label em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--muted);
  opacity: 0.7;
}
.cf__label--static { color: var(--neon-2); margin-bottom: 14px; display: block; }

.cf__field input,
.cf__field textarea {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: 400 16px/1.45 var(--mono);
  letter-spacing: 0;
  padding: 8px 0 12px;
  width: 100%;
  resize: none;
  cursor: none;
  caret-color: var(--neon-1);
}
.cf__field textarea { min-height: 120px; padding-top: 10px; font-family: var(--mono); }
@media (max-width: 900px) { .cf__field input, .cf__field textarea { cursor: auto; } }

.cf__line {
  position: relative;
  display: block;
  height: 1px;
  background: var(--line);
}
.cf__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neon-1);
  box-shadow: var(--glow-mg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.cf__field input:focus ~ .cf__line::after,
.cf__field textarea:focus ~ .cf__line::after { transform: scaleX(1); }
.cf__field:focus-within .cf__label { color: var(--neon-1); text-shadow: var(--glow-mg); }
.cf__field:focus-within .cf__label::before { color: var(--neon-2); }

/* Pill checkboxes */
.cf__pills { border: 0; padding: 0; margin: 0; }
.cf__pills-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.cf__pill { position: relative; cursor: none; }
@media (max-width: 900px) { .cf__pill { cursor: pointer; } }
.cf__pill input { position: absolute; inset: 0; opacity: 0; cursor: inherit; }
.cf__pill span {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  transition: all .3s var(--ease-out);
  user-select: none;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}
.cf__pill:hover span { border-color: var(--neon-2); color: var(--neon-2); transform: translateY(-1px); text-shadow: var(--glow-cy); }
.cf__pill input:checked ~ span {
  background: var(--neon-2);
  color: #000;
  border-color: var(--neon-2);
  box-shadow: var(--glow-cy);
  text-shadow: none;
}

.cf__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cf__submit { position: relative; min-width: 240px; justify-content: center; }
.cf__submit:disabled { cursor: not-allowed; }
.cf__spinner {
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid transparent;
  border-top-color: #000;
  border-radius: 50%;
  opacity: 0;
  animation: spinSlow 0.8s linear infinite;
}
.cf__submit.is-loading .btn__label,
.cf__submit.is-loading .btn__arrow { opacity: 0; }
.cf__submit.is-loading .cf__spinner { opacity: 1; }

.cf__small {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  max-width: 32ch;
  line-height: 1.6;
}

.cf__status {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  min-height: 1em;
  color: var(--muted);
}
.cf__status.is-error { color: var(--neon-1); text-shadow: var(--glow-mg); }
.cf__status.is-info { color: var(--neon-2); text-shadow: var(--glow-cy); }

.cf__success {
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s var(--ease-out);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  border: 1px solid var(--neon-3);
}
.contact-form.is-sent .cf__success { opacity: 1; pointer-events: auto; }
.cf__success-icon { color: var(--neon-3); margin-bottom: 24px; filter: drop-shadow(0 0 12px var(--neon-3)); }
.cf__success-icon svg circle, .cf__success-icon svg path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.contact-form.is-sent .cf__success-icon svg circle { animation: drawStroke 1s var(--ease-out) forwards; }
.contact-form.is-sent .cf__success-icon svg path { animation: drawStroke 0.6s var(--ease-out) 0.5s forwards; }
@keyframes drawStroke { to { stroke-dashoffset: 0; } }

.cf__success h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  text-shadow: var(--glow-lm);
}
.cf__success h3::before { content: ">> "; color: var(--neon-3); }
.cf__success p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.cf__success a { color: var(--neon-2); border-bottom: 1px solid var(--neon-2); text-shadow: var(--glow-cy); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 0 clamp(20px, 5vw, 80px) 30px;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer__massive {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 12.5vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--neon-2);
  margin: 60px 0 40px;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  filter: drop-shadow(0 0 24px rgba(0, 240, 255, 0.2));
}
.footer__massive span {
  display: inline-block;
  background: linear-gradient(90deg, transparent 50%, var(--neon-1) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--neon-2);
  transition: background-position 1.2s var(--ease);
}
.footer__massive:hover span { background-position: 0% 0; -webkit-text-stroke: 1px var(--neon-1); }

.footer__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .footer__row { grid-template-columns: 1fr; text-align: left; } }
.footer__small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.muted { color: var(--muted); }
.footer__nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.footer__nav a:hover { color: var(--neon-1); text-shadow: var(--glow-mg); }
.footer__row > p:last-child { text-align: right; }
@media (max-width: 720px) {
  .footer__row > p:last-child { text-align: left; }
  .footer__nav { justify-content: flex-start; }
}

/* ============================================================
   GLITCH TEXT EFFECT
   ============================================================ */
[data-glitch] {
  position: relative;
}
.glitching .word {
  animation: textGlitch 0.18s steps(2) infinite;
}
@keyframes textGlitch {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2px, 1px); }
  40%  { transform: translate(2px, -1px); }
  60%  { transform: translate(-1px, -1px); }
  80%  { transform: translate(1px, 1px); }
  100% { transform: translate(0, 0); }
}

/* ============================================================
   ANIMATION HELPERS
   ============================================================ */
[data-fade] { opacity: 0; transform: translateY(30px); }
[data-reveal] { overflow: hidden; }

body.is-loading { overflow: hidden; }

/* Skip the boot-loader curtain on mobile — never flashes visible, body stays scrollable. */
@media (max-width: 720px) {
  .loader { display: none !important; }
  body.is-loading { overflow: visible; }
}

/* ============================================================
   ACCESSIBILITY — skip link
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 10px 18px;
  background: var(--neon-2);
  color: #000;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 8px; outline: 2px solid var(--neon-1); }

/* ============================================================
   HUD CLICK-TO-CALL
   ============================================================ */
.hud__call {
  color: var(--neon-1);
  text-shadow: 0 0 6px rgba(255, 46, 154, 0.5);
  transition: color .3s, text-shadow .3s;
}
.hud__call:hover { color: #fff; text-shadow: var(--glow-mg); }

/* ============================================================
   NAV — actions cluster + click-to-call
   ============================================================ */
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--neon-1);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--neon-1);
  background: rgba(255, 46, 154, 0.05);
  text-shadow: 0 0 6px rgba(255, 46, 154, 0.35);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .3s, text-shadow .3s;
}
.nav__call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neon-1);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
  z-index: -1;
}
.nav__call:hover { color: #000; text-shadow: none; }
.nav__call:hover::before { transform: translateX(0); }
.nav__call svg { flex-shrink: 0; }
.nav__call span { white-space: nowrap; }

@media (max-width: 640px) {
  .nav__cta { display: none; }
}

/* ============================================================
   HERO — keyword kicker + dual CTA
   ============================================================ */
.hero__kicker {
  display: block;
  font-family: var(--mono);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-2);
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
  margin-bottom: clamp(14px, 2vh, 24px);
  -webkit-text-fill-color: var(--neon-2);
}
.hero__kicker::before { content: "// "; color: var(--neon-1); }

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn--ghost {
  background: transparent;
  color: var(--neon-2);
  border: 1px solid var(--neon-2);
  box-shadow: none;
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neon-2);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn--ghost:hover { color: #000; }
.btn--ghost:hover::before { transform: translateY(0); }

@media (max-width: 480px) {
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1 1 100%; justify-content: center; }
}

/* ============================================================
   SERVICES — footer CTA strip
   ============================================================ */
.services__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.services__foot p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  max-width: 26ch;
  line-height: 1.25;
}

/* ============================================================
   SERVICE AREA — Victoria HUD map
   ============================================================ */
.area__head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--neon-2);
  margin-bottom: 40px;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
}
.area__intro { margin-bottom: 56px; max-width: 60ch; }
.area__intro h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.area__intro h2 em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  transform: skewX(-6deg);
  display: inline-block;
}
.area__intro p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.area__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: stretch;
}
@media (max-width: 900px) { .area__grid { grid-template-columns: 1fr; gap: 36px; } }

.area__map {
  position: relative;
  margin: 0;
  padding: 22px 22px 16px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 48% 58%, rgba(0, 240, 255, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(0, 240, 255, 0.02), rgba(255, 46, 154, 0.015));
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  overflow: hidden;
}
.area__map::after {
  content: "";
  position: absolute;
  top: -1px; left: 18px;
  width: 80px; height: 1px;
  background: var(--neon-2);
  box-shadow: var(--glow-cy);
}
.area__map-tag {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-2);
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
  margin-bottom: 8px;
}
.area__map-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

.vic-map { width: 100%; height: auto; display: block; overflow: visible; }
.vic-grid line { stroke: rgba(0, 240, 255, 0.07); stroke-width: 1; }
.vic-land {
  fill: url(#vicFill);
  stroke: var(--neon-2);
  stroke-width: 2;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.35));
}
.vic-links line {
  stroke: rgba(0, 240, 255, 0.35);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  animation: vicDash 18s linear infinite;
}
@keyframes vicDash { to { stroke-dashoffset: -200; } }

.vic-ring {
  fill: none;
  stroke: rgba(0, 240, 255, 0.18);
  stroke-width: 1;
}
.vic-sweep { transform-origin: 476px 320px; animation: vicSweep 6s linear infinite; }
@keyframes vicSweep { to { transform: rotate(360deg); } }

.vic-node__dot {
  fill: var(--neon-2);
  filter: drop-shadow(0 0 5px var(--neon-2));
}
.vic-node__pulse {
  fill: var(--neon-2);
  opacity: 0.35;
  transform-box: fill-box;
  transform-origin: center;
  animation: vicPulse 2.4s ease-in-out infinite;
}
.vic-node text {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  fill: var(--ink);
  text-transform: uppercase;
}
.vic-node--hub .vic-node__dot { fill: var(--neon-1); filter: drop-shadow(0 0 8px var(--neon-1)); }
.vic-node--hub .vic-node__pulse { fill: var(--neon-1); }
.vic-node--hub text { fill: var(--neon-1); font-size: 15px; text-shadow: var(--glow-mg); }
@keyframes vicPulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%      { transform: scale(2.1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .vic-sweep, .vic-node__pulse, .vic-links line { animation: none !important; }
}
@media (max-width: 600px) { .vic-node text { font-size: 16px; } }

.area__panel {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.area__panel-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.area__regions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.area__regions li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
}
.area__regions li::before {
  content: "▸";
  color: var(--neon-2);
  text-shadow: var(--glow-cy);
  font-size: 12px;
}
.area__panel-note {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.area__panel-cta { align-self: flex-start; margin-top: 4px; }
@media (max-width: 480px) { .area__panel-cta { width: 100%; justify-content: center; } }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq__head {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .faq__head { grid-template-columns: 1fr; gap: 20px; align-items: start; } }
.faq__head .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--neon-2);
  text-shadow: var(--glow-cy);
}
.faq__head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.faq__head h2 em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  display: inline-block;
  transform: skewX(-6deg);
}
.faq__intro {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  max-width: 44ch;
}

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 8px 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(19px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
  transition: color .3s, padding-left .4s var(--ease-out);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__item:hover .faq__q { color: var(--neon-2); padding-left: 14px; }
.faq__item[open] .faq__q { color: var(--neon-2); text-shadow: 0 0 10px rgba(0, 240, 255, 0.25); }

.faq__icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--neon-2);
  box-shadow: var(--glow-cy);
  transition: transform .35s var(--ease-out), opacity .35s;
}
.faq__icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__item[open] .faq__icon::before { background: var(--neon-1); box-shadow: var(--glow-mg); }

.faq__a {
  overflow: hidden;
  padding: 0 60px 30px 0;
  max-width: 70ch;
}
.faq__a p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.faq__a strong { color: var(--ink); font-weight: 600; }
.faq__a a { color: var(--neon-2); border-bottom: 1px solid var(--neon-2); text-shadow: var(--glow-cy); }
.faq__a a:hover { color: var(--neon-1); border-color: var(--neon-1); text-shadow: var(--glow-mg); }
@media (max-width: 600px) { .faq__a { padding-right: 0; } }

/* ============================================================
   CTA — big click-to-call
   ============================================================ */
.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 8px;
  padding: 18px 34px;
  border: 1px solid var(--neon-1);
  background: rgba(255, 46, 154, 0.06);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .3s;
}
.cta__phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neon-1);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.cta__phone:hover::before { transform: translateY(0); }
.cta__phone svg { color: var(--neon-1); transition: color .3s; flex-shrink: 0; }
.cta__phone:hover svg { color: #000; }
.cta__phone-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-2);
  transition: color .3s;
}
.cta__phone-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color .3s;
}
.cta__phone:hover .cta__phone-label,
.cta__phone:hover .cta__phone-num { color: #000; }

/* ============================================================
   FLOATING CLICK-TO-CALL (FAB)
   ============================================================ */
.call-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--neon-1);
  color: #03030a;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--glow-mg), 0 8px 30px rgba(0, 0, 0, 0.4);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), visibility .4s;
}
.call-fab.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.call-fab:hover { background: var(--neon-2); box-shadow: var(--glow-cy), 0 8px 30px rgba(0, 0, 0, 0.4); }
.call-fab svg { flex-shrink: 0; animation: fabRing 2.6s ease-in-out infinite; }
@keyframes fabRing {
  0%, 70%, 100% { transform: rotate(0); }
  75% { transform: rotate(-12deg); }
  80% { transform: rotate(12deg); }
  85% { transform: rotate(-8deg); }
  90% { transform: rotate(8deg); }
}
@media (prefers-reduced-motion: reduce) { .call-fab svg { animation: none; } }
@media (max-width: 600px) {
  .call-fab {
    left: 16px; right: 16px;
    bottom: 16px;
    justify-content: center;
    padding: 16px;
    font-size: 14px;
  }
}

/* ============================================================
   SECTION JOURNEY — a distinct gradient per section
   ------------------------------------------------------------
   Each section flows into the next (its top colour ≈ the
   previous section's bottom) while owning a signature neon
   glow + a glowing "chapter" divider on top. The page reads as
   a guided journey, and the two key sections (Services and the
   final CTA) are made visually heavier so they stand out.
   Layer order in each `background`:
     1) top divider line   2) corner glow(s)   3) base gradient
   ============================================================ */

/* Gentle readability lift for body copy across the whole journey */
:root { --ink-soft: #aeaed0; }

/* HERO — stays atmospheric (live blobs show through), with a soft
   landing glow at the base so it melts into the marquee below. */
.hero {
  background:
    radial-gradient(120% 60% at 50% 120%, rgba(0, 240, 255, 0.06), transparent 60%);
}

/* MARQUEE — opaque bridge strip between hero and the journey */
.marquee {
  background:
    linear-gradient(90deg, transparent, rgba(255, 46, 154, 0.06), transparent),
    linear-gradient(180deg, #050410, #08040e);
}

/* 01 · PROBLEM — magenta tension */
.problem {
  background:
    linear-gradient(90deg, transparent, rgba(255, 46, 154, 0.45), transparent) top/100% 1px no-repeat,
    radial-gradient(90% 70% at 88% -8%, rgba(255, 46, 154, 0.13), transparent 60%),
    linear-gradient(180deg, #05040e 0%, #0c0512 100%);
}

/* 02 · STATS — cyan proof / data */
.stats {
  background:
    linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.45), transparent) top/100% 1px no-repeat,
    radial-gradient(90% 70% at 10% -8%, rgba(0, 240, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #0c0512 0%, #05080f 100%);
}

/* 03 · SERVICES — IMPORTANT: elevated indigo panel, dual glow */
.services {
  background:
    linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.6), transparent) top/100% 2px no-repeat,
    radial-gradient(80% 55% at 0% 0%, rgba(0, 240, 255, 0.12), transparent 55%),
    radial-gradient(80% 55% at 100% 100%, rgba(157, 0, 255, 0.16), transparent 55%),
    linear-gradient(180deg, #07071c 0%, #0b0a24 100%);
  box-shadow: inset 0 0 140px rgba(0, 240, 255, 0.04);
}

/* 04 · SERVICE AREA — teal/lime network coverage */
.area {
  background:
    linear-gradient(90deg, transparent, rgba(164, 255, 0, 0.4), transparent) top/100% 1px no-repeat,
    radial-gradient(80% 60% at 95% 5%, rgba(0, 240, 255, 0.12), transparent 55%),
    radial-gradient(70% 60% at 0% 100%, rgba(164, 255, 0, 0.10), transparent 55%),
    linear-gradient(180deg, #05101a 0%, #03110e 100%);
}

/* 05 · FEED — magenta/violet social */
.insta {
  background:
    linear-gradient(90deg, transparent, rgba(255, 46, 154, 0.45), transparent) top/100% 1px no-repeat,
    radial-gradient(85% 65% at 90% 0%, rgba(255, 46, 154, 0.13), transparent 60%),
    radial-gradient(70% 60% at 5% 95%, rgba(157, 0, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #03110e 0%, #120514 100%);
}

/* 06 · ABOUT — calm violet */
.about {
  background:
    linear-gradient(90deg, transparent, rgba(157, 0, 255, 0.4), transparent) top/100% 1px no-repeat,
    radial-gradient(90% 70% at 50% -8%, rgba(157, 0, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #120514 0%, #08041a 100%);
}

/* 07 · FAQ — cyan clarity */
.faq {
  background:
    linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.45), transparent) top/100% 1px no-repeat,
    radial-gradient(90% 70% at 12% -8%, rgba(0, 240, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #08041a 0%, #04070f 100%);
}

/* CTA — IMPORTANT: the destination. Strongest, brightest burst. */
.cta {
  background:
    linear-gradient(90deg, transparent, rgba(255, 46, 154, 0.6), transparent) top/100% 2px no-repeat,
    linear-gradient(180deg, #04070f 0%, #100416 100%);
  box-shadow: inset 0 0 160px rgba(255, 46, 154, 0.05);
}
.cta::before {
  background:
    radial-gradient(circle at 50% 110%, rgba(255, 46, 154, 0.22), transparent 60%),
    radial-gradient(circle at 50% -10%, rgba(0, 240, 255, 0.16), transparent 60%);
}

/* Footer melts back to the deep base (blobs visible again) */
.footer {
  background: linear-gradient(180deg, #100416 0%, var(--bg) 40%);
}

/* On phones the radial corner glows are wider relative to the
   viewport — soften them a touch so text stays high-contrast. */
@media (max-width: 600px) {
  .services, .cta { box-shadow: none; }
}

/* ============================================================
   THE PLAN (StoryBrand step) — premium 3-step process
   ============================================================ */
.plan {
  background:
    linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.6), transparent) top/100% 2px no-repeat,
    radial-gradient(70% 55% at 50% -10%, rgba(0, 240, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #0b0a24 0%, #05101a 100%);
}

.plan__head {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .plan__head { grid-template-columns: 1fr; gap: 20px; align-items: start; } }
.plan__head .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--neon-2);
  text-shadow: var(--glow-cy);
}
.plan__head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.plan__head h2 em {
  font-style: normal;
  color: var(--neon-1);
  text-shadow: var(--glow-mg);
  display: inline-block;
  transform: skewX(-6deg);
}
.plan__intro {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  max-width: 44ch;
}

.plan__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
@media (max-width: 900px) { .plan__steps { grid-template-columns: 1fr; gap: 18px; } }

.plan__step {
  position: relative;
  padding: 42px 34px 38px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.04), rgba(157, 0, 255, 0.02));
  backdrop-filter: blur(4px);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .4s, background .4s;
}
.plan__step:hover {
  transform: translateY(-6px);
  border-color: var(--neon-2);
  box-shadow: 0 18px 50px rgba(0, 240, 255, 0.12);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.07), rgba(157, 0, 255, 0.03));
}

/* glowing connector between steps (desktop) */
@media (min-width: 901px) {
  .plan__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 68px;
    right: -28px;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-2), transparent);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
    z-index: 2;
  }
}

.plan__step-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--neon-2);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.25));
  transition: color .4s;
}
.plan__step:hover .plan__step-num { color: rgba(0, 240, 255, 0.12); }
.plan__step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.plan__step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.plan__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.plan__cta-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan__cta-note a { color: var(--neon-2); text-shadow: var(--glow-cy); }
.plan__cta-note a:hover { color: var(--neon-1); text-shadow: var(--glow-mg); }

/* ============================================================
   CTA — success vision line (StoryBrand)
   ============================================================ */
.cta__vision {
  max-width: 56ch;
  margin: 0 auto 40px;
  font-family: var(--sans);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   PREMIUM POLISH — refine global texture for a high-end feel
   (keeps the cyberpunk elements, just less visual noise)
   ============================================================ */
.noise { opacity: 0.035; }
.scanlines { opacity: 0.5; }

/* ============================================================
   DETAILED VICTORIA MAP — graticule, river, rings, compass, scale
   ============================================================ */
/* recentre the radar sweep on the new Melbourne coordinates */
.vic-sweep { transform-origin: 446px 437px; }

.vic-grat line { stroke: rgba(0, 240, 255, 0.07); stroke-width: 1; stroke-dasharray: 2 7; }
.vic-grat text {
  fill: rgba(0, 240, 255, 0.4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.vic-river {
  fill: none;
  stroke: rgba(64, 196, 255, 0.6);
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-dasharray: 1 5;
  filter: drop-shadow(0 0 3px rgba(0, 150, 255, 0.55));
}
.vic-river-label {
  fill: rgba(90, 205, 255, 0.6);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vic-ring-label {
  fill: rgba(0, 240, 255, 0.45);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.vic-compass circle { fill: none; stroke: rgba(0, 240, 255, 0.3); stroke-width: 1; }
.vic-compass line { stroke: rgba(0, 240, 255, 0.45); stroke-width: 1; }
.vic-compass path { fill: var(--neon-1); filter: drop-shadow(0 0 4px var(--neon-1)); }
.vic-compass text {
  fill: var(--neon-2);
  font-family: var(--mono);
  font-size: 13px;
  text-anchor: middle;
  text-shadow: var(--glow-cy);
}

.vic-scale line { stroke: rgba(0, 240, 255, 0.6); stroke-width: 1.5; }
.vic-scale text {
  fill: rgba(230, 230, 240, 0.7);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.vic-coord {
  fill: var(--neon-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* ============================================================
   SERVICES — "advertise it" upgrade: per-service accent, a punchy
   hook, eye-catching proof stats, and a clear CTA on every service.
   ============================================================ */
.services__list .service:nth-child(1) { --svc: #00f0ff; }  /* social  */
.services__list .service:nth-child(2) { --svc: #ff2e9a; }  /* ads     */
.services__list .service:nth-child(3) { --svc: #b14bff; }  /* video   */
.services__list .service:nth-child(4) { --svc: #a4ff00; }  /* web     */
.services__list .service:nth-child(5) { --svc: #ffd400; }  /* brand   */

.service__index { color: var(--svc, var(--neon-2)); text-shadow: 0 0 10px var(--svc); }
.service__kicker { color: var(--svc, var(--neon-3)); text-shadow: 0 0 8px var(--svc); }
.service:hover .service__title { text-shadow: -2px 0 0 var(--svc), 2px 0 0 rgba(0, 240, 255, 0.55); }
.service:hover .vis { border-color: var(--svc); }

.service__hook {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--svc, var(--ink));
  margin: -4px 0 16px;
  text-shadow: 0 0 16px var(--svc);
}

.service__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}
.service__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--svc, var(--neon-2));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: transform .35s var(--ease-out), background .35s;
}
.service:hover .service__stat { transform: translateY(-3px); background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent); }
.service__stat b {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--svc, var(--neon-2));
  text-shadow: 0 0 14px var(--svc);
}
.service__stat span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 19ch;
}

.service__foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--svc, var(--neon-2));
  color: var(--svc, var(--neon-2));
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: color .3s, box-shadow .3s;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.service__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--svc, var(--neon-2));
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
  z-index: -1;
}
.service__cta:hover { color: #03030a; box-shadow: 0 0 22px var(--svc); }
.service__cta:hover::before { transform: translateX(0); }
.service__cta svg { transition: transform .35s var(--ease); }
.service__cta:hover svg { transform: translate(3px, -3px); }

@media (max-width: 900px) {
  .service__cta { width: 100%; justify-content: center; }
  .service__stat { flex: 1 1 calc(50% - 12px); }
}

.vic-node text { font-size: 12px; }
.vic-node--hub text { font-size: 14px; }
@media (max-width: 600px) {
  .vic-node text { font-size: 15px; }
  .vic-node--hub text { font-size: 17px; }
  .vic-grat text, .vic-ring-label, .vic-river-label, .vic-scale text, .vic-coord { font-size: 13px; }
}

/* ============================================================
   SCROLL-FOCUS — sections fade away off-centre so the eye locks
   onto the section the visitor is actually reading (set via JS).
   Hero/Footer excluded. Falls back to fully visible if JS/motion off.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  body.scroll-focus main > section {
    will-change: opacity, transform;
    transition: opacity .22s ease-out;
    backface-visibility: hidden;
  }
}

/* ============================================================
   FREE GUIDES — reciprocity / lead magnets
   ============================================================ */
.guides__head {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .guides__head { grid-template-columns: 1fr; gap: 20px; align-items: start; } }
.guides__head .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--neon-2); text-shadow: var(--glow-cy); }
.guides__head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 6vw, 88px); line-height: 1;
  letter-spacing: -0.02em; text-transform: uppercase;
}
.guides__head h2 em { font-style: normal; color: var(--neon-3); text-shadow: var(--glow-lm); display: inline-block; transform: skewX(-6deg); }
.guides__intro { color: var(--ink-soft); font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55; max-width: 46ch; }
.guides__intro strong { color: var(--neon-3); font-weight: 600; text-shadow: var(--glow-lm); }

.guides__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .guides__grid { grid-template-columns: 1fr; gap: 18px; } }

.guide {
  display: flex; flex-direction: column; gap: 14px;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--neon-3);
  background: linear-gradient(180deg, rgba(164, 255, 0, 0.04), transparent);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.guide:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(164, 255, 0, 0.1); }
.guide__tag {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #03030a; background: var(--neon-3); padding: 5px 12px; font-weight: 600;
  box-shadow: var(--glow-lm);
}
.guide h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 1.9vw, 26px); line-height: 1.1;
  letter-spacing: -0.01em; text-transform: uppercase; color: var(--ink);
}
.guide p { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.guide__cta {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--neon-3); padding-bottom: 3px; border-bottom: 1px solid var(--neon-3);
  text-shadow: var(--glow-lm); transition: gap .3s, color .3s;
}
.guide__cta:hover { gap: 14px; color: var(--ink); }
.guides__note {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase;
}
.guides__note strong { color: var(--neon-3); }

/* ============================================================
   PROOF STRIP — social proof (1.2M+ views)
   ============================================================ */
.proof-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin: 0 0 50px;
  border: 1px solid var(--line);
  background: var(--line);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  overflow: hidden;
}
@media (max-width: 700px) { .proof-strip { grid-template-columns: repeat(2, 1fr); } }
.proof-stat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 28px 26px;
  background: var(--bg-2);
  transition: background .4s;
}
.proof-stat:hover { background: rgba(255, 46, 154, 0.05); }
.proof-stat b {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 4.5vw, 56px); line-height: 0.9; letter-spacing: -0.02em;
  color: var(--ink);
  text-shadow: -1px 0 0 rgba(255, 46, 154, 0.4), 1px 0 0 rgba(0, 240, 255, 0.4);
}
.proof-stat:nth-child(1) b { color: var(--neon-1); text-shadow: var(--glow-mg); }
.proof-stat span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}

/* ============================================================
   PRICING — scarcity, urgency, value + guarantee
   ============================================================ */
.pricing { overflow: hidden; }
.pricing__scarcity {
  display: flex; align-items: center; gap: 14px;
  max-width: 760px; margin: 0 auto 48px;
  padding: 16px 24px;
  border: 1px solid var(--neon-4);
  background: rgba(255, 247, 0, 0.05);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; line-height: 1.5; color: var(--ink);
  text-align: left;
}
.pricing__scarcity .pulse { background: var(--neon-4); box-shadow: 0 0 14px rgba(255, 247, 0, 0.6); flex-shrink: 0; }
.pricing__scarcity strong { color: var(--neon-4); text-shadow: 0 0 8px rgba(255, 247, 0, 0.5); }

.pricing__head {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px;
}
@media (max-width: 900px) { .pricing__head { grid-template-columns: 1fr; gap: 20px; align-items: start; } }
.pricing__head .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--neon-2); text-shadow: var(--glow-cy); }
.pricing__head h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(40px, 6vw, 88px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase;
}
.pricing__head h2 em { font-style: normal; color: var(--neon-1); text-shadow: var(--glow-mg); display: inline-block; transform: skewX(-6deg); }
.pricing__intro { color: var(--ink-soft); font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55; max-width: 46ch; }

.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; gap: 18px; } }

.tier {
  position: relative; display: flex; flex-direction: column;
  padding: 38px 32px 34px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.tier:hover { transform: translateY(-6px); border-color: var(--neon-2); box-shadow: 0 18px 50px rgba(0, 240, 255, 0.1); }
.tier--featured {
  border-color: var(--neon-1);
  background:
    linear-gradient(180deg, rgba(255, 46, 154, 0.06), transparent 60%),
    var(--bg-2);
  box-shadow: 0 0 40px rgba(255, 46, 154, 0.12);
}
.tier--featured:hover { border-color: var(--neon-1); box-shadow: 0 18px 60px rgba(255, 46, 154, 0.2); }
.tier__badge {
  position: absolute; top: -1px; right: 22px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  color: #03030a; background: var(--neon-1); padding: 6px 12px; box-shadow: var(--glow-mg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.tier__name {
  font-family: var(--display); font-weight: 600; font-size: clamp(22px, 2vw, 28px);
  text-transform: uppercase; letter-spacing: -0.01em; color: var(--ink);
}
.tier--featured .tier__name { color: var(--neon-1); text-shadow: var(--glow-mg); }
.tier__tagline { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--neon-2); margin-top: 6px; }
.tier__price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 4px; }
.tier__price-from { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.tier__price b {
  font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5vw, 58px); line-height: 0.9;
  letter-spacing: -0.03em; color: var(--ink);
}
.tier__price-per { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
.tier__caveat { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--muted); margin: 2px 0 0; }
.tier__sell {
  display: flex; align-items: baseline; gap: 9px;
  margin: 18px 0 4px; padding: 11px 14px;
  border-left: 2px solid var(--neon-2);
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.07), transparent);
  font-family: var(--sans); font-size: 13px; line-height: 1.3; color: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}
.tier__sell b {
  font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2vw, 26px); line-height: 1;
  letter-spacing: -0.02em; color: var(--neon-2); text-shadow: var(--glow-cy); flex-shrink: 0;
}
.tier--featured .tier__sell { border-left-color: var(--neon-1); background: linear-gradient(90deg, rgba(255, 46, 154, 0.08), transparent); }
.tier--featured .tier__sell b { color: var(--neon-1); text-shadow: var(--glow-mg); }
.tier__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0 28px; flex: 1; }
.tier__list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.4; color: var(--ink-soft); }
.tier__list svg { flex-shrink: 0; margin-top: 3px; color: var(--neon-3); filter: drop-shadow(0 0 4px rgba(164, 255, 0, 0.5)); }
.tier__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--neon-2); color: var(--neon-2);
  position: relative; overflow: hidden; isolation: isolate;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: color .3s;
}
.tier__cta::before { content: ""; position: absolute; inset: 0; background: var(--neon-2); transform: translateX(-101%); transition: transform .4s var(--ease); z-index: -1; }
.tier__cta:hover { color: #03030a; }
.tier__cta:hover::before { transform: translateX(0); }
.tier--featured .tier__cta { background: var(--neon-1); color: #03030a; border-color: var(--neon-1); box-shadow: var(--glow-mg); }
.tier--featured .tier__cta::before { background: var(--neon-2); }
.tier--featured .tier__cta:hover { color: #03030a; }
.pricing__fine { text-align: center; margin-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); }

/* ============================================================
   GUARANTEE — risk-reversal seal + band
   ============================================================ */
.guarantee {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  margin-top: 50px; padding: 36px clamp(28px, 4vw, 48px);
  border: 1px solid var(--neon-3);
  background: linear-gradient(135deg, rgba(164, 255, 0, 0.06), rgba(0, 240, 255, 0.03));
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
@media (max-width: 820px) { .guarantee { grid-template-columns: 1fr; gap: 22px; text-align: left; } }
.guarantee__seal {
  position: relative; width: 104px; height: 104px; flex-shrink: 0;
  display: grid; place-items: center; text-align: center;
  border-radius: 50%;
  border: 2px solid var(--neon-3);
  background: radial-gradient(circle, rgba(164, 255, 0, 0.12), transparent 70%);
  box-shadow: var(--glow-lm), inset 0 0 18px rgba(164, 255, 0, 0.15);
  animation: sealSpin 1s var(--ease-out);
}
.guarantee__seal b { font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 0.9; color: var(--neon-3); text-shadow: var(--glow-lm); }
.guarantee__seal span { font-family: var(--mono); font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neon-3); margin-top: 3px; }
@keyframes sealSpin { from { transform: rotate(-12deg) scale(0.9); opacity: 0; } to { transform: none; opacity: 1; } }
.guarantee__body h3 {
  font-family: var(--display); font-weight: 600; font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1; letter-spacing: -0.01em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px;
}
.guarantee__body h3 em { font-style: normal; color: var(--neon-3); text-shadow: var(--glow-lm); }
.guarantee__body p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
.guarantee__body p strong { color: var(--ink); }
.guarantee .btn { flex-shrink: 0; }
@media (max-width: 820px) { .guarantee__seal { margin: 0; } }

/* ============================================================
   ACCESSIBILITY — screen-reader-only text
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================================
   QUICK CALLBACK FORM (above the call sign)
   ============================================================ */
/* Lead-capture band near the top of the page */
.leadband {
  padding: clamp(30px, 4.5vw, 52px) clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(130% 100% at 50% 0%, rgba(0, 240, 255, 0.05), transparent 70%);
}
.leadband .quickform { margin: 0 auto; }
.leadband .quickform__title { font-size: 13.5px; }

.quickform {
  max-width: 640px;
  margin: 0 auto 30px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--neon-2);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.05), transparent);
  backdrop-filter: blur(6px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  text-align: left;
}
.quickform__title {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--ink-soft); text-align: center; margin-bottom: 14px;
}
.quickform__title strong { color: var(--neon-2); text-shadow: 0 0 8px rgba(0, 240, 255, 0.4); }
.quickform__row { display: flex; gap: 10px; flex-wrap: wrap; }
.quickform__field { flex: 1 1 150px; }
.quickform__field input {
  width: 100%;
  background: rgba(3, 3, 10, 0.5);
  border: 1px solid var(--line);
  color: var(--ink);
  font: 400 15px/1.4 var(--mono);
  padding: 13px 14px; outline: none;
  caret-color: var(--neon-1);
  transition: border-color .3s, box-shadow .3s;
}
@media (max-width: 720px) { .quickform__field input { cursor: auto; } }
.quickform__field input::placeholder { color: var(--muted); }
.quickform__field input:focus { border-color: var(--neon-2); box-shadow: 0 0 0 1px var(--neon-2); }
.quickform__btn {
  flex: 0 0 auto;
  padding: 13px 24px;
  background: var(--neon-2); color: #03030a;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background .3s, color .3s;
}
.quickform__btn:hover { background: var(--neon-1); color: #fff; }
.quickform__btn.is-loading { color: transparent; }
.quickform__spin {
  position: absolute; top: 50%; left: 50%; width: 16px; height: 16px; margin: -8px 0 0 -8px;
  border: 2px solid transparent; border-top-color: #03030a; border-radius: 50%;
  opacity: 0; animation: spinSlow .8s linear infinite;
}
.quickform__btn.is-loading .quickform__spin { opacity: 1; }
.quickform__status {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em;
  margin-top: 10px; min-height: 1em; color: var(--ink-soft);
}
.quickform__status.is-error { color: var(--neon-1); text-shadow: var(--glow-mg); }
.quickform__status.is-ok { color: var(--neon-3); text-shadow: var(--glow-lm); }
@media (max-width: 520px) {
  .quickform__btn { flex: 1 1 100%; justify-content: center; }
}

/* ============================================================
   SPIN TO WIN — gamified offer wheel
   ============================================================ */
.spin { text-align: center; overflow: hidden; }
.spin__head { max-width: 660px; margin: 0 auto 50px; }
.spin__bonus {
  display: inline-block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--neon-3); text-shadow: var(--glow-lm); margin-bottom: 18px;
}
.spin__bonus::before { content: "★ "; }
.spin__head h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(40px, 7vw, 92px);
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 18px;
}
.spin__head h2 em { font-style: normal; color: var(--neon-3); text-shadow: var(--glow-lm); display: inline-block; transform: skewX(-6deg); }
.spin__intro { color: var(--ink-soft); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55; max-width: 52ch; margin: 0 auto; }
.spin__intro strong { color: var(--neon-3); }

.spin__stage {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 70px); flex-wrap: wrap;
}
.spin__wheel-wrap { position: relative; width: clamp(260px, 36vw, 380px); flex-shrink: 0; }
.spin__pointer {
  position: absolute; top: -4px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 0; height: 0;
  border-left: 13px solid transparent; border-right: 13px solid transparent;
  border-top: 22px solid var(--neon-1);
  filter: drop-shadow(0 0 6px var(--neon-1));
}
.spin__wheel { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 28px rgba(0, 240, 255, 0.22)); }
.spin__rotor {
  transform-box: view-box; transform-origin: 100px 100px;
  transition: transform 4.6s cubic-bezier(.17, .67, .16, .99);
}
.spin__rotor text {
  fill: #fff; font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  text-anchor: middle; dominant-baseline: middle; letter-spacing: 0.03em;
  paint-order: stroke; stroke: rgba(3, 3, 10, 0.6); stroke-width: 2px;
}
.spin__rotor .seg { stroke: rgba(3, 3, 10, 0.55); stroke-width: 1; }
.spin__hub { fill: var(--bg-2); stroke: var(--neon-2); stroke-width: 2; }
.spin__hub-core { fill: var(--neon-1); filter: drop-shadow(0 0 6px var(--neon-1)); }

.spin__side { display: flex; flex-direction: column; align-items: center; gap: 16px; min-width: 240px; }
.spin__side-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neon-3); }
.spin__btn { min-width: 210px; justify-content: center; }
.spin__btn:disabled { opacity: 0.5; pointer-events: none; }
.spin__result { min-width: 240px; max-width: 320px; }
.spin__win {
  border: 1px solid var(--neon-3);
  background: rgba(164, 255, 0, 0.06);
  padding: 18px 20px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  animation: spinWin .5s var(--ease-out);
}
.spin__win-head { font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--neon-3); }
.spin__win b { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2vw, 24px); line-height: 1.1; color: var(--ink); margin: 8px 0 12px; }
.spin__win .spin__code {
  display: inline-block; font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em;
  color: var(--neon-2); border: 1px dashed var(--neon-2); padding: 6px 12px; margin-bottom: 12px;
  text-shadow: var(--glow-cy);
}
.spin__win small { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 14px; text-transform: uppercase; }
.spin__win .spin__claim {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: var(--neon-3); color: #03030a;
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
@keyframes spinWin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============================================================
   COOKIE / PRIVACY CONSENT NOTICE
   ============================================================ */
.cookie {
  position: fixed;
  left: clamp(12px, 3vw, 24px);
  bottom: clamp(12px, 3vw, 24px);
  z-index: 300;
  max-width: 420px;
  display: flex; flex-direction: column; gap: 14px;
  padding: 18px 20px;
  background: rgba(7, 7, 26, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--neon-2);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.55);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.cookie[hidden] { display: none; }
.cookie__text { font-family: var(--sans); font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.cookie__text strong { color: var(--neon-2); }
.cookie__text a { color: var(--neon-2); border-bottom: 1px solid var(--neon-2); }
.cookie__actions { display: flex; gap: 10px; align-items: center; }
.cookie__btn {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 18px; cursor: pointer;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}
.cookie__btn--accept { background: var(--neon-2); color: #03030a; font-weight: 600; border: 0; }
.cookie__btn--accept:hover { background: var(--neon-1); color: #fff; }
.cookie__btn--ghost { border: 1px solid var(--line); color: var(--ink-soft); }
.cookie__btn--ghost:hover { color: var(--neon-2); border-color: var(--neon-2); }
@media (max-width: 600px) {
  .cookie { left: 12px; right: 12px; bottom: 88px; max-width: none; }
}
@media (max-width: 720px) { .cookie__btn { cursor: pointer; } }

/* ============================================================
   LEGAL PAGES (privacy.html / terms.html)
   ============================================================ */
.legal {
  max-width: 820px; margin: 0 auto;
  padding: clamp(110px, 16vh, 170px) clamp(20px, 5vw, 40px) 110px;
  position: relative; z-index: 1;
}
.legal__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--neon-2); margin-bottom: 30px;
}
.legal__back:hover { color: var(--neon-1); text-shadow: var(--glow-mg); }
.legal h1 {
  font-family: var(--display); font-weight: 600; font-size: clamp(36px, 6vw, 64px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 14px;
}
.legal__updated { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 40px; letter-spacing: 0.06em; }
.legal h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.4vw, 28px);
  text-transform: uppercase; letter-spacing: -0.01em; color: var(--neon-2);
  margin: 44px 0 14px; text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.legal p, .legal li { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }
.legal p { margin-bottom: 16px; }
.legal ul { padding-left: 1.3em; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--ink); }
.legal a { color: var(--neon-2); border-bottom: 1px solid var(--neon-2); }
.legal a:hover { color: var(--neon-1); border-color: var(--neon-1); }

/* ============================================================
   REDUCED MOTION / ANTI-SEIZURE SAFEGUARD (WCAG 2.3.1 / 2.3.3)
   Kills flashing + motion for users who ask the OS to reduce it.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .scan-beam, .noise, .scanlines { display: none !important; }
  .spin__rotor { transition: none !important; }
  .blob { animation: none !important; }
}

/* ============================================================
   TRUST BAR — immediate credibility, just under the hero
   ============================================================ */
.trustbar {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 3vw, 48px); flex-wrap: wrap;
  padding: 26px clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.03), transparent);
}
.trustbar__item { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.trustbar__item b {
  font-family: var(--display); font-weight: 700; font-size: clamp(16px, 1.7vw, 23px);
  line-height: 1; letter-spacing: -0.01em; color: var(--ink);
}
.trustbar__item:first-child b { color: var(--neon-1); text-shadow: var(--glow-mg); }
.trustbar__item span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft);
}
.trustbar__sep { width: 1px; height: 32px; background: linear-gradient(180deg, transparent, var(--line), transparent); }
@media (max-width: 700px) { .trustbar { gap: 22px 30px; } .trustbar__sep { display: none; } }

/* ============================================================
   INDUSTRIES — who we work with (kept simple)
   ============================================================ */
.industries__head { margin-bottom: 44px; max-width: 60ch; }
.industries__label {
  display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--neon-2); text-shadow: var(--glow-cy); margin-bottom: 18px;
}
.industries__head h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(40px, 6vw, 92px);
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 18px;
}
.industries__head h2 em { font-style: normal; color: var(--neon-1); text-shadow: var(--glow-mg); display: inline-block; transform: skewX(-6deg); }
.industries__intro { color: var(--ink-soft); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; }

.industries__grid {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 900px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .industries__grid { grid-template-columns: 1fr; } }
.industry {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-family: var(--display); font-weight: 500; font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: -0.005em; color: var(--ink);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: border-color .35s, transform .35s var(--ease-out), background .35s;
}
.industry::before {
  content: ""; width: 9px; height: 9px; flex-shrink: 0;
  transform: rotate(45deg); transition: box-shadow .35s, transform .35s;
}
.industry:nth-child(4n+1)::before { background: var(--neon-2); box-shadow: var(--glow-cy); }
.industry:nth-child(4n+2)::before { background: var(--neon-1); box-shadow: var(--glow-mg); }
.industry:nth-child(4n+3)::before { background: var(--neon-3); box-shadow: var(--glow-lm); }
.industry:nth-child(4n+4)::before { background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.industry:hover { border-color: var(--neon-2); transform: translateY(-4px); background: rgba(0, 240, 255, 0.04); }
.industry:hover::before { transform: rotate(135deg) scale(1.1); }
.industries__note {
  margin-top: 32px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--muted); text-transform: uppercase;
}
.industries__note a { color: var(--neon-2); text-shadow: var(--glow-cy); }
.industries__note a:hover { color: var(--neon-1); text-shadow: var(--glow-mg); }

/* ============================================================
   READABILITY & FINESSE PASS — typographic polish + a11y focus
   ============================================================ */
p { text-wrap: pretty; }                 /* avoids ugly orphan lines */
h1, h2, h3, .hero__title, .cta__title, .problem__title { text-wrap: balance; }
section[id], .area, .pricing, .spin { scroll-margin-top: 92px; }   /* anchor offset under nav */

/* comfortable measure + leading for all body copy */
.problem__copy p, .about__col p, .services__intro, .guides__intro,
.pricing__intro, .spin__intro, .faq__a p, .industries__intro,
.area__intro p, .hero__sub p, .guide p, .tier__list li {
  line-height: 1.66;
}

/* visible keyboard focus (the cursor is hidden, so this matters for a11y) */
:focus-visible {
  outline: 2px solid var(--neon-2);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible, .btn:focus-visible,
.tier__cta:focus-visible, input:focus-visible, textarea:focus-visible {
  outline-offset: 4px;
}

/* ============================================================
   PRICING DEALS — CSS tick, soft badges, bonus value-stacks
   ============================================================ */
.tier__list li { gap: 11px; }
.tier__list li::before {
  content: "✓"; flex-shrink: 0; margin-top: 1px;
  font-family: var(--mono); font-weight: 700; font-size: 13px; line-height: 1.3;
  color: var(--neon-3); text-shadow: var(--glow-lm);
}
.tier__badge--soft {
  background: transparent;
  color: var(--neon-2);
  border: 1px solid var(--neon-2);
  box-shadow: none;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}
.tier__bonus {
  margin: 4px 0 22px;
  padding: 16px 18px;
  border: 1px dashed rgba(164, 255, 0, 0.5);
  background: linear-gradient(180deg, rgba(164, 255, 0, 0.07), transparent);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.tier--featured .tier__bonus { border-color: rgba(255, 46, 154, 0.5); background: linear-gradient(180deg, rgba(255, 46, 154, 0.08), transparent); }
.tier__bonus-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #03030a; background: var(--neon-3); padding: 4px 10px; margin-bottom: 10px;
  box-shadow: var(--glow-lm);
}
.tier__bonus-tag::before { content: "★ "; }
.tier--featured .tier__bonus-tag { background: var(--neon-1); box-shadow: var(--glow-mg); }
.tier__bonus p { font-size: 13.5px; line-height: 1.5; color: var(--ink); }
.tier__bonus-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.tier__bonus-list li {
  position: relative; padding-left: 18px;
  font-size: 13.5px; line-height: 1.45; color: var(--ink);
}
.tier__bonus-list li::before { content: "+"; position: absolute; left: 0; color: var(--neon-3); font-family: var(--mono); font-weight: 700; }
.tier--featured .tier__bonus-list li::before { color: var(--neon-1); }
.tier__bonus em, .tier__bonus-list em { font-style: normal; color: var(--neon-3); font-weight: 600; }
.tier--featured .tier__bonus em, .tier--featured .tier__bonus-list em { color: var(--neon-1); }

/* ============================================================
   GUARANTEE — epic, seamless risk-reversal band
   ============================================================ */
.guarantee {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(40px, 6vw, 78px) clamp(28px, 5vw, 64px);
  border: 1px solid rgba(164, 255, 0, 0.35);
  background:
    radial-gradient(115% 135% at 0% 0%, rgba(164, 255, 0, 0.13), transparent 52%),
    radial-gradient(115% 135% at 100% 100%, rgba(0, 240, 255, 0.10), transparent 52%),
    linear-gradient(180deg, rgba(7, 9, 20, 0.7), rgba(3, 3, 10, 0.7));
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
  overflow: hidden;
  box-shadow: 0 0 70px rgba(164, 255, 0, 0.09), inset 0 0 70px rgba(164, 255, 0, 0.04);
}
@media (max-width: 820px) { .guarantee { grid-template-columns: 1fr; justify-items: start; text-align: left; gap: 24px; } }

.guarantee__sheen {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.07) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: guaranteeSheen 8s ease-in-out infinite;
}
@keyframes guaranteeSheen { 0%, 45%, 100% { transform: translateX(-130%); } 70% { transform: translateX(130%); } }

.guarantee__seal {
  position: relative; z-index: 1;
  width: clamp(118px, 15vw, 168px); aspect-ratio: 1; flex-shrink: 0; margin: 0;
  display: grid; place-items: center;
  border: 0; border-radius: 0; background: none; box-shadow: none; animation: none;
}
.guarantee__ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.g-ring { fill: none; transform-origin: 60px 60px; transform-box: view-box; }
.g-ring--dash {
  stroke: var(--neon-3); stroke-width: 2; stroke-dasharray: 5 7; stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(164, 255, 0, 0.6)); animation: ringSpin 16s linear infinite;
}
.g-ring--solid { stroke: rgba(164, 255, 0, 0.22); stroke-width: 1; }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.guarantee__seal-text { text-align: center; }
.guarantee__seal-text b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 46px); line-height: 0.9; color: var(--neon-3); text-shadow: var(--glow-lm); }
.guarantee__seal-text span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--neon-3); }

.guarantee__body { position: relative; z-index: 1; }
.guarantee__eyebrow {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--neon-3); text-shadow: var(--glow-lm); margin-bottom: 14px;
}
.guarantee__body h3 {
  font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4.6vw, 58px);
  line-height: 0.98; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px;
}
.guarantee__body h3 em { font-style: normal; color: var(--neon-3); text-shadow: var(--glow-lm); }
.guarantee__body p { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.62; color: var(--ink-soft); max-width: 58ch; margin-bottom: 26px; }
.guarantee__body p strong { color: var(--neon-3); }
.guarantee__cta { margin-top: 2px; }

/* ============================================================
   CONTACT FORM — readability pass (bigger, clearer fields)
   ============================================================ */
.contact-form { gap: 30px; }
.cf__row { gap: 32px; }
.cf__field { gap: 9px; }
.cf__label { font-size: 11.5px; letter-spacing: 0.18em; }
.cf__field input, .cf__field textarea {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  padding: 11px 2px;
  transition: border-color .3s, box-shadow .3s;
}
.cf__field textarea { font-family: var(--sans); min-height: 130px; }
.cf__field input::placeholder, .cf__field textarea::placeholder { color: var(--muted); font-family: var(--sans); }
.cf__field input:focus, .cf__field textarea:focus { border-bottom-color: var(--neon-2); box-shadow: 0 1px 0 0 var(--neon-2); }
.cf__pill span { font-size: 11.5px; padding: 10px 17px; }
.cf__sub { color: var(--ink-soft); }

/* ============================================================
   GUIDES PAGE (guides.html) — readable lead-magnet articles
   ============================================================ */
.gpage { max-width: 880px; margin: 0 auto; padding: clamp(110px, 15vh, 165px) clamp(20px, 5vw, 40px) 100px; position: relative; z-index: 1; }
.gpage__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--neon-2); margin-bottom: 30px;
}
.gpage__back:hover { color: var(--neon-1); text-shadow: var(--glow-mg); }
.gpage__eyebrow { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--neon-3); text-shadow: var(--glow-lm); margin-bottom: 16px; }
.gpage__lead h1 {
  font-family: var(--display); font-weight: 600; font-size: clamp(38px, 7vw, 76px);
  line-height: 0.98; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 18px;
}
.gpage__lead h1 em { font-style: normal; color: var(--neon-1); text-shadow: var(--glow-mg); display: inline-block; transform: skewX(-6deg); }
.gpage__lead p { color: var(--ink-soft); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.65; max-width: 62ch; }
.gpage__lead p strong { color: var(--neon-3); }

.guidedoc { margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.guidedoc__tag {
  display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: #03030a; background: var(--neon-3);
  padding: 5px 12px; margin-bottom: 16px; box-shadow: var(--glow-lm);
}
.guidedoc h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(28px, 4.4vw, 50px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 16px;
}
.guidedoc__intro { color: var(--ink-soft); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; max-width: 62ch; }
.guidedoc h3 {
  font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.005em; color: var(--neon-2); text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
  margin: 34px 0 12px;
}
.guidedoc p, .guidedoc li { color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.guidedoc p { margin-bottom: 14px; max-width: 64ch; }
.guidedoc ol, .guidedoc ul { padding-left: 1.3em; margin-bottom: 14px; max-width: 64ch; }
.guidedoc li { margin-bottom: 10px; }
.guidedoc strong { color: var(--ink); }
.guidedoc__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.gdownload {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; background: var(--neon-3); color: #03030a;
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: box-shadow .3s, transform .3s;
}
.gdownload:hover { box-shadow: var(--glow-lm); transform: translateY(-2px); }
.gcall {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border: 1px solid var(--neon-2); color: var(--neon-2);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: color .3s, background .3s;
}
.gcall:hover { background: var(--neon-2); color: #03030a; }
.gpage__cta {
  margin-top: 70px; padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--neon-1);
  background: linear-gradient(135deg, rgba(255, 46, 154, 0.08), rgba(0, 240, 255, 0.04));
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  text-align: center;
}
.gpage__cta h2 { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 3.4vw, 40px); text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 12px; }
.gpage__cta h2 em { font-style: normal; color: var(--neon-1); text-shadow: var(--glow-mg); }
.gpage__cta p { color: var(--ink-soft); margin-bottom: 22px; max-width: 50ch; margin-left: auto; margin-right: auto; line-height: 1.6; }
.gpage__cta .btn { margin: 0 auto; }

/* ============================================================
   SERVICE STAT SOURCES — credibility line under each stat row
   ============================================================ */
.service__src {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--muted); margin: -10px 0 18px;
}
.service__src::before { content: "\21B3  "; color: var(--svc, var(--neon-2)); opacity: 0.85; }

/* ============================================================
   TESTIMONIALS — social proof (replace quotes with real ones)
   ============================================================ */
.testi__head { margin-bottom: 50px; max-width: 64ch; }
.testi__label {
  display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--neon-1); text-shadow: var(--glow-mg); margin-bottom: 18px;
}
.testi__head h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96; letter-spacing: -0.02em; text-transform: uppercase;
}
.testi__head h2 em { font-style: normal; color: var(--neon-1); text-shadow: var(--glow-mg); display: inline-block; transform: skewX(-6deg); }

.testi__intro { margin-top: 16px; color: var(--ink-soft); font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55; }
.testi__intro em { font-style: normal; color: var(--muted); }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .testi__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 600px) { .testi__grid { grid-template-columns: 1fr; } }

.testi__card {
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px 30px; margin: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 46, 154, 0.03), transparent);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.testi__card:hover { transform: translateY(-5px); border-color: var(--neon-1); box-shadow: 0 16px 44px rgba(255, 46, 154, 0.1); }
.testi__example {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); padding: 3px 8px;
}
.testi__stars { color: var(--neon-4); font-size: 15px; letter-spacing: 3px; text-shadow: 0 0 10px rgba(255, 247, 0, 0.5); }
.testi__card blockquote {
  font-family: var(--sans); font-weight: 400; font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6; color: var(--ink); border: 0; padding: 0; background: none; text-transform: none; flex: 1;
}
.testi__card figcaption { display: flex; flex-direction: column; gap: 3px; padding-top: 14px; border-top: 1px solid var(--line); }
.testi__card figcaption b { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--ink); }
.testi__card figcaption span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neon-2); }
.testi__note {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-soft); text-transform: uppercase;
}
.testi__note strong { color: var(--neon-1); text-shadow: var(--glow-mg); }
.testi__note .pulse { background: var(--neon-3); box-shadow: var(--glow-lm); }

/* ============================================================
   SUB-PAGES — restore native cursors (no custom-cursor JS here)
   ============================================================ */
body.subpage, body.subpage * { cursor: auto; }
body.subpage a, body.subpage button, body.subpage label.cf__pill, body.subpage [type="submit"] { cursor: pointer; }
body.subpage input, body.subpage textarea { cursor: text; }

/* ============================================================
   REFERRAL PAGE (refer.html) — $200 per closed sale
   ============================================================ */
.refer-top {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px clamp(20px, 5vw, 48px);
  background: rgba(3, 3, 10, 0.82); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.refer-top__back { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon-2); }
.refer-top__back:hover { color: var(--neon-1); text-shadow: var(--glow-mg); }

.refer {
  max-width: 760px; margin: 0 auto;
  padding: clamp(40px, 7vw, 76px) clamp(20px, 5vw, 40px) 70px;
  position: relative; z-index: 1;
}

.refer-kicker {
  display: inline-block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--neon-2); text-shadow: var(--glow-cy); margin-bottom: 18px;
}
.refer-kicker::before { content: "// "; color: var(--neon-1); }
.refer-hero h1 {
  font-family: var(--display); font-weight: 700; font-size: clamp(40px, 8vw, 78px);
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 22px; text-wrap: balance;
  text-shadow: -1px 0 0 rgba(255, 46, 154, 0.35), 1px 0 0 rgba(0, 240, 255, 0.35);
}
.refer-hero h1 em { font-style: normal; color: var(--neon-2); text-shadow: var(--glow-cy); }
.refer-lead { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.refer-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.refer-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  background: rgba(0, 240, 255, 0.04);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}
.refer-chip__tick { color: var(--neon-2); text-shadow: var(--glow-cy); }

.refer-offer {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr; gap: 4px 28px; align-items: center;
  margin: 40px 0; padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--neon-2);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(0, 240, 255, 0.14), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(157, 0, 255, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(7, 9, 20, 0.7), rgba(3, 3, 10, 0.7));
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.1);
}
.refer-offer__sheen { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.06) 50%, transparent 58%); transform: translateX(-130%); animation: guaranteeSheen 8s ease-in-out infinite; }
.refer-offer__price {
  font-family: var(--display); font-weight: 700; font-size: clamp(60px, 12vw, 116px); line-height: 0.82;
  letter-spacing: -0.04em; color: var(--neon-2); text-shadow: var(--glow-cy); position: relative; z-index: 1;
}
.refer-offer__body { display: flex; flex-direction: column; gap: 2px; position: relative; z-index: 1; border-left: 1px solid var(--line); padding-left: 24px; }
.refer-offer__small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--neon-2); }
.refer-offer__big { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 4vw, 40px); line-height: 1; text-transform: uppercase; color: var(--ink); }
.refer-offer__note { grid-column: 1 / -1; position: relative; z-index: 1; font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); margin-top: 8px; }
.refer-offer__note strong { color: var(--neon-2); text-shadow: 0 0 8px rgba(0, 240, 255, 0.4); }
@media (max-width: 540px) { .refer-offer { grid-template-columns: 1fr; } .refer-offer__body { border-left: 0; padding-left: 0; } }

.refer-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 26px; }
@media (max-width: 600px) { .refer-steps { grid-template-columns: 1fr; } }
.refer-step { padding: 24px 22px; border: 1px solid var(--line); background: var(--bg-2); clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); }
.refer-step__num { font-family: var(--display); font-weight: 700; font-size: 40px; line-height: 1; color: var(--neon-2); text-shadow: var(--glow-cy); display: block; margin-bottom: 10px; }
.refer-step h3 { font-family: var(--display); font-weight: 600; font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 6px; }
.refer-step p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

.refer-noselling {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 0 0 40px; padding: 14px 20px;
  border: 1px solid var(--neon-1); background: rgba(255, 46, 154, 0.06);
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.refer-noselling .pulse { background: var(--neon-1); box-shadow: var(--glow-mg); }

.refer-form-wrap { scroll-margin-top: 80px; }
.refer-formlabel { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon-2); text-shadow: var(--glow-cy); margin: 6px 0 2px; }
.refer-formlabel::before { content: ">> "; color: var(--neon-1); }
.refer-alt { margin-top: 22px; text-align: center; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-soft); }
.refer-alt a { color: var(--neon-1); text-shadow: var(--glow-mg); }

.refer-foot {
  position: relative; z-index: 1; text-align: center;
  padding: 30px 20px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; gap: 6px;
}
.refer-foot a { color: var(--ink-soft); }
.refer-foot a:hover { color: var(--neon-2); }

/* Referral CTA band in the main-page footer */
.footer__refer {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin: 0 0 32px; padding: 22px clamp(20px, 3vw, 32px);
  border: 1px solid var(--neon-2);
  background:
    radial-gradient(120% 200% at 100% 0%, rgba(0, 240, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(0, 240, 255, 0.04), transparent);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: border-color .35s, box-shadow .35s;
}
.footer__refer:hover { border-color: var(--neon-1); box-shadow: 0 0 40px rgba(0, 240, 255, 0.12); }
.footer__refer-text { display: flex; flex-direction: column; gap: 6px; }
.footer__refer-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--neon-2); text-shadow: var(--glow-cy); }
.footer__refer-line { font-family: var(--display); font-weight: 500; font-size: clamp(16px, 1.8vw, 22px); color: var(--ink); letter-spacing: -0.005em; }
.footer__refer-line strong { color: var(--neon-2); text-shadow: var(--glow-cy); font-weight: 700; }
.footer__refer-btn {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 14px 24px; background: var(--neon-2); color: #03030a;
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background .3s, color .3s;
}
.footer__refer:hover .footer__refer-btn { background: var(--neon-1); color: #fff; }
@media (max-width: 600px) { .footer__refer { flex-direction: column; align-items: flex-start; } .footer__refer-btn { width: 100%; justify-content: center; } }

/* Top-nav referral highlight button */
.nav__link--refer {
  color: var(--neon-3);
  border: 1px solid var(--neon-3);
  text-shadow: 0 0 8px rgba(164, 255, 0, 0.4);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: color .3s, background .3s, box-shadow .3s;
}
.nav__link--refer::before, .nav__link--refer::after { content: none; }
.nav__link--refer:hover { color: #03030a; background: var(--neon-3); text-shadow: none; box-shadow: var(--glow-lm); }
