/* ═══════════════════════════════════════════
   NOVU STUDIOS — MAIN CSS
   Full premium redesign
═══════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────── */
:root {
  --lime:        #c8ff00;
  --lime-dim:    rgba(200,255,0,0.12);
  --lime-glow:   rgba(200,255,0,0.22);
  --bg:          #060606;
  --bg-card:     #0d0d0d;
  --bg-surface:  #080808;
  --bg-elevated: #111;
  --border:      #141414;
  --border-mid:  #222;
  --border-hi:   #333;
  --off:         #f0ede6;
  --off-dim:     rgba(240,237,230,0.55);
  --muted:       #3a3a3a;
  --txt:         #666;
  --nav-blur:    rgba(6,6,6,0.92);
  --shadow-lime: rgba(200,255,0,0.22);
  --ease:        cubic-bezier(0.16,1,0.3,1);
  --ease-back:   cubic-bezier(0.34,1.56,0.64,1);
  --radius:      2px;
}

html[data-theme="light"] {
  --lime:        #5a9600;
  --lime-dim:    rgba(90,150,0,0.1);
  --lime-glow:   rgba(90,150,0,0.2);
  --bg:          #f0ede6;
  --bg-card:     #e8e5de;
  --bg-surface:  #ebe8e1;
  --bg-elevated: #e0ddd6;
  --border:      #d0cdc6;
  --border-mid:  #bbb8b1;
  --border-hi:   #a8a5a0;
  --off:         #0a0a0a;
  --off-dim:     rgba(10,10,10,0.55);
  --muted:       #999;
  --txt:         #555;
  --nav-blur:    rgba(240,237,230,0.95);
  --shadow-lime: rgba(90,150,0,0.28);
}

/* ─── RESET ──────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--bg);
  color: var(--off);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  transition: background 0.45s ease, color 0.45s ease;
}
::selection { background: var(--lime); color: #060606; }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--lime); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { background: none; border: none; cursor: none; }

/* ─── STAR CANVAS ────────────────────────── */
#star-canvas {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; width: 100%; height: 100%;
  opacity: 0.65;
  transition: opacity 0.45s ease;
}
html[data-theme="light"] #star-canvas { opacity: 0.2; }

/* ─── SCROLL PROGRESS ────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--lime); z-index: 9999; width: 0%;
  box-shadow: 0 0 10px var(--lime), 0 0 20px var(--lime-glow);
  transition: background 0.45s ease;
  pointer-events: none;
}

/* ─── PRELOADER ──────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9998;
  background: #030303;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 36px;
}
.pre-letters {
  display: flex; gap: 6px;
}
.pre-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 10vw, 96px);
  color: var(--off); line-height: 1;
  transform: translateY(60px);
  opacity: 0;
  display: inline-block;
}
.pre-letter.lime { color: var(--lime); }
.pre-meta {
  font-family: 'Space Mono', monospace;
  font-size: 8px; color: var(--muted);
  letter-spacing: 0.4em; text-transform: uppercase;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s;
}
.pre-meta.show { opacity: 1; transform: translateY(0); }
.pre-count-row {
  display: flex; align-items: baseline; gap: 4px;
}
.pre-count {
  font-family: 'Oxanium', sans-serif; font-weight: 800;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--off); line-height: 1; letter-spacing: -0.02em;
}
.pre-count em { color: var(--lime); font-style: normal; }
.pre-bar-wrap {
  width: 220px; height: 1px; background: #1a1a1a;
  position: relative; overflow: hidden;
}
.pre-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 0; background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  transition: width 0.1s linear;
}

/* ─── CURSOR ─────────────────────────────── */
#cur {
  width: 7px; height: 7px;
  background: var(--lime); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 8999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              background 0.25s, border 0.25s;
}
#cur-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(200,255,0,0.4);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 8998;
  transform: translate(-50%,-50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease), opacity 0.3s, border-color 0.3s;
}
.cur-trail {
  width: 5px; height: 5px;
  background: var(--lime); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 8990;
  transform: translate(-50%,-50%);
  opacity: 0.35;
  transition: opacity 0.3s;
}
.cur-label {
  position: fixed; pointer-events: none; z-index: 8997;
  font-family: 'Space Mono', monospace; font-size: 7px;
  color: var(--bg); letter-spacing: 0.15em;
  transform: translate(-50%,-50%);
  opacity: 0; white-space: nowrap;
  transition: opacity 0.25s;
}
body.hovering #cur { width: 56px; height: 56px; background: transparent; border: 1px solid var(--lime); mix-blend-mode: normal; }
body.hovering #cur-ring { width: 0; height: 0; opacity: 0; }
body.hovering .cur-trail { opacity: 0; }
body.cur-view .cur-label { opacity: 1; }
body.cur-drag #cur { width: 48px; height: 48px; background: transparent; border: 1px dashed var(--lime); mix-blend-mode: normal; }

