/* ==========================================================================
   Webby AI — site.css
   Black + neon lime. Space Grotesk / Inter / JetBrains Mono.
   ========================================================================== */

:root {
  --bg: #000000;
  --bg-2: #060706;
  --bg-3: #0b0d0a;
  --surface: #0e100c;
  --surface-2: #131610;
  --line: rgba(182, 255, 46, 0.16);
  --line-2: rgba(255, 255, 255, 0.08);
  --neon: #b6ff2e;
  --neon-2: #39ff14;
  --neon-dim: rgba(182, 255, 46, 0.55);
  --neon-glow: rgba(182, 255, 46, 0.35);
  --text: #e9ede4;
  --text-2: #b4bbad;
  --text-3: #7f867a;
  --danger: #ff5c5c;
  --font-display: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --boot: 0s;
  color-scheme: dark;
}
html.booting { --boot: 1.05s; }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--neon); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
strong { color: #fff; font-weight: 600; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: #fff; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.4rem, 6.2vw, 4.9rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: 0.35em; }
::selection { background: var(--neon); color: #000; }

:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 1000;
  background: var(--neon); color: #000; padding: 10px 14px; border-radius: 6px; font-weight: 600;
}
.skip-link:focus { left: 8px; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 2 * var(--gutter)); margin-inline: auto; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--neon); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--neon); box-shadow: 0 0 8px var(--neon); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 1px; background: var(--neon); box-shadow: 0 0 8px var(--neon); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-2); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.muted { color: var(--text-3); }
.mono { font-family: var(--font-mono); }
.neon { color: var(--neon); }
.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, var(--neon) 55%, var(--neon-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hr-glow { height: 1px; border: 0; margin: 0; background: linear-gradient(90deg, transparent, var(--neon-dim), transparent); }

/* Buttons */
.btn {
  --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--line-2);
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { --btn-bg: var(--neon); --btn-fg: #000; --btn-bd: var(--neon); box-shadow: 0 0 0 0 var(--neon-glow), 0 8px 30px -10px var(--neon-glow); }
.btn--primary:hover { box-shadow: 0 0 0 4px rgba(182,255,46,.12), 0 14px 40px -10px var(--neon-glow); background: #c8ff5a; }
.btn--ghost { --btn-bd: rgba(182,255,46,.45); --btn-fg: var(--neon); }
.btn--ghost:hover { background: rgba(182,255,46,.08); border-color: var(--neon); }
.btn--wa { --btn-bg: #25d366; --btn-fg: #06200f; --btn-bd: #25d366; }
.btn--wa:hover { background: #3ee07a; }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 560px) { .btn { white-space: normal; max-width: 100%; text-align: center; } }
.btn-row--center { justify-content: center; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.35));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.is-scrolled { border-bottom-color: var(--line); background: rgba(0,0,0,.82); }
.header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(182,255,46,.55), transparent); opacity: 0; transition: opacity .4s; pointer-events: none; }
.header.is-scrolled::after { opacity: 1; }
.header__progress { position: absolute; left: 0; top: 0; height: 2px; width: 100%; background: linear-gradient(90deg, var(--neon), var(--neon-2)); transform-origin: left; transform: scaleX(0); box-shadow: 0 0 12px var(--neon); pointer-events: none; }
.brand__mark circle { animation: twinkle 3.4s ease-in-out infinite; }
.brand__mark circle:nth-child(2n) { animation-delay: -1.2s; }
.brand__mark circle:nth-child(3n) { animation-delay: -2.3s; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 40px; height: 34px; filter: drop-shadow(0 0 6px var(--neon-glow)); }
.brand__word { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.06em; line-height: 1; }
.brand__word span { color: var(--neon); }
.brand__tag { display: block; font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.22em; color: var(--text-3); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: var(--text-2); padding: 10px 14px; border-radius: 8px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: color .2s, background .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.05); }
.nav .btn { margin-left: 10px; }
.nav a.btn--primary { color: #000; background: var(--neon); }
.nav a.btn--primary:hover { background: #c8ff5a; color: #000; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 10px; background: transparent; color: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; transition: .3s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; flex-direction: column; align-items: stretch; gap: 6px;
    padding: 24px var(--gutter); background: rgba(0,0,0,.96); border-top: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .3s var(--ease); overflow: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.15rem; padding: 14px 12px; }
  .nav .btn { margin: 14px 0 0; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 80px; isolation: isolate;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -3; }
.hero__aurora {
  position: absolute; z-index: -2; left: 50%; bottom: -35%; width: 120vw; height: 80vh; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(182,255,46,.22) 0%, rgba(57,255,20,.08) 35%, transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero__grid {
  position: absolute; z-index: -2; left: 0; right: 0; bottom: 0; height: 46vh; pointer-events: none;
  background-image: linear-gradient(rgba(182,255,46,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(182,255,46,.14) 1px, transparent 1px);
  background-size: 60px 60px; transform: perspective(600px) rotateX(62deg) translateY(30px) scale(1.6); transform-origin: 50% 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%); mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
  opacity: .38;
  animation: gridmove 2.6s linear infinite;
}
@keyframes gridmove { from { background-position: 0 0, 0 0; } to { background-position: 0 60px, 0 0; } }
.hero { --floor: 46vh; }
.hero__horizon { display: none; }
.hero__aurora { animation: aurora 18s ease-in-out infinite alternate; }
@keyframes aurora { from { transform: translateX(-56%) scale(1); } to { transform: translateX(-44%) scale(1.14); } }
.hero__vignette { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 78%, var(--bg) 100%), radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(0,0,0,.75) 100%); pointer-events: none; }
.hero__hud {
  position: absolute; z-index: 1; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; color: var(--text-3); text-transform: uppercase;
  pointer-events: none;
}
.hero__hud--tl { top: calc(var(--header-h) + 18px); left: var(--gutter); }
.hero__hud--tr { top: calc(var(--header-h) + 18px); right: var(--gutter); text-align: right; }
.hero__hud--bl { bottom: 22px; left: var(--gutter); }
.hero__hud--br { bottom: 22px; right: var(--gutter); text-align: right; }
.hero__hud b { color: var(--neon); font-weight: 500; }
.hero__hud { opacity: 0; animation: hud 1.1s steps(1) forwards; animation-delay: calc(var(--boot) + .35s); }
@keyframes hud { 0% { opacity: 0; } 10% { opacity: 1; } 20% { opacity: .15; } 30% { opacity: 1; } 45% { opacity: .35; } 55% { opacity: 1; } 100% { opacity: 1; } }
.hero__inner { text-align: center; max-width: 1100px; position: relative; z-index: 2; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--neon); box-shadow: 0 0 8px var(--neon); }
.cursor { display: inline-block; width: 8px; height: 0.9em; background: var(--neon); margin-left: 4px; vertical-align: -2px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero__title { margin-bottom: 22px; text-shadow: 0 0 40px rgba(182,255,46,.15); font-size: clamp(2.2rem, 4.7vw, 3.8rem); }
.hero__title .line { display: block; }
.hero__title .line > span { display: inline-block; opacity: 0; filter: blur(16px); transform: translateY(34px) scale(1.04); letter-spacing: .06em; animation: focus 1.4s var(--ease) forwards; animation-delay: calc(var(--boot) + .2s); }
.hero__title .line:nth-child(2) > span { animation-delay: calc(var(--boot) + .42s); }
@keyframes focus { 60% { filter: blur(0); } to { opacity: 1; filter: blur(0); transform: none; letter-spacing: -0.02em; } }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
.hero .breadcrumbs, .hero .eyebrow, .hero__sub, .hero .btn-row, .hero .article-meta { opacity: 0; transform: translateY(16px); animation: fadeUp .9s var(--ease) forwards; }
.hero .breadcrumbs { animation-delay: calc(var(--boot) + .05s); }
.hero .eyebrow { animation-delay: calc(var(--boot) + .1s); }
.hero__sub { animation-delay: calc(var(--boot) + .55s); }
.hero .btn-row { animation-delay: calc(var(--boot) + .7s); }
.hero .article-meta { animation-delay: calc(var(--boot) + .75s); }
.hero--inner h1 { opacity: 0; filter: blur(14px); transform: translateY(26px); letter-spacing: .04em; animation: focus 1.3s var(--ease) forwards; animation-delay: calc(var(--boot) + .2s); }
.hero__stats.reveal { transition-delay: calc(var(--boot) + .55s); }
.hero__inner::before { content: ""; position: absolute; inset: -12% -10% 30%; background: radial-gradient(ellipse at center, rgba(0,0,0,.5), transparent 70%); z-index: -1; pointer-events: none; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-2); max-width: 64ch; margin: 0 auto 34px; }
.hero__sub strong { color: #fff; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 54px auto 0; max-width: 900px;
  background: var(--line); border: 1px solid rgba(182,255,46,.28); border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 30px 80px -30px rgba(182,255,46,.35);
}
.hero__stat { background: rgba(0,0,0,.42); padding: 18px 16px; text-align: left; }
.hero__stat b { display: block; font-family: var(--font-display); font-size: 1.35rem; color: #fff; letter-spacing: -0.01em; }
.hero__stat span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; width: 22px; height: 36px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; }
.scroll-cue::after { content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--neon); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1 } 70% { transform: translateY(14px); opacity: 0 } 100% { opacity: 0 } }

