/* ============================================================
   nodots.us — Full Design System
   Stack: HTML5 · CSS3 Grid/Flexbox · Vanilla JS
   Internal theme: Johnny Cyan (never appears in copy)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Backgrounds — OLED-first */
  --bg-oled:   #000000;
  --bg-void:   #04040e;
  --bg-dark:   #080814;
  --bg-card:   #0c0c1c;
  --bg-card2:  #111128;
  --bg-glass:  rgba(12, 12, 28, 0.75);

  /* Brand accents */
  --cyan:      #00f0ff;
  --cyan-mid:  #00c8d8;
  --magenta:   #ff00f0;
  --mag-mid:   #d400cc;

  /* Text */
  --white:     #ffffff;
  --white-dim: #c4cfe0;
  --gray-lt:   #7a889c;
  --gray:      #3d4658;

  /* Glow presets */
  --glow-c:    0 0 12px rgba(0,240,255,.8),  0 0 35px rgba(0,240,255,.3);
  --glow-m:    0 0 12px rgba(255,0,240,.8),  0 0 35px rgba(255,0,240,.3);
  --glow-c-xl: 0 0 25px rgba(0,240,255,.65), 0 0 70px rgba(0,240,255,.3), 0 0 120px rgba(0,240,255,.12);
  --glow-m-xl: 0 0 25px rgba(255,0,240,.65), 0 0 70px rgba(255,0,240,.3), 0 0 120px rgba(255,0,240,.12);
  --glow-tc:   0 0 10px rgba(0,240,255,.9),  0 0 28px rgba(0,240,255,.45);
  --glow-tm:   0 0 10px rgba(255,0,240,.9),  0 0 28px rgba(255,0,240,.45);

  /* Borders */
  --bdr-c:     1px solid rgba(0,240,255,.22);
  --bdr-m:     1px solid rgba(255,0,240,.22);
  --bdr-dim:   1px solid rgba(255,255,255,.06);

  /* Layout */
  --max-w:     1280px;
  --py:        5.5rem;
  --r:         12px;
  --r-lg:      20px;
  --nav-h:     70px;

  /* Easing */
  --ease:      0.25s cubic-bezier(.4,0,.2,1);
  --ease-slow: 0.5s  cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-oled);
  color: var(--white-dim);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Skip link (a11y) ───────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 200;
  padding: .5rem 1.25rem;
  background: var(--cyan); color: var(--bg-oled);
  border-radius: 0 0 var(--r) var(--r);
  font-weight: 700; font-size: .9rem;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.font-orb { font-family: 'Orbitron', monospace; letter-spacing: .05em; }
.text-cyan  { color: var(--cyan);    text-shadow: var(--glow-tc); }
.text-mag   { color: var(--magenta); text-shadow: var(--glow-tm); }
.text-dim   { color: var(--gray-lt); }
.text-center { text-align: center; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }
section { padding-block: var(--py); }

.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Orbitron', monospace;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .85rem;
}
.section-label::before {
  content: ''; width: 22px; height: 1px;
  background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
}
.section-label.mag { color: var(--magenta); }
.section-label.mag::before { background: var(--magenta); box-shadow: 0 0 6px var(--magenta); }

.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); margin-bottom: .9rem; }
.section-sub   { font-size: 1.05rem; color: var(--gray-lt); max-width: 580px; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.8rem;
  border-radius: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: .95rem;
  transition: var(--ease);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-cyan {
  background: transparent;
  color: var(--cyan);
  border: var(--bdr-c);
}
.btn-cyan:hover {
  background: rgba(0,240,255,.08);
  box-shadow: var(--glow-c);
  color: var(--white);
  border-color: var(--cyan);
}
.btn-magenta {
  background: linear-gradient(135deg, var(--magenta), var(--mag-mid));
  color: var(--white); border: none;
}
.btn-magenta:hover {
  box-shadow: var(--glow-m);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white-dim);
  border: var(--bdr-dim);
}
.btn-outline:hover { border-color: rgba(0,240,255,.3); color: var(--cyan); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: var(--bdr-dim);
  border-radius: var(--r); padding: 2rem;
  transition: var(--ease);
}
.card:hover {
  border-color: rgba(0,240,255,.22);
  box-shadow: 0 8px 40px rgba(0,240,255,.07);
  transform: translateY(-4px);
}
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: var(--bdr-dim); border-radius: var(--r); padding: 2rem;
}