/* ─── NAV ────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.4s var(--ease), background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.stuck {
  padding: 13px 52px;
  background: var(--nav-blur);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-name {
  font-family: 'Oxanium', sans-serif; font-weight: 800;
  font-size: 13.5px; color: var(--off); letter-spacing: 0.14em;
  transition: color 0.3s;
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: 'Space Mono', monospace; font-size: 9px;
  color: var(--txt); letter-spacing: 0.22em; text-transform: uppercase;
  position: relative; transition: color 0.25s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--lime);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--off); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Availability badge */
.nav-avail {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 12px;
  border: 1px solid var(--border-mid);
  border-radius: 40px;
  font-family: 'Space Mono', monospace; font-size: 7.5px;
  color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.nav-avail:hover { border-color: #22c55e; color: var(--off); }
.avail-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: avail-pulse 2.4s ease-in-out infinite;
}
@keyframes avail-pulse {
  0%,100% { box-shadow: 0 0 6px #22c55e; transform: scale(1); }
  50% { box-shadow: 0 0 14px #22c55e, 0 0 24px rgba(34,197,94,0.4); transform: scale(1.2); }
}

/* Theme toggle */
.theme-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: border-color 0.3s, background 0.4s;
}
.theme-btn:hover { border-color: var(--lime); }
.theme-btn svg { width: 13px; height: 13px; stroke: var(--txt); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.theme-btn:hover svg { stroke: var(--lime); }
.icon-sun { display: none; }
html[data-theme="light"] .icon-sun { display: block; }
html[data-theme="light"] .icon-moon { display: none; }
html[data-theme="light"] .nav-logo path,
html[data-theme="light"] .footer-brand path { stroke: var(--lime); }
html[data-theme="light"] .nav-logo rect:first-child,
html[data-theme="light"] .footer-brand rect:first-child { stroke: var(--border-mid); }

/* Hamburger */
.nav-menu-btn {
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px; width: 32px; height: 32px;
  background: none; border: none; cursor: none;
}
.nav-menu-btn span {
  display: block; height: 1px; background: var(--off);
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.3s;
}
.nav-menu-btn span:nth-child(2) { width: 65%; margin-left: auto; }
.nav-menu-btn span:nth-child(3) { width: 40%; margin-left: auto; }
.nav-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* ─── NAV OVERLAY ────────────────────────── */
#nav-overlay {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg);
  clip-path: circle(0% at calc(100% - 68px) 36px);
  transition: clip-path 0.9s var(--ease);
  display: flex; align-items: center; padding: 0 10vw;
}
#nav-overlay.open { clip-path: circle(160% at calc(100% - 68px) 36px); }
.ol-nav li { overflow: hidden; border-bottom: 1px solid var(--border); }
.ol-nav li:first-child { border-top: 1px solid var(--border); }
.ol-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 92px);
  color: var(--off); line-height: 1;
  transform: translateY(80px); opacity: 0;
  transition: color 0.25s, transform 0.65s var(--ease), opacity 0.65s;
}
#nav-overlay.open .ol-nav a { transform: translateY(0); opacity: 1; }
#nav-overlay.open .ol-nav li:nth-child(1) a { transition-delay: 0.06s; }
#nav-overlay.open .ol-nav li:nth-child(2) a { transition-delay: 0.11s; }
#nav-overlay.open .ol-nav li:nth-child(3) a { transition-delay: 0.16s; }
#nav-overlay.open .ol-nav li:nth-child(4) a { transition-delay: 0.21s; }
#nav-overlay.open .ol-nav li:nth-child(5) a { transition-delay: 0.26s; }
#nav-overlay.open .ol-nav li:nth-child(6) a { transition-delay: 0.31s; }
.ol-nav a:hover { color: var(--lime); }
.ol-nav a:hover .ol-arrow { color: var(--lime); transform: translate(6px,-6px); }
.ol-num { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--muted); margin-right: 18px; }
.ol-arrow { font-size: 32px; color: var(--muted); transition: transform 0.3s, color 0.25s; }
.ol-footer {
  position: absolute; bottom: 44px; left: 10vw; right: 10vw;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.ol-social { display: flex; gap: 24px; }
.ol-social a {
  font-family: 'Space Mono', monospace; font-size: 8.5px;
  color: var(--txt); letter-spacing: 0.22em; text-transform: uppercase;
  transition: color 0.2s;
}
.ol-social a:hover { color: var(--lime); }

/* ─── FLOATING MOBILE CTA ────────────────── */
#floating-cta {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 400;
}
#floating-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--lime); color: #060606;
  font-family: 'Oxanium', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 32px var(--shadow-lime);
  animation: float-bob 3s ease-in-out infinite;
}
@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ─── HERO ───────────────────────────────── */
#hero {
  height: 100vh; min-height: 680px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 90px 52px 80px;
  position: relative; overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; will-change: transform; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  font-family: 'Space Mono', monospace; font-size: 9px;
  color: var(--lime); letter-spacing: 0.36em; text-transform: uppercase;
  overflow: hidden;
}
.hero-eyebrow-line { width: 44px; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: left; }
.hero-eyebrow span { transform: translateY(100%); display: block; }
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 13vw, 176px);
  line-height: 0.87; letter-spacing: 0.015em; margin-bottom: 44px;
}
.hero-headline .line { overflow: hidden; display: block; }
.hero-headline .word { display: inline-block; transform: translateY(110%); }
.hero-headline .outline { -webkit-text-stroke: 1.5px var(--off); color: transparent; }
.hero-headline .lime { color: var(--lime); }