@media (max-width: 820px) {
  .hero { min-height: 92svh; padding-top: calc(var(--header-h) + 36px); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__hud--tl, .hero__hud--tr { display: none; }
  .hero__hud--br { display: none; }
  .hero__hud--bl { bottom: 12px; font-size: 0.58rem; left: 0; right: 0; text-align: center; }
  .scroll-cue { display: none; }
}

/* Inner-page hero */
.hero--inner { min-height: 0; padding: calc(var(--header-h) + 80px) 0 60px; display: block; }
.hero--inner .hero__inner { text-align: left; max-width: 860px; margin: 0; }
.hero--inner .eyebrow { justify-content: flex-start; }
.hero--inner .eyebrow::after { display: none; }
.hero--inner .hero__sub { margin: 0 0 30px; }
.hero--inner h1 { font-size: clamp(2.1rem, 5vw, 3.9rem); }
.hero--inner { --floor: 30vh; }
.hero--inner .hero__grid { height: 30vh; opacity: .35; }
.hero--inner .hero__horizon { opacity: .6; }
.hero--inner .hero__aurora { bottom: -55%; }

.breadcrumbs { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs a { color: var(--text-2); }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--text-3); }

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 14px 0; }
.ticker__track { display: flex; gap: 0; width: max-content; animation: ticker 60s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-2); padding: 0 28px; white-space: nowrap; }
.ticker__track span::before { content: "◆"; color: var(--neon); margin-right: 28px; font-size: 0.55rem; vertical-align: 2px; text-shadow: 0 0 8px var(--neon); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Sections & cards
   -------------------------------------------------------------------------- */
.section { position: relative; padding: clamp(72px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(182,255,46,.07), transparent), linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 50%, var(--bg) 100%); }
.section::after { content: ""; position: absolute; top: 0; left: 50%; height: 1px; width: 0; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--neon-dim), transparent); transition: width 1.6s var(--ease); pointer-events: none; }
.section.is-in::after { width: min(1180px, 92%); }
.section--lines { background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px); background-size: 80px 80px; }
.section--lines::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, transparent 20%, var(--bg) 85%); pointer-events: none; }
.section > .container { position: relative; z-index: 1; }
.section__head { position: relative; max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head[data-ghost]::before { content: attr(data-ghost) / ""; position: absolute; left: -.03em; top: -.46em; font-family: var(--font-display); font-weight: 700; font-size: clamp(64px, 11vw, 150px); line-height: 1; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1px rgba(182,255,46,.14); white-space: nowrap; pointer-events: none; z-index: -1; user-select: none; }
.section__head--center[data-ghost]::before { left: 50%; transform: translateX(-50%); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lead { margin-inline: auto; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 30px 28px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.card::before, .card::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--neon); opacity: .6; transition: opacity .3s;
}
.card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.card::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }
.card:hover { transform: translateY(-4px); border-color: rgba(182,255,46,.4); box-shadow: 0 20px 60px -30px var(--neon-glow), inset 0 0 0 1px rgba(182,255,46,.05); }
.card:hover::before, .card:hover::after { opacity: 1; }
.card__glow { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .35s; z-index: 0;
  background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 50%), rgba(182,255,46,.12), transparent 46%); }