/* ── Badges ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex; padding: .22rem .7rem;
  border-radius: 99px;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
}
.badge-cyan    { background: rgba(0,240,255,.1);  color: var(--cyan);    border: var(--bdr-c); }
.badge-mag     { background: rgba(255,0,240,.1);  color: var(--magenta); border: var(--bdr-m); }
.badge-feat {
  background: linear-gradient(90deg, rgba(0,240,255,.14), rgba(255,0,240,.14));
  color: var(--white); border: var(--bdr-c);
}

/* ── Icon boxes ──────────────────────────────────────────────── */
.icon-box {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r); font-size: 1.35rem;
  margin-bottom: 1.2rem; flex-shrink: 0;
}
.icon-box-c { background: rgba(0,240,255,.1);  color: var(--cyan);    box-shadow: inset 0 0 18px rgba(0,240,255,.07); }
.icon-box-m { background: rgba(255,0,240,.1);  color: var(--magenta); box-shadow: inset 0 0 18px rgba(255,0,240,.07); }

/* ── Divider ─────────────────────────────────────────────────── */
hr.divider {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,.18), transparent);
}

/* ── Form status ─────────────────────────────────────────────── */
.form-status { padding: .75rem 1rem; border-radius: var(--r); font-size: .9rem; display: none; }
.form-status--success { background: rgba(0,240,255,.1);  border: var(--bdr-c); color: var(--cyan); }
.form-status--error   { background: rgba(255,0,240,.1);  border: var(--bdr-m); color: var(--magenta); }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  NAV                                                     ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(4, 4, 14, .9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,240,255,.1);
}
.nav-inner {
  max-width: var(--max-w); height: 100%;
  margin-inline: auto; padding-inline: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  font-family: 'Orbitron', monospace; font-weight: 900; font-size: 1.35rem;
  color: var(--cyan); text-shadow: var(--glow-tc); letter-spacing: .05em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--white); text-shadow: none; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 500;
  color: var(--white-dim); transition: var(--ease);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  transition: width var(--ease);
}
.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: .5rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.hamburger span { width: 24px; height: 2px; background: var(--white-dim); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(4, 4, 14, .97);
  backdrop-filter: blur(20px);
  padding: 1.5rem; border-bottom: var(--bdr-c); z-index: 99;
  flex-direction: column; gap: .5rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--white-dim);
  padding: .85rem 0; border-bottom: var(--bdr-dim);
  transition: var(--ease);
}
.mobile-link:hover { color: var(--cyan); }
.mobile-cta { margin-top: .75rem; }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  HERO                                                    ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg-void);
  padding-top: var(--nav-h); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,240,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-c {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(0,240,255,.11) 0%, transparent 65%);
  top: -220px; right: -140px;
  animation: orbPulse 10s ease-in-out infinite alternate;
}
.hero-orb-m {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,0,240,.09) 0%, transparent 65%);
  bottom: -80px; left: 4%;
  animation: orbPulse 13s ease-in-out 3s infinite alternate-reverse;
}
/* Hero two-column grid */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem;
}
.hero-eyebrow-text {
  font-family: 'Orbitron', monospace;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan);
}
.hero-h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: 1.5rem;
}
.hero-h1 .ac { color: var(--cyan);    text-shadow: var(--glow-tc); }
.hero-h1 .am { color: var(--magenta); text-shadow: var(--glow-tm); }
.hero-desc {
  font-size: 1.02rem; color: var(--gray-lt);
  margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2.5rem; border-top: var(--bdr-dim);
}
.hero-stat-val {
  font-family: 'Orbitron', monospace;
  font-size: 1.55rem; font-weight: 700;
  color: var(--cyan); text-shadow: var(--glow-tc);
  display: block; margin-bottom: .2rem;
}
.hero-stat-lbl {
  font-size: .77rem; color: var(--gray-lt);
  text-transform: uppercase; letter-spacing: .09em;
}

/* ── Neon boot terminal ──────────────────────────────────── */
.hero-terminal-wrap { position: relative; z-index: 2; }