/* Typewriter word */
.hero-typewriter {
  display: inline-flex; align-items: center; gap: 0;
  min-width: 320px;
}
.typewriter-word {
  color: var(--lime);
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--lime);
  animation: cursor-blink 0.8s step-end infinite;
}
@keyframes cursor-blink { 0%,100%{border-color:var(--lime);} 50%{border-color:transparent;} }

.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.hero-desc { max-width: 390px; font-size: 15px; color: var(--txt); line-height: 1.85; opacity: 0; transform: translateY(20px); }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; opacity: 0; transform: translateY(20px); }

/* Rotating badge */
.hero-badge {
  position: absolute; right: 52px; top: 110px;
  width: 140px; height: 140px;
  opacity: 0; z-index: 2;
}
.hero-badge svg { width: 100%; height: 100%; animation: badge-spin 18s linear infinite; }
.hero-badge-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 34px;
  color: var(--lime);
}
.hero-badge text {
  font-family: 'Space Mono', monospace; font-size: 10.5px;
  fill: var(--txt); letter-spacing: 0.2em;
}
@keyframes badge-spin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

/* Hero stats (right sidebar) */
.hero-stats {
  position: absolute; top: 50%; right: 52px; z-index: 2;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 40px; opacity: 0;
}
.h-stat-num {
  font-family: 'Oxanium', sans-serif; font-weight: 800;
  font-size: 34px; color: var(--off); line-height: 1;
}
.h-stat-num .accent { color: var(--lime); }
.h-stat-label { font-family: 'Space Mono', monospace; font-size: 7px; color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 3px; }

/* Scroll hint */
.hero-scroll { position: absolute; bottom: 38px; left: 52px; z-index: 2; display: flex; align-items: center; gap: 12px; opacity: 0; }
.scroll-wheel { width: 20px; height: 33px; border: 1px solid var(--border-mid); border-radius: 18px; display: flex; align-items: flex-start; justify-content: center; padding-top: 5px; }
.scroll-dot { width: 3px; height: 3px; background: var(--lime); border-radius: 50%; animation: scroll-bounce 2s ease-in-out infinite; }
@keyframes scroll-bounce { 0%{transform:translateY(0);opacity:1;}80%{transform:translateY(11px);opacity:0;}100%{transform:translateY(0);opacity:0;} }
.scroll-label { font-family: 'Space Mono', monospace; font-size: 7px; color: var(--muted); letter-spacing: 0.3em; text-transform: uppercase; }

/* Buttons */
.btn-lime {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px;
  background: var(--lime); color: #060606;
  font-family: 'Oxanium', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: none; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-lime::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: translateX(-101%); transition: transform 0.4s var(--ease); }