.card__glow::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; opacity: .9;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), var(--neon), transparent 62%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; }
.card:hover .card__glow { opacity: 1; }
.card > *:not(.card__glow) { position: relative; z-index: 1; }
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card--link { display: block; color: inherit; }
.card--link:hover { text-decoration: none; }
.card__icon {
  width: 64px; height: 64px; margin-bottom: 22px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px; background: rgba(182,255,46,.05); color: var(--neon);
  filter: drop-shadow(0 0 10px rgba(182,255,46,.25));
}
.card__icon svg { width: 34px; height: 34px; }
.card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); }
.card__more::after { content: "→"; transition: transform .3s; }
.card:hover .card__more::after { transform: translateX(4px); }
.card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; margin: 4px 0 12px; }
.card__price small { font-family: var(--font-mono); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-right: 8px; }

/* Module cards (What we build) */
.module { padding: 34px 30px 30px; }
.module .card__icon { width: 100%; height: 150px; border-radius: 10px; margin-bottom: 26px; background: radial-gradient(ellipse at 50% 100%, rgba(182,255,46,.12), transparent 60%), var(--bg); }
.module .card__icon svg { width: 96px; height: 96px; }
.module ul { list-style: none; padding: 0; margin: 14px 0 0; }
.module li { padding-left: 20px; position: relative; color: var(--text-2); font-size: 0.95rem; }
.module li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: var(--neon); }