.boot-terminal {
  background: #010108;
  border: 1px solid rgba(0,240,255,.32);
  border-radius: var(--r-lg);
  padding: 0 1.5rem 1.5rem;
  font-family: 'Orbitron', monospace;
  font-size: .72rem;
  line-height: 1.9;
  color: var(--cyan);
  overflow-y: auto;
  max-height: 440px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,240,255,.06),
    0 0 30px rgba(0,240,255,.14),
    0 0 80px rgba(0,240,255,.07),
    inset 0 0 60px rgba(0,5,30,.6);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,240,255,.2) transparent;
}
/* CRT scanline overlay */
.boot-terminal::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,.07) 3px, rgba(0,0,0,.07) 4px
  );
  pointer-events: none; z-index: 1;
}
.boot-terminal-bar {
  display: flex; gap: .45rem; align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(0,240,255,.1);
  margin-bottom: 1rem;
  position: sticky; top: 0; background: #010108; z-index: 2;
}
.boot-dot { width: 10px; height: 10px; border-radius: 50%; }
.boot-dot:nth-child(1) { background: #ff5f56; }
.boot-dot:nth-child(2) { background: #ffbd2e; }
.boot-dot:nth-child(3) { background: #27c93f; }
.boot-terminal-title {
  flex: 1; text-align: center;
  font-size: .58rem; color: var(--gray); letter-spacing: .1em;
}
/* Individual line types */
.boot-line    { display: block; }
.boot-header  { color: var(--white); font-weight: 700; text-shadow: 0 0 8px rgba(0,240,255,.6); }
.boot-dim     { color: var(--gray-lt); }
.boot-ok      { color: #00e87a; }
.boot-section { color: var(--cyan); font-weight: 700; letter-spacing: .04em; }
.boot-svc     { color: var(--white-dim); }
.boot-active  { color: #00e87a; font-weight: 700; }
.boot-ready   { color: var(--magenta); text-shadow: var(--glow-tm); font-weight: 700; }
.boot-prompt  { color: var(--cyan); text-shadow: var(--glow-tc); }
.boot-cursor-b {
  display: inline-block; width: 7px; height: 13px;
  background: var(--cyan); vertical-align: middle;
  animation: blink .7s step-end infinite;
  box-shadow: 0 0 8px var(--cyan); margin-left: 1px;
}

/* ── Submit button outcome states ────────────────────────── */
.btn-sent {
  background: transparent !important;
  color: #00e87a !important;
  border: 1px solid rgba(0,232,122,.4) !important;
  box-shadow: 0 0 14px rgba(0,232,122,.35), 0 0 40px rgba(0,232,122,.12) !important;
  cursor: default;
}
.btn-failed {
  background: transparent !important;
  color: var(--magenta) !important;
  border: var(--bdr-m) !important;
  box-shadow: var(--glow-m) !important;
}

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  SERVICES                                                ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.services { background: var(--bg-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--bg-card); border: var(--bdr-dim);
  border-radius: var(--r); padding: 2rem;
  transition: var(--ease); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.svc-card:hover {
  border-color: rgba(0,240,255,.2);
  box-shadow: 0 0 0 1px rgba(0,240,255,.06), 0 20px 50px rgba(0,0,0,.5);
  transform: translateY(-5px);
}
.svc-card:hover::before { opacity: 1; }
.svc-card.featured {
  border-color: rgba(0,240,255,.18); background: var(--bg-card2);
}
.svc-card.featured::before { opacity: 1; }
.svc-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.svc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  margin-bottom: .6rem;
}
.svc-desc { font-size: .9rem; color: var(--gray-lt); line-height: 1.65; margin-bottom: 1.5rem; }
.svc-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem; font-weight: 600; color: var(--cyan);
  display: inline-flex; align-items: center; gap: .4rem; transition: var(--ease);
}
.svc-link:hover { gap: .7rem; text-shadow: var(--glow-tc); }
.svc-link-m { color: var(--magenta); }
.svc-link-m:hover { text-shadow: var(--glow-tm); }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  P2V SPOTLIGHT                                           ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.p2v { background: var(--bg-void); }
.p2v-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.p2v-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1.1rem; }
.p2v-desc { margin-bottom: 2rem; line-height: 1.75; }
.p2v-checklist {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem; margin-bottom: 2.5rem;
}
.p2v-check {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .9rem; color: var(--white-dim);
}
.p2v-check::before {
  content: '✓'; color: var(--cyan); text-shadow: var(--glow-tc);
  font-weight: 700; flex-shrink: 0; margin-top: .06rem;
}
/* Terminal mockup */
.p2v-terminal {
  background: #040410; border: var(--bdr-c);
  border-radius: var(--r-lg); padding: 2rem;
  font-family: 'Orbitron', monospace; font-size: .78rem;
  box-shadow: var(--glow-c-xl); position: relative; overflow: hidden;
}
.term-bar {
  display: flex; gap: .5rem; margin-bottom: 1.5rem; align-items: center;
}
.term-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.term-dot:nth-child(1) { background: #ff5f56; }
.term-dot:nth-child(2) { background: #ffbd2e; }
.term-dot:nth-child(3) { background: #27c93f; }
.term-title-bar {
  flex: 1; text-align: center; font-size: .65rem;
  color: var(--gray); letter-spacing: .1em;
}
.term-line { display: flex; gap: .75rem; margin-bottom: .55rem; align-items: baseline; }
.term-prompt { color: var(--cyan); flex-shrink: 0; }
.term-cmd    { color: var(--white); }
.term-out    { color: var(--gray-lt); padding-left: .75rem; display: block; margin-bottom: .4rem; font-size: .74rem; }
.term-ok     { color: #00ff88; }
.term-warn   { color: #ffbd2e; }
.term-cursor-b {
  display: inline-block; width: 8px; height: 13px;
  background: var(--cyan); vertical-align: middle;
  animation: blink .7s step-end infinite;
}

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  WHY US                                                  ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.why { background: var(--bg-dark); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.why-card {
  background: var(--bg-card); border: var(--bdr-dim);
  border-radius: var(--r); padding: 1.75rem; transition: var(--ease);
}
.why-card:hover { border-color: rgba(0,240,255,.2); box-shadow: 0 8px 30px rgba(0,240,255,.06); }
.why-icon   { font-size: 1.75rem; margin-bottom: 1rem; }
.why-title  { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .45rem; }
.why-desc   { font-size: .88rem; color: var(--gray-lt); line-height: 1.65; }

/* Stats bar */
.stats-bar {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  background: var(--bg-card2); border: var(--bdr-c);
  border-radius: var(--r-lg); padding: 2.5rem 3.5rem;
  text-align: center; box-shadow: var(--glow-c-xl); align-items: center;
}
.stat-val {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700;
  color: var(--cyan); text-shadow: var(--glow-tc);
  display: block; margin-bottom: .3rem;
}
.stat-lbl { font-size: .78rem; color: var(--gray-lt); text-transform: uppercase; letter-spacing: .09em; }
.stats-sep { width: 1px; height: 60px; background: rgba(0,240,255,.15); margin: auto; }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  PROCESS                                                 ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.process { background: var(--bg-void); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 1.6rem; left: calc(12.5% + 2rem); right: calc(12.5% + 2rem);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  opacity: .22; pointer-events: none;
}
.step-card { text-align: center; padding: 2rem 1rem; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,240,255,.14), rgba(255,0,240,.14));
  border: var(--bdr-c);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Orbitron', monospace; font-weight: 700; font-size: 1rem;
  color: var(--cyan); text-shadow: var(--glow-tc);
}
.step-title { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .45rem; }
.step-desc  { font-size: .87rem; color: var(--gray-lt); }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  TESTIMONIALS                                            ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.testimonials { background: var(--bg-dark); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--bg-card); border: var(--bdr-dim);
  border-radius: var(--r); padding: 2rem;
  transition: var(--ease); position: relative;
}
.testi-card::after {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Orbitron', monospace; font-size: 4.5rem;
  color: rgba(0,240,255,.06); line-height: 1; pointer-events: none;
}
.testi-card:hover { border-color: rgba(255,0,240,.2); box-shadow: 0 8px 30px rgba(255,0,240,.06); }
.testi-stars { color: var(--cyan); text-shadow: var(--glow-tc); letter-spacing: .2rem; margin-bottom: 1rem; font-size: .95rem; }
.testi-text  { font-size: .92rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,240,255,.2), rgba(255,0,240,.2));
  border: var(--bdr-c);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .85rem; color: var(--cyan);
}
.testi-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .9rem; color: var(--white); }
.testi-role { font-size: .78rem; color: var(--gray-lt); }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  CONTACT                                                 ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.contact { background: var(--bg-dark); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px; border-radius: var(--r);
  background: rgba(0,240,255,.08); border: var(--bdr-c);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-label { font-size: .72rem; color: var(--gray-lt); text-transform: uppercase; letter-spacing: .09em; margin-bottom: .18rem; }
.ci-val   { font-size: .95rem; color: var(--white); }
.ci-val a:hover { color: var(--cyan); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem; font-weight: 500;
  color: var(--gray-lt); text-transform: uppercase; letter-spacing: .07em;
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-card); border: var(--bdr-dim);
  border-radius: var(--r); padding: .78rem 1rem;
  color: var(--white); font-family: 'Inter', sans-serif; font-size: .95rem;
  transition: var(--ease); outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(0,240,255,.4);
  box-shadow: 0 0 0 3px rgba(0,240,255,.07);
}
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a889c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
.form-select option { background: var(--bg-card); }

/* ── Form validation states ──────────────────────────────── */
.form-required { color: var(--magenta); margin-left: .1rem; font-weight: 700; }

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: rgba(255,0,240,.5);
  box-shadow: 0 0 0 3px rgba(255,0,240,.07);
}
.form-group.has-success .form-input,
.form-group.has-success .form-select,
.form-group.has-success .form-textarea {
  border-color: rgba(0,240,255,.4);
  box-shadow: 0 0 0 3px rgba(0,240,255,.06);
}

.field-error {
  font-size: .76rem; color: var(--magenta);
  margin-top: .25rem; display: none;
  animation: fadeUp .2s ease;
}
.form-group.has-error .field-error { display: block; }

.form-hint {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .28rem;
}
.form-char-count {
  font-size: .72rem; color: var(--gray);
  transition: color var(--ease); margin-left: auto;
}
.form-char-count.warn { color: var(--magenta); }

/* ── Form submit button disabled state ───────────────────── */
button:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Form success card ───────────────────────────────────── */
.form-success-card {
  display: none;
  background: var(--bg-card2); border: var(--bdr-c);
  border-radius: var(--r-lg); padding: 3.5rem 2.5rem;
  text-align: center; box-shadow: var(--glow-c-xl);
  animation: fadeUp .4s ease;
}
.form-success-card.show { display: block; }
.form-success-icon {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: rgba(0,240,255,.1); border: var(--bdr-c);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: var(--glow-c);
}
.form-success-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem; font-weight: 700; color: var(--white); margin-bottom: .75rem;
}
.form-success-msg { color: var(--gray-lt); line-height: 1.75; margin-bottom: 2rem; font-size: .97rem; }
.form-success-msg a { color: var(--cyan); }
.form-success-msg a:hover { text-shadow: var(--glow-tc); }

/* API-level submission error (network failure, bad key, etc.) */
.form-submit-error {
  display: none;
  padding: .85rem 1.1rem; border-radius: var(--r);
  background: rgba(255,0,240,.08); border: var(--bdr-m);
  color: var(--magenta); font-size: .88rem; line-height: 1.6;
  animation: fadeUp .2s ease;
}
.form-submit-error a { color: var(--magenta); text-decoration: underline; }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  FOOTER                                                  ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
.footer { background: var(--bg-oled); border-top: var(--bdr-dim); padding-block: 4rem 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Orbitron', monospace; font-weight: 900; font-size: 1.3rem;
  color: var(--cyan); text-shadow: var(--glow-tc); letter-spacing: .05em;
  display: inline-block; margin-bottom: .75rem;
}
.footer-logo span { color: var(--white); text-shadow: none; }
.footer-tagline { font-size: .9rem; color: var(--gray-lt); line-height: 1.65; max-width: 280px; }
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .77rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--white); margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-link { font-size: .87rem; color: var(--gray-lt); transition: var(--ease); }
.footer-link:hover { color: var(--cyan); }
.footer-contact-line {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .87rem; color: var(--gray-lt); line-height: 1.55; margin-bottom: .75rem;
}
.fci { font-size: .95rem; flex-shrink: 0; margin-top: .1rem; }
.footer-contact-line a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: var(--bdr-dim); gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: .8rem; color: var(--gray); }
.footer-copy a { color: var(--gray-lt); }
.footer-copy a:hover { color: var(--cyan); }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  ANIMATIONS                                              ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
@keyframes orbPulse {
  from { opacity: .65; transform: scale(1);    }
  to   { opacity: 1;   transform: scale(1.12); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* ╔══════════════════════════════════════════════════════════╗ */
/* ║  RESPONSIVE                                              ║ */
/* ╚══════════════════════════════════════════════════════════╝ */
@media (max-width: 1024px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .boot-terminal  { max-height: 300px; font-size: .66rem; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .p2v-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-bar      { padding-inline: 2rem; }
}

@media (max-width: 768px) {
  :root { --py: 4rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-terminal-wrap { display: none; }
  .hero-h1   { font-size: 1.9rem; }
  .hero-stats { gap: 1.75rem; }
  .services-grid  { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testi-grid     { grid-template-columns: 1fr; }
  .stats-bar      { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .stats-sep      { display: none; }
  .contact-inner  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .p2v-checklist  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --py: 3rem; }
  .hero-ctas    { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .why-grid     { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