.btn-lime:hover { transform: translateY(-3px); box-shadow: 0 14px 40px var(--shadow-lime); }
.btn-lime:hover::before { transform: translateX(0); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent; color: var(--off);
  border: 1px solid var(--border-mid);
  font-family: 'Oxanium', sans-serif; font-weight: 600;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-outline:hover { border-color: var(--off); transform: translateY(-3px); }

/* ─── DUAL MARQUEE ───────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
}
.marquee-row { padding: 11px 0; overflow: hidden; }
.marquee-row + .marquee-row { border-top: 1px solid var(--border); }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-ltr 28s linear infinite;
}
.marquee-track.rtl { animation: marquee-rtl 22s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.m-item {
  display: flex; align-items: center; gap: 32px;
  padding: 0 32px; white-space: nowrap;
  font-family: 'Space Mono', monospace; font-size: 8px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}
.m-item.hi { color: var(--lime); }
.m-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
@keyframes marquee-ltr { from{transform:translateX(0);}  to{transform:translateX(-50%);} }
@keyframes marquee-rtl { from{transform:translateX(-50%);} to{transform:translateX(0);} }

/* ─── SECTIONS SHARED ────────────────────── */
.section { padding: 120px 52px; }
.s-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Space Mono', monospace; font-size: 8.5px;
  color: var(--lime); letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 16px;
}
.s-eyebrow-line { width: 26px; height: 1px; background: var(--lime); flex-shrink: 0; }
.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 92px); color: var(--off); line-height: 0.88;
}

/* Clip-reveal text animation */
.clip-reveal { overflow: hidden; }
.clip-inner { display: block; transform: translateY(100%); transition: transform 0.9s var(--ease); }
.clip-reveal.revealed .clip-inner { transform: translateY(0); }

/* Scramble placeholder — just in case JS disabled */
.scramble-target { display: inline-block; }

/* Mag wrap */
.mag-wrap { display: inline-block; }

/* ─── STATS STRIP ────────────────────────── */
#stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.15;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1400px; margin: 0 auto;
}
.stat-item {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-elevated); }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--lime); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 110px);
  color: var(--off); line-height: 1; margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-num .s-accent { color: var(--lime); font-size: 0.65em; }
.stat-num .s-flag { font-size: 0.55em; }
.stat-label {
  font-family: 'Space Mono', monospace; font-size: 8px;
  color: var(--muted); letter-spacing: 0.25em; text-transform: uppercase;
}