/* Check lists */
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li { position: relative; padding-left: 28px; margin-bottom: 9px; color: var(--text-2); font-size: 0.96rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--neon); border-bottom: 2px solid var(--neon); transform: rotate(-45deg); }
.checks li strong { color: #fff; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.price-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 1000px) { .price-tabs { grid-template-columns: 1fr; } }
.price-col { display: flex; flex-direction: column; gap: 22px; }
.price-col__head { padding: 0 6px 4px; }
.price-col__head h3 { font-size: 1.05rem; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); margin-bottom: 6px; }
.price-col__head p { color: var(--text-3); font-size: 0.92rem; margin: 0; }
.price-card { display: flex; flex-direction: column; }
.price-col > .card:last-child { flex: 0 0 auto; }
.price-col .card--fill { flex: 1; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1001px) { .price-col__head { min-height: 86px; } }
@property --ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.price-card--featured { border-color: transparent; box-shadow: 0 0 0 1px rgba(182,255,46,.12), 0 30px 80px -40px var(--neon-glow);
  background: linear-gradient(180deg, #121509 0%, var(--bg-2) 100%) padding-box,
    conic-gradient(from var(--ang), rgba(182,255,46,.14) 0%, var(--neon) 10%, rgba(182,255,46,.14) 24%, rgba(182,255,46,.14) 52%, var(--neon-2) 64%, rgba(182,255,46,.14) 78%, rgba(182,255,46,.14) 100%) border-box;
  animation: spinBorder 7s linear infinite; }
@keyframes spinBorder { to { --ang: 360deg; } }
.price-card--featured:hover { border-color: transparent; }
.price-col__head { position: relative; }
.price-col__head::before { content: attr(data-num); display: block; font-family: var(--font-display); font-weight: 700; font-size: 72px; line-height: .9; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1px rgba(182,255,46,.35); margin: 0 0 14px; text-shadow: 0 0 24px rgba(182,255,46,.12); }
@media (min-width: 1001px) { .price-col__head { min-height: 186px; } }
.price-card .badge { position: absolute; top: -12px; right: 20px; }
.badge { display: inline-block; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: var(--neon); color: #000; font-weight: 600; }
.badge--ghost { background: transparent; border: 1px solid var(--line); color: var(--neon); }
.price-card h4 { font-size: 1.25rem; margin: 0 0 4px; }
.price-card .who { color: var(--text-3); font-size: 0.9rem; margin: 0 0 16px; min-height: 2.6em; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 4px 0 6px; font-family: var(--font-display); }
.price .from { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); align-self: center; }
.price .amount { font-size: clamp(2.2rem, 3.4vw, 2.9rem); font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1; text-shadow: 0 0 30px rgba(182,255,46,.2); }
.price .period { color: var(--text-3); font-size: 0.95rem; }
.price--poa .amount { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.price-meta { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon); margin-bottom: 8px; }
.price-card .checks { flex: 1; }
.price-card .btn { margin-top: 24px; width: 100%; }
.price-note { margin-top: 26px; color: var(--text-3); font-size: 0.9rem; text-align: center; }

/* Role cards (AI employees) */
.role { display: flex; flex-direction: column; }
.role__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.role__top .card__icon { width: 48px; height: 48px; margin: 0; border-radius: 10px; }
.role__top .card__icon svg { width: 24px; height: 24px; }
.role .price .amount { font-size: 1.9rem; }
.role p { color: var(--text-2); font-size: 0.95rem; }
.role .price-meta { text-transform: none; letter-spacing: 0.02em; font-size: 0.8rem; color: var(--text-3); }
.role .price-meta::before { content: ""; }

/* --------------------------------------------------------------------------
   Comparison table
   -------------------------------------------------------------------------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--bg-2); -webkit-overflow-scrolling: touch; }
.compare-hint { display: none; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin: 10px 0 0; text-align: center; }
@media (max-width: 700px) { .compare-hint { display: block; } }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; font-size: 0.96rem; }
.compare thead th { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); background: var(--surface); }
.compare thead th.us { color: #000; background: var(--neon); }
.compare tbody th { font-weight: 500; color: #fff; width: 30%; }
.compare td.us { color: #fff; background: rgba(182,255,46,.06); font-weight: 500; }
.compare td.them { color: var(--text-3); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.tick, .cross { display: inline-block; vertical-align: -3px; margin-right: 8px; }
.tick { color: var(--neon); }
.cross { color: var(--text-3); }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; counter-reset: step; }
.steps::before { content: ""; position: absolute; left: 22px; right: calc(25% - 16px); top: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--neon-dim), var(--neon-dim), transparent); transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease) .2s; }
.steps.is-in::before { transform: scaleX(1); }
.step:nth-child(1) { --i: 0; } .step:nth-child(2) { --i: 1; } .step:nth-child(3) { --i: 2; } .step:nth-child(4) { --i: 3; }
.steps.is-in .step__num { animation: numOn .6s var(--ease) forwards; animation-delay: calc(var(--i) * .35s + .3s); }
@keyframes numOn { 0% { box-shadow: 0 0 0 0 rgba(182,255,46,.6); background: var(--neon); color: #000; } 100% { box-shadow: 0 0 18px rgba(182,255,46,.25); background: var(--bg); color: var(--neon); } }
.step { position: relative; padding-top: 12px; }
.step__num { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); border: 1px solid var(--neon); color: var(--neon); font-family: var(--font-mono); font-size: 0.8rem; margin-bottom: 20px; box-shadow: 0 0 18px rgba(182,255,46,.25); position: relative; z-index: 1; }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--text-2); font-size: 0.96rem; margin: 0; }
.step .time { display: inline-block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); margin-bottom: 8px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps::before { display: none; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Showcase, industries, areas
   -------------------------------------------------------------------------- */
.showcase { border-color: var(--line-2); padding: 26px 24px; }
.showcase__sector { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--neon); margin-bottom: 10px; }
.showcase h3 { font-size: 1.15rem; margin-bottom: 4px; }
.showcase p { color: var(--text-3); font-size: 0.9rem; margin: 0; }
.showcase__bar { height: 3px; background: linear-gradient(90deg, var(--neon), transparent); margin-top: 18px; border-radius: 2px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 14px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--text-2); background: rgba(255,255,255,.02); transition: .25s; }
.chip:hover { border-color: var(--neon); color: #fff; background: rgba(182,255,46,.06); }
.chip--on { border-color: rgba(182,255,46,.5); color: var(--neon); }

.areas { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .areas { grid-template-columns: 1fr; } }
.areas__map { position: relative; aspect-ratio: 1 / 1; max-width: 470px; margin-inline: auto; width: 100%; }
.areas__map svg { width: 100%; height: 100%; }
.map-pin { animation: pulse 2.4s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.map-arc { fill: none; stroke: #b6ff2e; stroke-width: .45; opacity: .55; stroke-dasharray: 100; stroke-dashoffset: 100; }
.areas__map.is-in .map-arc { animation: draw 1.6s var(--ease) forwards; animation-delay: calc(var(--i, 0) * .18s + .3s); }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pulse { 0% { opacity: .9; transform: scale(.6);} 100% { opacity: 0; transform: scale(2.4);} }

/* --------------------------------------------------------------------------
   FAQ (native details)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 48px 22px 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--neon); font-weight: 400; transition: transform .3s, background .3s; }
.faq details[open] summary::after { content: "–"; background: rgba(182,255,46,.1); }
.faq summary:hover::after { background: rgba(182,255,46,.12); }
.faq .faq__a { padding: 0 0 22px; color: var(--text-2); max-width: 70ch; }
.faq .faq__a p:last-child { margin: 0; }

/* --------------------------------------------------------------------------
   Contact / forms
   -------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.contact__list { list-style: none; padding: 0; margin: 20px 0 0; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line-2); }
.contact__list li:last-child { border-bottom: 1px solid var(--line-2); }
.contact__list svg { width: 22px; height: 22px; color: var(--neon); flex: none; margin-top: 2px; }
.contact__list b { display: block; color: #fff; font-weight: 600; }
.contact__list span { color: var(--text-2); font-size: 0.95rem; }
.form { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 28px; position: relative; }
.form::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 60%; height: 1px; background: linear-gradient(90deg, var(--neon), transparent); }
.form label { display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin: 0 0 8px; }
.form .field { margin-bottom: 18px; }
.form input, .form select, .form textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: #fff; padding: 13px 14px; font: inherit; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px rgba(182,255,46,.12); }
.form textarea { min-height: 120px; resize: vertical; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--neon) 50%), linear-gradient(135deg, var(--neon) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }
.form .btn { width: 100%; }
.form__note { font-size: 0.85rem; color: var(--text-3); margin: 14px 0 0; text-align: center; }
.form__status { font-size: 0.9rem; color: var(--neon); margin: 12px 0 0; min-height: 1.2em; }
.hp { position: absolute; left: -9999px; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 50% 120%, rgba(182,255,46,.22), transparent 60%), var(--bg-2); text-align: center; padding: clamp(64px, 8vw, 110px) 0; }
.cta-band::before { content: ""; position: absolute; inset: -40% -10%; pointer-events: none; z-index: 0; background: radial-gradient(ellipse at 30% 60%, rgba(182,255,46,.16), transparent 50%), radial-gradient(ellipse at 75% 40%, rgba(57,255,20,.10), transparent 50%); animation: aurora2 14s ease-in-out infinite alternate; }
@keyframes aurora2 { from { transform: translateX(-4%) scale(1); } to { transform: translateX(4%) scale(1.1); } }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lead { margin: 0 auto 30px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { position: relative; border-top: 1px solid var(--line-2); background: var(--bg); padding: 64px 0 28px; color: var(--text-2); font-size: 0.93rem; }
.footer::before { content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: min(1180px, 92%); height: 1px; background: linear-gradient(90deg, transparent, var(--neon-dim), transparent); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--neon); margin-bottom: 14px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { color: var(--text-2); }
.footer a:hover { color: #fff; }
.footer__summary { color: var(--text-3); font-size: 0.9rem; max-width: 46ch; margin-top: 14px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-2); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.footer__bottom span b { color: var(--neon); font-weight: 500; }

/* --------------------------------------------------------------------------
   Article / prose (blog, service pages)
   -------------------------------------------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8em; }
.prose p, .prose li { color: var(--text-2); }
.prose strong { color: #fff; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 0.95rem; }
.prose th, .prose td { padding: 12px 14px; border-bottom: 1px solid var(--line-2); text-align: left; vertical-align: top; }
.prose th { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon); }
.prose .table-wrap { overflow-x: auto; }
.prose blockquote { margin: 1.6em 0; padding: 18px 22px; border-left: 2px solid var(--neon); background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: #fff; }
.prose blockquote p:last-child { margin: 0; }
.prose .callout { margin: 1.8em 0; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(182,255,46,.04); }
.prose .callout p:last-child { margin: 0; }
.prose .callout h3 { margin-top: 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 26px; }
.article-meta b { color: var(--neon); font-weight: 500; }
.summary-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; background: linear-gradient(180deg, rgba(182,255,46,.06), transparent); margin: 0 0 32px; }
.summary-box h2 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--neon); margin: 0 0 10px; font-weight: 500; }
.summary-box p { margin: 0; color: #fff; }
.post-card { padding: 28px; }
.post-card time { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.post-card h3 { margin: 10px 0 8px; font-size: 1.3rem; }
.post-card p { color: var(--text-2); }

/* Two-column feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.split__visual { border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--bg-2); padding: 26px; position: relative; overflow: hidden; }
.split__visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(182,255,46,.12), transparent 60%); pointer-events: none; }

/* Terminal / status panel (decor) */
.panel { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-2); background: #050605; border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; box-shadow: 0 0 40px -20px var(--neon-glow); position: relative; }
.panel__bar { display: flex; gap: 6px; margin-bottom: 14px; }
.panel__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: block; }
.panel__bar i:first-child { background: var(--neon); box-shadow: 0 0 8px var(--neon); }
.panel .ok { color: var(--neon); }
.panel .k { color: var(--text-3); }
.panel .line { display: flex; justify-content: space-between; gap: 14px; padding: 5px 0; border-bottom: 1px dashed rgba(255,255,255,.06); }
.panel .line:last-child { border-bottom: 0; }
.panel:not(.panel--facts) .line { opacity: 0; transform: translateX(-8px); }
.panel.is-in:not(.panel--facts) .line { animation: lineIn .45s var(--ease) forwards; animation-delay: calc(var(--i, 0) * .11s + .15s); }
@keyframes lineIn { to { opacity: 1; transform: none; } }
.panel.is-in .line:last-child .ok::after { content: "_"; margin-left: 2px; animation: blink 1s steps(2) infinite; }

/* Scanline overlay on cinematic sections */
.scanlines::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(180deg, rgba(255,255,255,.018) 0 1px, transparent 1px 3px); mix-blend-mode: overlay; z-index: 0; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #06200f; display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(37,211,102,.6); transition: transform .3s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.04); text-decoration: none; }
.wa-float svg { width: 28px; height: 28px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__title .line > span { animation: none; transform: none; }
  .ticker__track { animation: none; }
  .cursor, .scroll-cue::after, .map-pin { animation: none; }
  .card:hover, .btn:hover { transform: none; }
  .hero__title .line > span, .hero--inner h1, .hero .breadcrumbs, .hero .eyebrow, .hero__sub, .hero .btn-row, .hero .article-meta, .hero__hud, .panel .line, .map-arc { animation: none; opacity: 1; transform: none; filter: none; letter-spacing: inherit; stroke-dashoffset: 0; }
  .hero__grid, .hero__aurora, .brand__mark circle, .price-card--featured, .cta-band::before, .grain, .hero .btn--primary, .ico-scan, .ico-t, .ico-eye, .ico-ant { animation: none; }
  .steps::before { transform: none; }
  .torch, .boot { display: none; }
  .section::after { transition: none; }
}

@media print {
  .header, .wa-float, .hero__canvas, .hero__grid, .hero__aurora, .scroll-cue, .ticker { display: none; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   Cinematic layer v2: boot sequence, grain, torch, shimmer, icon motion
   ========================================================================== */
.boot { display: none; position: fixed; inset: 0; z-index: 1000; background: #000; place-items: center; }
.booting .boot { display: grid; }
.booted .boot { animation: bootOut .6s var(--ease) forwards .35s; }
@keyframes bootOut { to { opacity: 0; visibility: hidden; } }
.boot__inner { display: grid; justify-items: center; gap: 20px; }
.boot__mark { width: 104px; height: 86px; filter: drop-shadow(0 0 16px rgba(182,255,46,.5)); }
.boot__mark .p { stroke-dasharray: 420; stroke-dashoffset: 420; animation: bootDraw .8s var(--ease) forwards .05s; }
.boot__mark circle { opacity: 0; animation: bootPop .3s var(--ease) forwards; animation-delay: calc(.45s + var(--i, 0) * .06s); }
@keyframes bootDraw { to { stroke-dashoffset: 0; } }
@keyframes bootPop { from { opacity: 0; transform: scale(.2); transform-box: fill-box; transform-origin: center; } to { opacity: 1; transform: scale(1); } }
.boot__text { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--neon); display: flex; gap: 14px; }
.boot__text .k { color: var(--text-3); }
.boot__text .s::after { content: "_"; margin-left: 2px; animation: blink .8s steps(2) infinite; }
.boot__bar { width: 200px; height: 1px; background: rgba(182,255,46,.15); position: relative; overflow: hidden; }
.boot__bar i { position: absolute; inset: 0; background: var(--neon); transform-origin: left; transform: scaleX(0); animation: bootFill .9s var(--ease) forwards .1s; box-shadow: 0 0 10px var(--neon); }
@keyframes bootFill { to { transform: scaleX(1); } }

.grain { position: fixed; inset: -50%; width: 200%; height: 200%; z-index: 140; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px; animation: grain 1.4s steps(5) infinite; }
@keyframes grain { 0% { transform: translate(0, 0); } 20% { transform: translate(-4%, -7%); } 40% { transform: translate(-10%, 3%); } 60% { transform: translate(5%, -9%); } 80% { transform: translate(-2%, 8%); } 100% { transform: translate(0, 0); } }

.torch { position: fixed; left: 0; top: 0; width: 620px; height: 620px; border-radius: 50%; pointer-events: none; z-index: 1; opacity: 0; transition: opacity .6s; will-change: transform;
  background: radial-gradient(circle, rgba(182,255,46,.10) 0%, rgba(182,255,46,.035) 34%, transparent 64%); }
.torch.is-on { opacity: 1; }
@media (pointer: coarse) { .torch { display: none; } }

.btn--primary::after { content: ""; position: absolute; top: -20%; bottom: -20%; left: -70%; width: 40%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-20deg); transition: left .7s var(--ease); pointer-events: none; }
.btn--primary:hover::after { left: 140%; }
.hero .btn--primary { animation: ctaPulse 2.8s ease-out infinite; animation-delay: calc(var(--boot) + 1.6s); }
@keyframes ctaPulse { 0% { box-shadow: 0 0 0 0 rgba(182,255,46,.5), 0 8px 30px -10px var(--neon-glow); } 70% { box-shadow: 0 0 0 18px rgba(182,255,46,0), 0 8px 30px -10px var(--neon-glow); } 100% { box-shadow: 0 0 0 0 rgba(182,255,46,0), 0 8px 30px -10px var(--neon-glow); } }

.hero__stat b { text-shadow: 0 0 18px rgba(182,255,46,.25); font-variant-numeric: tabular-nums; }
.hero__stat { position: relative; overflow: hidden; }
.hero__stat::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, var(--neon), transparent); opacity: .5; }

/* icon motion inside the three module cards */
.ico-scan { transform-box: fill-box; animation: scan 2.8s ease-in-out infinite; }
@keyframes scan { 0% { transform: translateY(0); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(22px); opacity: 0; } }
.ico-t { animation: typing 2.4s ease-in-out infinite; }
.ico-t:nth-of-type(2) { animation-delay: .4s; } .ico-t:nth-of-type(3) { animation-delay: .8s; }
@keyframes typing { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
.ico-eye { transform-box: fill-box; transform-origin: center; animation: blinkEye 4.2s ease-in-out infinite; }
@keyframes blinkEye { 0%, 92%, 100% { transform: scaleY(1); } 95% { transform: scaleY(.1); } }
.ico-ant { transform-box: fill-box; transform-origin: center; animation: antPulse 2s ease-in-out infinite; }
@keyframes antPulse { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }
.module .card__icon { position: relative; overflow: hidden; }
.module .card__icon::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(182,255,46,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(182,255,46,.08) 1px, transparent 1px); background-size: 18px 18px; -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 75%); mask-image: radial-gradient(ellipse at center, #000, transparent 75%); }
.module .card__icon::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; top: 0; background: linear-gradient(90deg, transparent, rgba(182,255,46,.6), transparent); animation: iconSweep 4s linear infinite; opacity: .7; }
@keyframes iconSweep { 0% { top: 0; } 100% { top: 100%; } }

/* section heads: subtle glow behind headings */
.section__head h2, .cta-band h2 { text-shadow: 0 0 30px rgba(182,255,46,.12); }
.showcase__bar { background: linear-gradient(90deg, var(--neon), rgba(182,255,46,.2) 60%, transparent); background-size: 200% 100%; animation: barFlow 4s linear infinite; }
@keyframes barFlow { from { background-position: 100% 0; } to { background-position: -100% 0; } }

/* ==========================================================================
   About page, external tools and work grid
   ========================================================================== */
.btn .ext-ico { width: 15px; height: 15px; margin-left: -2px; opacity: .85; }
.card__more--ext::after { content: "↗"; }
.split--top { align-items: start; }
.panel--facts { font-size: .86rem; }
.panel--facts .line span:last-child { color: #fff; text-align: right; }
.panel--facts .line .k { color: var(--text-3); }
.panel--facts .line .ok { color: var(--neon); }
.pin { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); border: 1px dashed rgba(182,255,46,.45); border-radius: 999px; padding: 12px 18px; }
.pin b { color: var(--neon); font-weight: 600; font-size: 1rem; letter-spacing: .2em; }
.work { display: flex; flex-direction: column; padding: 26px 24px 24px; }
.work .showcase__sector { padding-right: 96px; }
.work p { flex: 1; }
.work .card__more { margin-top: 18px; }
.card > .work__kind { position: absolute; top: 18px; right: 18px; z-index: 1; }
.work--cta { grid-column: span 2; justify-content: center; border-style: dashed; background: rgba(182,255,46,.03); }
.work--cta h3 { font-size: 1.35rem; }
@media (max-width: 640px) { .work--cta { grid-column: auto; } }
.prose .eyebrow + h2 { margin-top: 0; }
.os { padding: 34px 32px; }
.os .panel { align-self: stretch; }
.founder { display: flex; align-items: center; gap: 22px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(182,255,46,.06), transparent); position: relative; overflow: hidden; }
.founder::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px); background-size: 28px 28px; -webkit-mask-image: radial-gradient(ellipse at 20% 50%, #000, transparent 70%); mask-image: radial-gradient(ellipse at 20% 50%, #000, transparent 70%); pointer-events: none; }
.founder__mono { position: relative; flex: none; width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--neon); border: 1px solid rgba(182,255,46,.5); background: radial-gradient(circle at 30% 30%, rgba(182,255,46,.18), transparent 60%), #050605; box-shadow: 0 0 30px rgba(182,255,46,.2), inset 0 0 20px rgba(182,255,46,.08); letter-spacing: .04em; }
.founder__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; position: relative; }
.founder__role { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--neon); margin: 6px 0 8px; position: relative; }
.founder__meta { color: var(--text-3); font-size: .9rem; position: relative; }
@media (max-width: 1100px) and (min-width: 901px) { .nav a { padding: 10px 10px; font-size: .88rem; } .nav .btn { margin-left: 4px; } }