/* ─── SERVICES ───────────────────────────── */
#services .services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: end; margin-bottom: 64px;
}
.services-desc {
  font-size: 15px; color: var(--txt); line-height: 1.88;
  max-width: 400px; margin-left: auto;
}
.services-list { border-top: 1px solid var(--border); }
.service-item {
  display: grid; grid-template-columns: 68px 44px 1fr auto;
  align-items: center; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  position: relative; cursor: none; overflow: hidden;
  transition: padding 0.3s var(--ease);
}
.service-item::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--lime);
  transition: width 0.55s var(--ease);
}
.service-item:hover::before { width: 100%; }
.service-item:hover { padding-left: 8px; }
.service-num {
  font-family: 'Space Mono', monospace; font-size: 9px;
  color: rgba(200,255,0,0.35); letter-spacing: 0.1em;
}
/* SVG icon in service */
.service-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg {
  width: 28px; height: 28px;
  stroke: var(--muted); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.3s;
}
.service-item:hover .service-icon svg { stroke: var(--lime); }
.icon-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.7s var(--ease);
}
.service-item:hover .icon-path { stroke-dashoffset: 0; }
.service-name {
  font-family: 'Oxanium', sans-serif; font-weight: 700;
  font-size: clamp(18px, 2.6vw, 28px); color: var(--off);
  margin-bottom: 5px; transition: color 0.25s;
}
.service-item:hover .service-name { color: var(--lime); }
.service-body {
  font-size: 12.5px; color: var(--txt); line-height: 1.65;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.service-item:hover .service-body { max-height: 80px; }
.service-tags { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.s-tag {
  font-family: 'Space Mono', monospace; font-size: 7px;
  color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--border); padding: 3px 9px;
  transition: border-color 0.2s, color 0.2s;
}
.service-item:hover .s-tag { border-color: rgba(200,255,0,0.3); color: var(--lime); }

/* ─── WHY US ─────────────────────────────── */
#why-us {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 64px; }
.why-card {
  background: var(--bg-card); padding: 52px 40px;
  position: relative; overflow: hidden; cursor: none;
  transition: background 0.3s;
}
.why-card:hover { background: var(--bg-surface); }
.why-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lime); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 48px; height: 48px; margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg {
  width: 40px; height: 40px; stroke: var(--lime); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.why-num {
  font-family: 'Oxanium', sans-serif; font-weight: 800;
  font-size: 68px; color: var(--border-mid); line-height: 1;
  position: absolute; top: 28px; right: 32px;
  transition: color 0.3s;
}
.why-card:hover .why-num { color: rgba(200,255,0,0.06); }
.why-title {
  font-family: 'Oxanium', sans-serif; font-weight: 700;
  font-size: 20px; color: var(--off); margin-bottom: 14px;
  line-height: 1.2;
}
.why-body { font-size: 13.5px; color: var(--txt); line-height: 1.8; }

/* ─── WORK ───────────────────────────────── */
#work { padding: 80px 0 120px; overflow: hidden; }
.work-header { padding: 0 52px; margin-bottom: 40px; }

/* Filter tabs */
.work-filters {
  display: flex; align-items: center; gap: 4px;
  padding: 0 52px; margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Space Mono', monospace; font-size: 8px;
  color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 18px; border: 1px solid var(--border);
  background: transparent; cursor: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.filter-btn:hover { color: var(--off); border-color: var(--border-hi); }
.filter-btn.active { color: var(--bg); background: var(--lime); border-color: var(--lime); }

.work-track {
  display: flex; gap: 3px; padding: 0 52px;
  overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
  cursor: grab; -webkit-overflow-scrolling: touch;
  perspective: 1200px;
}
.work-track:active { cursor: grabbing; }
.work-track::-webkit-scrollbar { display: none; }
.work-card {
  flex-shrink: 0; width: 420px; height: 540px;
  position: relative; overflow: hidden; background: var(--bg-card);
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow 0.4s, opacity 0.45s var(--ease), transform 0.6s var(--ease);
}
.work-card:first-child { width: 580px; }
.work-card.hidden { opacity: 0; pointer-events: none; width: 0; padding: 0; overflow: hidden; }
.work-img { width: 100%; height: 100%; transition: transform 0.7s var(--ease); position: relative; }
.work-card:hover .work-img { transform: scale(1.04); }
.work-card:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px var(--border-mid); }
.work-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.97) 0%, rgba(6,6,6,0.25) 55%, transparent 100%);
  z-index: 1;
}
.work-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px; z-index: 2;
  transform: translateY(22px); transition: transform 0.4s var(--ease);
}
.work-card:hover .work-info { transform: translateY(0); }
.w-cat { font-family: 'Space Mono', monospace; font-size: 7.5px; color: var(--lime); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 8px; }
.w-title { font-family: 'Oxanium', sans-serif; font-weight: 700; font-size: 22px; color: #f0ede6; margin-bottom: 8px; }
.w-desc { font-size: 12px; color: #666; line-height: 1.65; opacity: 0; transform: translateY(8px); transition: opacity 0.4s 0.1s, transform 0.4s 0.1s; }
.work-card:hover .w-desc { opacity: 1; transform: translateY(0); }
.w-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-family: 'Space Mono', monospace; font-size: 7.5px;
  color: var(--lime); letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s 0.18s, transform 0.35s 0.18s;
}
.work-card:hover .w-link { opacity: 1; transform: translateY(0); }

.drag-hint {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding: 0 52px;
  font-family: 'Space Mono', monospace; font-size: 8px;
  color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase;
}
.drag-line { width: 40px; height: 1px; background: var(--border-mid); animation: drag-pulse 2s ease-in-out infinite; }
@keyframes drag-pulse { 0%,100%{opacity:0.3;width:28px;}50%{opacity:1;width:56px;} }

/* ─── PROCESS (TIMELINE) ─────────────────── */
#process { background: var(--bg-card); position: relative; overflow: hidden; }
#process::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.15;
}
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 72px; }
.process-left { position: sticky; top: 120px; }
.process-left-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 130px);
  color: rgba(200,255,0,0.04); line-height: 1;
  pointer-events: none; user-select: none;
}
.process-left-desc { font-size: 14px; color: var(--txt); line-height: 1.85; max-width: 340px; margin-top: 24px; }
.process-timeline { position: relative; padding-left: 52px; display: flex; flex-direction: column; gap: 0; }
.timeline-track {
  position: absolute; left: 16px; top: 0; bottom: 0;
  width: 1px; background: var(--border-mid);
}
.timeline-progress {
  position: absolute; top: 0; left: 0; width: 100%; height: 0;
  background: var(--lime); box-shadow: 0 0 10px var(--lime);
  transition: box-shadow 0.3s;
}
.p-step {
  padding: 36px 32px; border-bottom: 1px solid var(--border);
  position: relative; cursor: none;
  transition: background 0.3s, padding-left 0.3s var(--ease);
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.3s, padding-left 0.3s var(--ease);
}
.p-step.visible { opacity: 1; transform: translateX(0); }
.p-step:hover { background: var(--bg-elevated); padding-left: 40px; }
.p-step-dot {
  position: absolute; left: -44px; top: 40px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-mid); border: 1px solid var(--border-mid);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.p-step.visible .p-step-dot { background: var(--lime); border-color: var(--lime); box-shadow: 0 0 10px var(--lime); }
.p-num {
  font-family: 'Oxanium', sans-serif; font-weight: 800;
  font-size: 44px; color: var(--border-mid); line-height: 1;
  margin-bottom: 16px; transition: color 0.3s;
}
.p-step:hover .p-num { color: var(--lime); }
.p-title { font-family: 'Oxanium', sans-serif; font-weight: 700; font-size: 18px; color: var(--off); margin-bottom: 10px; }
.p-body { font-size: 13px; color: var(--txt); line-height: 1.75; }
.p-tag { display: inline-block; margin-top: 18px; font-family: 'Space Mono', monospace; font-size: 7px; color: var(--lime); letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(200,255,0,0.2); padding: 3px 9px; }
.p-step-time { font-family: 'Space Mono', monospace; font-size: 7.5px; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 10px; }

/* ─── TESTIMONIALS (SLIDER) ──────────────── */
#testimonials { position: relative; overflow: hidden; }
.t-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 22vw, 280px);
  color: rgba(200,255,0,0.012); white-space: nowrap;
  pointer-events: none; user-select: none; letter-spacing: 0.04em;
}
.slider-wrapper { overflow: hidden; position: relative; }
.slider-track {
  display: flex;
  will-change: transform;
}
.t-slide {
  flex-shrink: 0; width: 100%;
  padding: 0 52px;
}
.t-slide-inner {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.t-card {
  background: var(--bg-card); padding: 40px 36px;
  position: relative; overflow: hidden; cursor: none;
  transition: background 0.3s;
}
.t-card:nth-child(2) { background: var(--bg-surface); }
.t-card:hover { background: var(--bg-elevated); }
.t-card::before {
  content: '"'; position: absolute; top: 10px; right: 16px;
  font-family: 'Bebas Neue', sans-serif; font-size: 120px;
  color: rgba(200,255,0,0.03); line-height: 1; pointer-events: none;
}
.t-bar { width: 28px; height: 2px; background: var(--lime); margin-bottom: 20px; box-shadow: 0 0 6px var(--lime); }
.t-stars { font-size: 12px; color: var(--lime); letter-spacing: 2px; margin-bottom: 14px; }
.t-text { font-size: 13.5px; color: var(--txt); line-height: 1.85; font-style: italic; margin-bottom: 28px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--border); border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oxanium', sans-serif; font-weight: 700; font-size: 13px; color: var(--lime);
  flex-shrink: 0;
}
.t-name { font-size: 13px; color: var(--off); font-weight: 500; }
.t-role { font-family: 'Space Mono', monospace; font-size: 7.5px; color: var(--muted); letter-spacing: 0.1em; margin-top: 2px; }

/* Slider controls */
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 36px; padding: 0 52px;
}
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-mid); cursor: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.slider-dot.active { background: var(--lime); transform: scale(1.4); box-shadow: 0 0 8px var(--lime); }
.slider-arrows { display: flex; gap: 8px; margin-left: 24px; }
.slider-arrow {
  width: 38px; height: 38px; border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.slider-arrow:hover { border-color: var(--lime); background: var(--lime-dim); }
.slider-arrow svg { width: 14px; height: 14px; stroke: var(--off); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ─── PRICING ────────────────────────────── */
#pricing {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); margin-top: 64px;
}
.pricing-card {
  background: var(--bg-card); padding: 44px 36px;
  position: relative; overflow: hidden; cursor: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, background 0.3s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.pricing-card.featured {
  background: var(--bg-surface);
  border: 1px solid var(--lime);
  z-index: 1;
}
.pricing-card.featured:hover { box-shadow: 0 24px 64px rgba(200,255,0,0.1), 0 0 0 1px var(--lime); }
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: #060606;
  font-family: 'Oxanium', sans-serif; font-weight: 800;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 16px;
}
.pricing-tier {
  font-family: 'Space Mono', monospace; font-size: 8px;
  color: var(--muted); letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 72px);
  color: var(--off); line-height: 1; margin-bottom: 4px;
}
.pricing-price-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 60px);
  color: var(--off); line-height: 1; margin-bottom: 4px;
}
.pricing-card.featured .pricing-price-label { color: var(--lime); }
.pricing-tagline {
  font-size: 12px; color: var(--txt); margin-bottom: 8px;
  font-style: italic; line-height: 1.4;
}
.pricing-period {
  font-family: 'Space Mono', monospace; font-size: 8px;
  color: var(--muted); letter-spacing: 0.15em; margin-bottom: 28px;
}
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-feat {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--txt); line-height: 1.5;
}
.feat-check {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
}
.feat-check svg { width: 100%; height: 100%; stroke: var(--lime); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.check-path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.6s var(--ease);
}
.revealed .check-path { stroke-dashoffset: 0; }
.pricing-cta { width: 100%; }
.pricing-cta .btn-lime { width: 100%; justify-content: center; }
.pricing-cta .btn-outline { width: 100%; justify-content: center; }

/* ─── FAQ ────────────────────────────────── */
#faq { background: var(--bg); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 80px; margin-top: 64px;
  align-items: start;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden; cursor: none;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 16px;
  font-family: 'Oxanium', sans-serif; font-weight: 600;
  font-size: 16px; color: var(--off); line-height: 1.3;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--lime); }
.faq-toggle {
  width: 28px; height: 28px; border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s, transform 0.4s var(--ease);
}
.faq-item.open .faq-toggle { border-color: var(--lime); background: var(--lime-dim); transform: rotate(45deg); }
.faq-toggle svg { width: 12px; height: 12px; stroke: var(--off); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.faq-body {
  height: 0; overflow: hidden;
}
.faq-body-inner {
  padding: 0 0 24px;
  font-size: 13.5px; color: var(--txt); line-height: 1.85;
}

/* ─── ABOUT ──────────────────────────────── */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  background: var(--bg); position: relative; overflow: hidden;
}
#about::before {
  content: 'NOVU';
  position: absolute; right: -50px; bottom: -60px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(160px, 24vw, 320px); line-height: 1;
  color: rgba(200,255,0,0.018); pointer-events: none;
}
.about-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 44px; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 70px;
  background: var(--lime); box-shadow: 0 0 16px var(--lime);
}
.about-big { font-family: 'Bebas Neue', sans-serif; font-size: 88px; color: var(--lime); line-height: 1; }
.about-big-sub { font-family: 'Space Mono', monospace; font-size: 8px; color: var(--muted); letter-spacing: 0.25em; text-transform: uppercase; margin-top: 3px; }
.about-bars { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.a-bar-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.a-bar-label { font-family: 'Space Mono', monospace; font-size: 7.5px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.a-bar-pct { font-family: 'Space Mono', monospace; font-size: 7.5px; color: var(--lime); }
.a-bar-track { height: 1px; background: var(--border); position: relative; overflow: hidden; }
.a-bar-fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--lime); width: 0; transition: width 1.5s var(--ease); box-shadow: 0 0 6px var(--lime); }
.about-float {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--bg); border: 1px solid var(--border);
  padding: 12px 18px; font-family: 'Space Mono', monospace;
  font-size: 7px; color: var(--lime); letter-spacing: 0.2em; text-transform: uppercase;
}
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px); color: var(--off);
  line-height: 0.88; margin-bottom: 24px;
}
.about-title .lime { color: var(--lime); }
.about-body { font-size: 14.5px; color: var(--txt); line-height: 1.88; margin-bottom: 14px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.about-tag {
  font-family: 'Space Mono', monospace; font-size: 7px;
  color: var(--txt); border: 1px solid var(--border);
  padding: 7px 13px; letter-spacing: 0.15em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s; cursor: none;
}
.about-tag:hover { border-color: var(--lime); color: var(--lime); }

/* ─── CONTACT ────────────────────────────── */
#contact {
  background: var(--bg-card);
  position: relative; overflow: hidden; text-align: center;
}
.contact-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px);
}
.contact-orb-1 { width: 500px; height: 500px; background: rgba(200,255,0,0.05); top: -120px; left: -120px; }
.contact-orb-2 { width: 350px; height: 350px; background: rgba(200,255,0,0.04); bottom: -80px; right: 15%; }
.contact-orb-3 { width: 600px; height: 600px; background: rgba(200,255,0,0.025); top: 40%; right: -180px; }
.contact-avail {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border: 1px solid rgba(34,197,94,0.3);
  border-radius: 40px; margin-bottom: 36px;
  font-family: 'Space Mono', monospace; font-size: 8px;
  color: #4ade80; letter-spacing: 0.2em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.contact-avail-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px #22c55e;
  animation: avail-pulse 2s ease-in-out infinite;
}
.contact-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 11vw, 140px); line-height: 0.86;
  letter-spacing: 0.02em; margin-bottom: 24px; position: relative; z-index: 1;
}
.contact-big .lime { color: var(--lime); }
.contact-big .outline { -webkit-text-stroke: 1.5px var(--off); color: transparent; }
.contact-sub { font-size: 15px; color: var(--txt); max-width: 460px; margin: 0 auto 48px; line-height: 1.8; position: relative; z-index: 1; }
.contact-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; position: relative; z-index: 1; }
.contact-info { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.c-info { display: flex; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 8px; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; }
.c-info:hover { color: var(--lime); }
.c-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border-mid); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--lime) 50%, transparent 100%);
  opacity: 0.1;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 52px; padding: 64px 52px 52px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tagline { font-size: 13.5px; color: var(--txt); line-height: 1.75; max-width: 240px; }
.footer-col-title {
  font-family: 'Space Mono', monospace; font-size: 7.5px;
  color: var(--lime); letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link {
  font-family: 'Space Mono', monospace; font-size: 8px;
  color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-link:hover { color: var(--lime); padding-left: 4px; }
.footer-link::before { content: '→'; opacity: 0; transition: opacity 0.2s; font-size: 10px; }
.footer-link:hover::before { opacity: 1; }
.footer-bottom {
  padding: 20px 52px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-family: 'Space Mono', monospace; font-size: 8px; color: var(--muted); letter-spacing: 0.1em; }
.footer-made { font-family: 'Space Mono', monospace; font-size: 8px; color: var(--muted); letter-spacing: 0.1em; }
.footer-made .lime { color: var(--lime); }

/* ─── CHAR ANIMATION (hero) ──────────────── */
.char {
  display: inline-block;
  transform: translateY(110%); opacity: 0;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-left { position: relative; top: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  #nav { padding: 16px 22px; }
  #nav.stuck { padding: 11px 22px; }
  .nav-right .nav-link, .nav-avail { display: none; }
  #hero { padding: 90px 22px 60px; }
  .hero-stats, .hero-badge { display: none; }
  .hero-scroll { left: 22px; }
  .section { padding: 80px 22px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 36px 24px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  #services .services-header { grid-template-columns: 1fr; }
  .services-desc { margin-left: 0; margin-top: 14px; }
  .service-item { grid-template-columns: 48px 36px 1fr; }
  .service-tags { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .work-header, .work-filters, .drag-hint { padding: 0 22px; }
  .work-track { padding: 0 22px; scroll-snap-type: x mandatory; perspective: none; }
  .work-card { scroll-snap-align: start; width: 300px; height: 400px; }
  .work-card:first-child { width: 340px; }
  .process-layout { grid-template-columns: 1fr; }
  .t-slide { padding: 0 22px; }
  .t-slide-inner { grid-template-columns: 1fr; }
  .slider-controls { padding: 0 22px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1px; }
  .pricing-card { transform: none !important; }
  #about { grid-template-columns: 1fr; padding: 80px 22px; gap: 36px; }
  #about::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 22px 32px; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 16px 22px; text-align: center; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .ol-footer { display: none; }
  #floating-cta { display: block; }
  .contact-big { font-size: clamp(44px, 14vw, 100px); }
  .process-left-big { display: none; }
  .process-timeline { padding-left: 36px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(58px, 18vw, 96px); }
  .s-title { font-size: clamp(44px, 12vw, 68px); }
  .stat-num { font-size: clamp(52px, 14vw, 80px); }
  .hero-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  .btn-lime, .btn-outline { width: 100%; justify-content: center; }
  .section { padding: 60px 18px; }
  .about-big { font-size: 72px; }
  .about-card { padding: 28px 22px; }
  .why-card { padding: 36px 24px; }
  .pricing-card { padding: 32px 24px; }
  .t-card { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr; }
  .process-timeline { padding-left: 28px; }
  .p-step { padding: 28px 20px; }
  .faq-grid { gap: 0; }
  .work-card { width: 260px; height: 360px; }
  .work-card:first-child { width: 280px; }
  .service-item { grid-template-columns: 40px 1fr; }
  .service-icon { display: none; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item:nth-child(3) { border-right: none; }
}

/* ─── TOUCH — disable heavy desktop effects ── */
@media (hover: none) {
  #cur, #cur-ring, .cur-trail, .cur-label { display: none !important; }
  body { cursor: auto !important; }
  .nav-menu-btn, .theme-btn, .btn-lime, .btn-outline,
  .service-item, .p-step, .t-card, .why-card, .pricing-card,
  .faq-question, .filter-btn, .about-tag { cursor: auto !important; }
  .work-track { perspective: none !important; }
}
