/* ============================================
   GLOBE SKILLZ — Design System
   Futuristic • Glassy • Cinematic
   ============================================ */

:root {
  /* Palette — Iridescent (default) */
  --bg: #05070d;
  --bg-2: #0a0e1a;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.18);
  --text: #eef1f7;
  --text-dim: #a2a9bb;
  --text-mute: #6c7386;

  --accent-1: #7c5cff;   /* violet */
  --accent-2: #22d3ee;   /* cyan */
  --accent-3: #a3ff5c;   /* lime */
  --accent-warm: #ff7ab8;/* pink glow */

  --glow: 0 0 60px rgba(124,92,255,0.35), 0 0 120px rgba(34,211,238,0.18);
  --grad-brand: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(124,92,255,.85), rgba(34,211,238,.85), rgba(163,255,92,.85));

  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.7,0,.2,1);

  --container: 1280px;
  --intensity: 1; /* 0..1 multiplier for animation intensity */
}

/* ---------- Theme variants (Tweaks) ---------- */
[data-theme="cyan-lime"] {
  --accent-1: #22d3ee;
  --accent-2: #a3ff5c;
  --accent-3: #7c5cff;
  --grad-brand: linear-gradient(135deg, #22d3ee 0%, #a3ff5c 100%);
  --glow: 0 0 60px rgba(34,211,238,.4), 0 0 120px rgba(163,255,92,.18);
}
[data-theme="violet-pink"] {
  --accent-1: #a06bff;
  --accent-2: #ff5cae;
  --accent-3: #ffb85c;
  --grad-brand: linear-gradient(135deg, #a06bff 0%, #ff5cae 100%);
  --glow: 0 0 60px rgba(160,107,255,.4), 0 0 120px rgba(255,92,174,.2);
}
[data-theme="gold-emerald"] {
  --accent-1: #ffcc5c;
  --accent-2: #22c58a;
  --accent-3: #7c5cff;
  --grad-brand: linear-gradient(135deg, #ffcc5c 0%, #22c58a 100%);
  --glow: 0 0 60px rgba(255,204,92,.35), 0 0 120px rgba(34,197,138,.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: color-mix(in oklab, var(--accent-1) 60%, transparent); color: white; }

/* ---------- Ambient background layers ---------- */
.bg-mesh {
  position: fixed; inset: -20%; z-index: -3; pointer-events: none;
  background:
    radial-gradient(45vmax 45vmax at 15% 20%, color-mix(in oklab, var(--accent-1) 35%, transparent), transparent 60%),
    radial-gradient(40vmax 40vmax at 85% 15%, color-mix(in oklab, var(--accent-2) 28%, transparent), transparent 60%),
    radial-gradient(50vmax 50vmax at 50% 90%, color-mix(in oklab, var(--accent-3) 22%, transparent), transparent 60%),
    radial-gradient(30vmax 30vmax at 90% 80%, color-mix(in oklab, var(--accent-warm) 22%, transparent), transparent 60%);
  filter: blur(60px) saturate(140%);
  opacity: .55;
  animation: meshDrift 32s var(--ease-in-out) infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(3%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(-2%, 3%, 0) scale(1.02); }
}
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  opacity: .6;
}
.bg-noise {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  mix-blend-mode: overlay; opacity: .18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body.no-grain .bg-noise { display: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  transition: width .2s var(--ease-out), height .2s var(--ease-out), background .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .3s, background .3s, opacity .3s;
}
body.cursor-hover .cursor-ring { width: 64px; height: 64px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.9); }
body.cursor-hover .cursor-dot { width: 4px; height: 4px; }
body.cursor-view .cursor-ring { width: 84px; height: 84px; background: linear-gradient(135deg, var(--accent-1), var(--accent-2)); border-color: transparent; mix-blend-mode: normal; }
body.cursor-view .cursor-ring::before { content: "View"; position: absolute; inset: 0; display: grid; place-items: center; color: #06070d; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
body.no-cursor .cursor-dot, body.no-cursor .cursor-ring { display: none; }
body.no-cursor, body.no-cursor button, body.no-cursor a { cursor: auto; }

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
  button, a { cursor: pointer; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease-out), visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { position: relative; width: min(78vw, 520px); aspect-ratio: 1; display: grid; place-items: center; }
.preloader__globe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: spinY 12s linear infinite;
}
.preloader__globe path, .preloader__globe circle, .preloader__globe ellipse {
  fill: none; stroke: url(#pgrad); stroke-width: 1.2;
  stroke-dasharray: 900; stroke-dashoffset: 900;
  animation: drawStroke 2.2s var(--ease-out) forwards;
}
.preloader__globe .p2 { animation-delay: .15s; }
.preloader__globe .p3 { animation-delay: .3s; }
.preloader__globe .p4 { animation-delay: .45s; }
.preloader__wordmark {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 9vw, 92px);
  line-height: .9;
  text-align: center;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -.03em;
  transform: scale(.86); opacity: 0;
  animation: wordmarkIn 1s .3s var(--ease-out) forwards;
  text-shadow: 0 0 40px rgba(124,92,255,.4);
}
.preloader__bar {
  position: absolute; bottom: -60px; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,.08); overflow: hidden;
  border-radius: 2px;
}
.preloader__bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-brand);
  transform-origin: left;
  animation: barFill 2.2s var(--ease-in-out) forwards;
}
.preloader__count {
  position: absolute; bottom: -92px; left: 0; right: 0;
  text-align: center; font-family: var(--font-mono);
  color: var(--text-dim); font-size: 12px; letter-spacing: .3em;
}
@keyframes drawStroke { to { stroke-dashoffset: 0; } }
@keyframes wordmarkIn { to { transform: scale(1); opacity: 1; } }
@keyframes barFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes spinY { to { transform: rotateY(360deg); } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: min(1200px, calc(100vw - 32px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 22px;
  border-radius: 100px;
  background: rgba(10,14,26,.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .5s var(--ease-out), padding .3s, background .3s;
}
.nav.scrolled { padding: 8px 10px 8px 18px; background: rgba(10,14,26,.75); }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.nav__brand-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  box-shadow: 0 0 20px color-mix(in oklab, var(--accent-1) 45%, transparent);
  position: relative; overflow: hidden;
}
.nav__brand-mark::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%;
  background: var(--bg-2);
}
.nav__brand-mark svg { position: relative; z-index: 1; width: 22px; height: 22px; }
.nav__brand span:last-child { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav__menu { display: flex; align-items: center; gap: 2px; }
.nav__link {
  padding: 8px 14px; border-radius: 100px; font-size: 14px; color: var(--text-dim);
  transition: color .25s, background .25s;
  position: relative;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px 10px 20px; border-radius: 100px;
  background: var(--grad-brand); color: #06070d; font-weight: 600; font-size: 14px;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  box-shadow: 0 8px 30px color-mix(in oklab, var(--accent-1) 40%, transparent);
}
.nav__cta:hover { box-shadow: 0 12px 40px color-mix(in oklab, var(--accent-1) 60%, transparent); }
.nav__cta svg { transition: transform .3s var(--ease-out); }
.nav__cta:hover svg { transform: translateX(3px); }
@media (max-width: 780px) {
  .nav__menu { display: none; }
}

/* ---------- Section base ---------- */
section { position: relative; padding: clamp(80px, 12vw, 160px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 10px var(--accent-3); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.03em; line-height: 1.02; margin: 0; }
.h-display { font-size: clamp(42px, 8vw, 108px); font-weight: 700; letter-spacing: -.04em; }
.h-section { font-size: clamp(36px, 5.5vw, 72px); font-weight: 600; }
.h-card { font-size: clamp(22px, 2.2vw, 30px); font-weight: 600; }
.p-lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-dim); max-width: 60ch; line-height: 1.55; }

.text-grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-outline { color: transparent; -webkit-text-stroke: 1.2px rgba(255,255,255,.5); }

/* Split reveal */
.split .char, .split .word {
  display: inline-block; opacity: 0; transform: translateY(1.2em) rotateX(-40deg);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.split.in .char, .split.in .word { opacity: 1; transform: translateY(0) rotateX(0); }
.split .word + .word { margin-left: .28em; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }

/* ---------- HERO ---------- */
.hero { min-height: 100vh; display: grid; place-items: center; padding-top: 110px; padding-bottom: 150px; overflow: hidden; }
.hero__inner { padding: 12px 0; }
.hero__spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(360px 360px at var(--mx,50%) var(--my,40%),
    color-mix(in oklab, var(--accent-2) 30%, transparent) 0%, transparent 60%);
  transition: background .1s linear;
}
.hero__inner { position: relative; z-index: 1; text-align: center; width: 100%; }
.hero__stage {
  position: relative;
  width: min(56vmin, 560px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid; place-items: center;
  isolation: isolate;
}
.hero__globe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.hero__globe svg { width: 100%; height: 100%; overflow: visible; }
.hero__globe .g-lat, .hero__globe .g-lng, .hero__globe .g-eq {
  fill: none; stroke: url(#hgrad); stroke-width: 1;
  opacity: .8;
  filter: drop-shadow(0 0 6px color-mix(in oklab, var(--accent-2) 60%, transparent));
}
.hero__globe .g-eq { stroke-width: 1.6; opacity: 1; stroke: url(#hgradbold); }
.hero__globe .g-outer { stroke: url(#hgradbold); stroke-width: 1.6; opacity: .9; fill: none; }
.hero__globe .g-dot { fill: color-mix(in oklab, var(--accent-3) 90%, transparent); }
.hero__globe-rotate { animation: heroSpin calc(30s / max(var(--intensity), .3)) linear infinite; transform-origin: center; }

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

.hero__wordmark {
  position: relative; z-index: 3;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 8.4vw, 112px);
  line-height: .9; letter-spacing: -.05em;
  text-align: center; pointer-events: none;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.7));
  white-space: nowrap;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%;
  animation: wordmarkPop 1.1s .3s cubic-bezier(.16,1,.3,1) both;
}
.hero__wordmark .w1, .hero__wordmark .w2 { display: block !important; line-height: .95; }
@keyframes wordmarkPop {
  0%   { opacity: 0; transform: scale(.86) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.hero__wordmark .w1, .hero__wordmark .w2 { display: block; }
.hero__wordmark .w1 { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__wordmark .w2 { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.85); }

.hero__tag {
  margin-top: 28px; font-size: clamp(14px, 1.3vw, 18px); color: var(--text-dim);
  max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.5;
}
.hero__cta-row {
  margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  overflow: hidden; isolation: isolate;
}
.btn-primary {
  background: var(--grad-brand); color: #06070d;
  box-shadow: 0 12px 40px color-mix(in oklab, var(--accent-1) 45%, transparent);
}
.btn-primary::before {
  content: ""; position: absolute; inset: -2px; border-radius: 100px;
  background: var(--grad-brand); filter: blur(20px); opacity: .5; z-index: -1;
  transition: opacity .4s;
}
.btn-primary:hover::before { opacity: .9; }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-mute); font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, var(--text-mute), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -20px; left: 0; right: 0; height: 12px; background: var(--accent-3); animation: scrollDown 2s infinite; box-shadow: 0 0 10px var(--accent-3); }
@keyframes scrollDown { to { top: 100%; } }

.hero__badges {
  margin-top: 28px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute);
  max-width: 820px; margin-left: auto; margin-right: auto;
  line-height: 1;
}
.hero__badges span {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--border); background: rgba(5,7,13,.5);
  white-space: nowrap; line-height: 1;
  backdrop-filter: blur(6px);
}
.hero__badges span::before { content: "◆"; margin-right: 7px; color: var(--accent-2); font-size: 9px; line-height: 1; }
@media (max-width: 640px) {
  .hero__badges { gap: 6px; }
  .hero__badges span { font-size: 9.5px; padding: 5px 10px; letter-spacing: .06em; }
}

/* ---------- Glass card base ---------- */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 40%);
  mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  mask-composite: exclude; -webkit-mask-composite: xor;
  padding: 1px;
}

/* ---------- Section headers ---------- */
.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 60px; max-width: 720px; }
.section-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- About ---------- */
.about__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.about__visual {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-xl); overflow: hidden;
  background:
    radial-gradient(60% 60% at 30% 30%, color-mix(in oklab, var(--accent-1) 60%, transparent), transparent 65%),
    radial-gradient(60% 60% at 70% 70%, color-mix(in oklab, var(--accent-2) 55%, transparent), transparent 65%),
    #0a0e1a;
  border: 1px solid var(--border);
}
.about__visual::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'><defs><pattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'><path d='M40 0H0V40' fill='none' stroke='white' stroke-opacity='.08'/></pattern></defs><rect width='100%25' height='100%25' fill='url(%23p)'/></svg>");
}
.about__orbit { position: absolute; inset: 12%; border: 1px dashed rgba(255,255,255,.2); border-radius: 50%; animation: spin 24s linear infinite; }
.about__orbit::before, .about__orbit::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 20px var(--accent-3); top: -6px; left: 50%; transform: translateX(-50%); }
.about__orbit::after { background: var(--accent-1); box-shadow: 0 0 20px var(--accent-1); top: auto; bottom: -6px; }
.about__orbit-2 { position: absolute; inset: 26%; border: 1px dashed rgba(255,255,255,.15); border-radius: 50%; animation: spin 16s linear infinite reverse; }
.about__orbit-2::before { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 15px var(--accent-2); top: 50%; left: -5px; transform: translateY(-50%); }
.about__portrait {
  position: absolute; inset: 10%;
  border-radius: 28px; overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  box-shadow: 0 40px 100px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
  z-index: 2;
}
.about__portrait image-slot { display: block; width: 100%; height: 100%; }
.about__mark {
  position: absolute; z-index: 3;
  width: 72px; height: 72px; right: 4%; top: 4%;
  border-radius: 50%;
  background: rgba(5,7,13,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  padding: 10px;
  box-shadow: 0 20px 60px color-mix(in oklab, var(--accent-1) 40%, transparent);
  animation: markFloat 4s var(--ease-in-out) infinite alternate;
}
.about__mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 12px rgba(124,92,255,.5)); }
@keyframes markFloat { to { transform: translateY(-8px) rotate(-6deg); } }
/* legacy alias in case referenced */
.about__logo { position: absolute; inset: 42%; }
.about__logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 30px rgba(124,92,255,.6)); }
@keyframes spin { to { transform: rotate(360deg); } }

.about__body h2 { margin-bottom: 24px; }
.about__body p { color: var(--text-dim); font-size: 17px; margin-bottom: 20px; }
.about__stats { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about__stat { padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); background: rgba(255,255,255,.02); min-width: 0; }
.about__stat b { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 34px); font-weight: 700; display: block; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; letter-spacing: -.02em; }
.about__stat span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); }

@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } .about__visual { max-width: 480px; margin: 0 auto; } }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 820px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 40px; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition: transform .4s var(--ease-out);
  cursor: none;
}
.service-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.service-card__icon {
  width: 68px; height: 68px; border-radius: 20px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent-1) 30%, transparent), color-mix(in oklab, var(--accent-2) 30%, transparent));
  border: 1px solid var(--border-strong);
  box-shadow: 0 10px 30px color-mix(in oklab, var(--accent-1) 25%, transparent);
}
.service-card__icon svg { width: 34px; height: 34px; color: white; }
.service-card__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .3em; color: var(--text-mute); }
.service-card h3 { margin-top: 28px; }
.service-card p { color: var(--text-dim); font-size: 15px; margin-top: 12px; }
.service-card__tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.service-card__tags span { padding: 6px 12px; border-radius: 100px; border: 1px solid var(--border); font-size: 12px; color: var(--text-dim); background: rgba(255,255,255,.02); }
.service-card__foot { margin-top: 30px; display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-dim); }
.service-card__foot .arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; color: #06070d; transition: transform .35s var(--ease-out); }
.service-card:hover .service-card__foot .arrow { transform: rotate(-45deg); }

/* ---------- Process ---------- */
.process__list { position: relative; display: grid; gap: 20px; }
.process__list::before {
  content: ""; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
}
.process__list::after {
  content: ""; position: absolute; left: 40px; top: 0; width: 2px;
  height: var(--progress, 0%);
  background: var(--grad-brand);
  box-shadow: 0 0 20px var(--accent-1);
  transition: height .1s linear;
}
.process-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 30px; align-items: flex-start;
  padding: 30px 40px 30px 0;
}
.process-step__num {
  position: relative; z-index: 1;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--text);
  transition: all .5s var(--ease-out);
}
.process-step.active .process-step__num { background: var(--grad-brand); color: #06070d; border-color: transparent; box-shadow: 0 0 40px color-mix(in oklab, var(--accent-1) 60%, transparent); transform: scale(1.05); }
.process-step__body h3 { font-size: clamp(22px, 2.4vw, 32px); margin-bottom: 10px; }
.process-step__body p { color: var(--text-dim); max-width: 560px; }
.process-step__meta { margin-top: 14px; display: flex; gap: 20px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); }
.process-step__meta span::before { content: "→"; margin-right: 6px; color: var(--accent-3); }

/* ---------- Portfolio ---------- */
.portfolio__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.p-card {
  grid-column: span 2; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: none;
  border: 1px solid var(--border);
  background: #0a0e1a;
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-out);
}
.p-card.wide { grid-column: span 3; aspect-ratio: 16/10; }
.p-card__bg { position: absolute; inset: 0; transition: transform .8s var(--ease-out); }
.p-card:hover .p-card__bg { transform: scale(1.05); }
.p-card__mock {
  position: absolute; inset: 20% 15%; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.p-card__mock-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,.1); }
.p-card__mock-bar.short { width: 45%; }
.p-card__mock-bar.grad { background: var(--grad-brand); }
.p-card__mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 6px; flex: 1; }
.p-card__mock-grid > * { border-radius: 6px; background: rgba(255,255,255,.05); }
.p-card__overlay {
  position: absolute; inset: 0; z-index: 2;
  padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(5,7,13,.9) 0%, rgba(5,7,13,.4) 50%, transparent 100%);
}
.p-card__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--accent-3); margin-bottom: 8px; }
.p-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.p-card__meta { display: flex; gap: 14px; margin-top: 12px; font-size: 12px; color: var(--text-dim); }
.p-card__meta span::before { content: "•"; margin-right: 8px; color: var(--accent-2); }

.p-card-1 { background: linear-gradient(135deg, #1a0f3d, #061020); }
.p-card-2 { background: linear-gradient(135deg, #0f2a3d, #061020); }
.p-card-3 { background: linear-gradient(135deg, #3d0f2a, #061020); }
.p-card-4 { background: linear-gradient(135deg, #0f3d1f, #061020); }
.p-card-5 { background: linear-gradient(135deg, #3d2a0f, #061020); }
.p-card-6 { background: linear-gradient(135deg, #0f1a3d, #061020); }

.p-card__slot { position: absolute; inset: 0; z-index: 1; display: block; width: 100%; height: 100%; border-radius: 0; }
.p-card__slot::part(root) { border-radius: 0; }


@media (max-width: 820px) { .portfolio__grid { grid-template-columns: 1fr 1fr; } .p-card, .p-card.wide { grid-column: span 2; aspect-ratio: 4/3; } }

/* ---------- Stats ---------- */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 820px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  padding: 28px; border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  min-width: 0;
}
.stat-card::before {
  content: ""; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent-1) 20%, transparent), transparent 50%);
  animation: statSpin 20s linear infinite;
}
.stat-card b {
  font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 56px); font-weight: 700;
  display: block; line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
  letter-spacing: -.03em;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.stat-card span { display: block; margin-top: 12px; color: var(--text-dim); font-size: 14px; position: relative; }
.stat-card em { display: block; margin-top: 8px; font-style: normal; font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); position: relative; }
@keyframes statSpin { to { transform: rotate(360deg); } }

/* ---------- Coverage / Location grid ---------- */
.coverage__wrap { position: relative; }
.coverage__controls {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; align-items: center;
}
.coverage__tabs { display: flex; gap: 6px; padding: 6px; border-radius: 100px; background: rgba(255,255,255,.04); border: 1px solid var(--border); }
.coverage__tab {
  padding: 8px 16px; border-radius: 100px; font-size: 13px; color: var(--text-dim);
  transition: all .3s;
}
.coverage__tab.active { background: var(--grad-brand); color: #06070d; font-weight: 600; }
.coverage__search {
  display: flex; align-items: center; gap: 10px; flex: 1; min-width: 240px;
  padding: 10px 16px; border-radius: 100px; background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.coverage__search input { flex: 1; background: transparent; border: 0; outline: 0; color: var(--text); font-size: 14px; }
.coverage__search svg { color: var(--text-mute); width: 16px; height: 16px; }

.coverage__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px;
  max-height: 620px; overflow-y: auto;
  padding: 4px 4px 4px 0;
  scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent;
}
.coverage__grid::-webkit-scrollbar { width: 8px; }
.coverage__grid::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }
.loc-card {
  padding: 18px 20px; border-radius: 16px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  transition: all .3s var(--ease-out);
  display: flex; flex-direction: column; gap: 8px;
  cursor: none; position: relative; overflow: hidden;
}
.loc-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent-1) 15%, transparent), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.loc-card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: rgba(255,255,255,.06); }
.loc-card:hover::after { opacity: 1; }
.loc-card__service { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-3); }
.loc-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.2; }
.loc-card__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; font-size: 12px; color: var(--text-mute); }
.loc-card__meta .arrow { color: var(--text-dim); transition: transform .3s; }
.loc-card__desc { font-size: 12.5px; line-height: 1.45; color: var(--text-dim); margin-top: 6px; }
.loc-card:hover .arrow { transform: translateX(4px); color: var(--accent-2); }

.coverage__note {
  margin-top: 24px; padding: 20px 24px; border-radius: var(--radius);
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent-1) 12%, transparent), color-mix(in oklab, var(--accent-2) 8%, transparent));
  border: 1px solid var(--border-strong);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.coverage__note b { font-family: var(--font-display); font-size: 20px; }
.coverage__note span { color: var(--text-dim); font-size: 14px; flex: 1; min-width: 220px; }

/* ---------- Testimonials ---------- */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .testi__grid { grid-template-columns: 1fr; } }
.testi__more { text-align: center; margin-top: 48px; }
.testi-card {
  padding: 34px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.testi-card__stars { display: flex; gap: 3px; color: var(--accent-3); }
.testi-card__stars svg { width: 16px; height: 16px; fill: currentColor; }
.testi-card blockquote { font-family: var(--font-display); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.35; margin: 0; letter-spacing: -.01em; }
.testi-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; color: #06070d; font-weight: 700; font-family: var(--font-display); }
.testi-card__meta b { display: block; font-size: 14px; }
.testi-card__meta span { font-size: 12px; color: var(--text-mute); }
.testi-card.feature { background: linear-gradient(135deg, color-mix(in oklab, var(--accent-1) 15%, transparent), color-mix(in oklab, var(--accent-2) 8%, transparent)); border-color: color-mix(in oklab, var(--accent-1) 30%, var(--border)); }
.testi-card.feature blockquote { font-size: clamp(20px, 2vw, 28px); }


/* ---------- Blog ---------- */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog__grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: rgba(255,255,255,.02); text-decoration: none; transition: transform .35s var(--ease-out), border-color .35s; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__date { font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-mute); }
.blog-card__body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--text); margin: 0; }
.blog-card__body p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0; flex: 1; }
.blog-card__link { font-size: 14px; font-weight: 600; color: var(--accent-2); }
.blog__more { text-align: center; margin-top: 48px; }

/* ---------- Blog article ---------- */
.article { padding: 150px 0 30px; }
.article__wrap { max-width: 820px; }
.article__title { margin: 20px 0 14px; }
.article__meta { color: var(--text-mute); font-size: 14px; margin-bottom: 36px; }
.article__hero { margin: 0 0 48px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); }
.article__hero img { width: 100%; display: block; }
.article__body h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 600; line-height: 1.25; margin: 52px 0 18px; color: var(--text); }
.article__body p { color: var(--text-dim); font-size: 17px; line-height: 1.8; margin: 0 0 20px; }
.article__faq { margin-top: 64px; }
.article__cta { text-align: center; padding: 90px 0; border-top: 1px solid var(--border); margin-top: 80px; }
.blogs-hero { padding: 150px 0 30px; }

/* ---------- Marquee ---------- */
.marquee {
  position: relative; overflow: hidden; padding: 40px 0;
  width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.marquee__track { display: flex; gap: 60px; width: max-content; animation: marquee 45s linear infinite; }
.marquee__item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 600;
  color: var(--text-dim); white-space: nowrap;
  letter-spacing: -.02em;
}
.marquee__item::after { content: "★"; color: var(--accent-2); font-size: .6em; }
.marquee__item:hover { color: var(--text); background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Pricing ---------- */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 36px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 24px;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .4s;
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-6px); }
.price-card.featured {
  background: linear-gradient(160deg, color-mix(in oklab, var(--accent-1) 14%, transparent), rgba(255,255,255,.02));
  border-color: color-mix(in oklab, var(--accent-1) 40%, var(--border));
  box-shadow: 0 30px 80px color-mix(in oklab, var(--accent-1) 25%, transparent);
}
.price-card.featured::before {
  content: "Most Popular"; position: absolute; top: 20px; right: 20px;
  padding: 6px 12px; border-radius: 100px;
  background: var(--grad-brand); color: #06070d;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700;
}
.price-card__name { font-family: var(--font-display); font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); font-weight: 500; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; }
.price-card__price b { font-family: var(--font-display); font-size: 56px; font-weight: 700; letter-spacing: -.03em; }
.price-card__price em { font-style: normal; color: var(--text-mute); font-size: 14px; }
.price-card__desc { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.price-card li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: var(--grad-brand);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/70% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/70% no-repeat;
}
.price-card__cta {
  margin-top: auto;
  padding: 14px 22px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border-strong);
  text-align: center; font-weight: 600; font-size: 14px;
  transition: all .3s;
}
.price-card.featured .price-card__cta { background: var(--grad-brand); color: #06070d; border-color: transparent; }
.price-card__cta:hover { background: rgba(255,255,255,.12); }
.price-card.featured .price-card__cta:hover { box-shadow: 0 10px 30px color-mix(in oklab, var(--accent-1) 60%, transparent); }

/* ---------- FAQ ---------- */
.faq__list { display: flex; flex-direction: column; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq-item.open { border-color: var(--border-strong); background: rgba(255,255,255,.04); }
.faq-item__q {
  width: 100%; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-size: 18px; font-weight: 500; text-align: left;
  cursor: none;
}
.faq-item__toggle {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  display: grid; place-items: center;
  transition: all .4s var(--ease-out);
}
.faq-item.open .faq-item__toggle { background: var(--grad-brand); color: #06070d; transform: rotate(45deg); }
.faq-item__a {
  max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out);
}
.faq-item__a-inner { padding: 0 26px 24px; color: var(--text-dim); font-size: 15px; line-height: 1.65; max-width: 720px; }

/* ---------- Contact / CTA ---------- */
.contact__panel {
  padding: clamp(28px, 5vw, 70px); border-radius: var(--radius-xl);
  background:
    radial-gradient(60% 100% at 100% 0%, color-mix(in oklab, var(--accent-1) 25%, transparent), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, color-mix(in oklab, var(--accent-2) 25%, transparent), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--border-strong);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px;
  min-width: 0;
}
@media (max-width: 900px) { .contact__panel { grid-template-columns: 1fr; gap: 32px; } }
.contact__lhs h2 { margin-bottom: 20px; }
.contact__lhs p { color: var(--text-dim); font-size: 17px; max-width: 460px; }
.contact__info { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.contact__info a { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid var(--border); transition: all .3s; min-width: 0; }
.contact__info a > div { min-width: 0; overflow: hidden; }
.contact__info a b, .contact__info a span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }
.contact__info a:hover { background: rgba(255,255,255,.08); border-color: var(--border-strong); transform: translateX(4px); }
.contact__info .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; color: #06070d; }
.contact__info b { display: block; font-size: 14px; }
.contact__info span { display: block; font-size: 12px; color: var(--text-mute); }

.contact__form { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.contact__form label { display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); min-width: 0; }
.contact__form input, .contact__form textarea, .contact__form select {
  padding: 16px 18px; border-radius: 14px;
  background: rgba(0,0,0,.3); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  transition: border-color .3s, background .3s;
  cursor: none;
  width: 100%; min-width: 0;
  box-sizing: border-box;
}
.contact__form input:focus, .contact__form textarea:focus, .contact__form select:focus {
  border-color: color-mix(in oklab, var(--accent-2) 60%, var(--border));
  background: rgba(0,0,0,.5); outline: none;
}
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
@media (max-width: 480px) { .contact__form-row { grid-template-columns: 1fr; } }
.contact__submit {
  margin-top: 8px;
  padding: 18px 26px; border-radius: 100px;
  background: var(--grad-brand); color: #06070d;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  cursor: none;
  transition: transform .3s, box-shadow .3s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.contact__submit:hover { box-shadow: 0 15px 40px color-mix(in oklab, var(--accent-1) 50%, transparent); }

/* ---------- Footer ---------- */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border); position: relative; }
.footer__wordmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(60px, 14vw, 220px);
  line-height: .9; letter-spacing: -.05em;
  text-align: center;
  color: transparent; -webkit-text-stroke: 1.2px rgba(255,255,255,.25);
  margin-bottom: 60px;
  background-image: var(--grad-brand); -webkit-background-clip: text; background-clip: text;
  background-size: 200% 100%; background-position: 100% 50%;
  animation: fWordShift 6s var(--ease-in-out) infinite alternate;
}
@keyframes fWordShift { to { background-position: 0% 50%; -webkit-text-stroke-color: rgba(255,255,255,.05); } }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 18px; font-weight: 500; }
.footer__col a { display: block; padding: 6px 0; color: var(--text-dim); font-size: 14px; transition: color .3s; }
.footer__col a:hover { color: var(--text); }
.footer__more { display: flex; flex-direction: column; gap: 14px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.footer__more-group { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; font-size: 13.5px; }
.footer__more-group > span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); margin-right: 6px; }
.footer__more-group a { color: var(--text-dim); transition: color .3s; }
.footer__more-group a:hover { color: var(--text); }
.footer__brand { max-width: 320px; }
.footer__brand p { color: var(--text-dim); font-size: 14px; margin: 14px 0 20px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 40px; height: 40px; padding: 0; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: all .3s; }
.footer__socials a:hover { background: var(--grad-brand); color: #06070d; border-color: transparent; transform: translateY(-2px); }
.footer__bottom { padding-top: 30px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: var(--text-mute); font-size: 13px; font-family: var(--font-mono); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; padding: 22px 0 6px; margin-top: 26px; border-top: 1px solid var(--border); }
.footer__legal a { font-size: 13px; color: var(--text-mute); transition: color .3s; }
.footer__legal a:hover { color: var(--text); }

/* ---------- Tweaks Panel ---------- */
 to { opacity: 1; transform: none; } }




@keyframes fabFloat { to { transform: translateY(-6px); } }

/* ---------- Location page specific ---------- */
.loc-hero {
  min-height: 82vh; padding-top: 140px; display: grid; place-items: center;
  position: relative;
  overflow-x: clip;
}
.loc-hero__breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 20px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.loc-hero__breadcrumb a { color: var(--text-dim); }
.loc-hero__breadcrumb span { color: var(--accent-3); }
.loc-hero__title { text-align: center; max-width: 1000px; margin: 0 auto; }
.loc-hero__sub { text-align: center; max-width: 620px; margin: 30px auto 0; color: var(--text-dim); font-size: 17px; }
.loc-hero__stats { margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 900px; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .loc-hero__stats { grid-template-columns: repeat(2, 1fr); } }
.loc-hero__stats > div { padding: 20px; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid var(--border); text-align: center; }
.loc-hero__stats b { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 700; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.loc-hero__stats span { font-size: 11px; color: var(--text-mute); letter-spacing: .15em; text-transform: uppercase; }

.loc-tactics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .loc-tactics { grid-template-columns: 1fr; } }
.loc-tactic { padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: rgba(255,255,255,.03); }
.loc-tactic__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em; color: var(--accent-3); margin-bottom: 14px; }
.loc-tactic h3 { font-size: 22px; margin-bottom: 10px; }
.loc-tactic p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

.loc-related { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.loc-related a { padding: 14px 18px; border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,.03); font-size: 13px; color: var(--text-dim); transition: all .3s; display: flex; align-items: center; justify-content: space-between; }
.loc-related a:hover { border-color: var(--border-strong); background: rgba(255,255,255,.06); color: var(--text); transform: translateX(3px); }
.loc-related a::after { content: "→"; color: var(--accent-2); }

/* ---------- Utilities ---------- */
.magnetic { display: inline-block; transition: transform .4s var(--ease-out); }
.parallax { will-change: transform; }
.reduce-motion body, .reduce-motion * { animation: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* WhatsApp floating button */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 499;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37, 211, 102, .6); }
.wa-fab svg { width: 30px; height: 30px; fill: currentColor; }
@media (max-width: 640px) { .wa-fab { right: 14px; bottom: 14px; width: 52px; height: 52px; } }

/* ---------- Portfolio cards: real images + hover ---------- */
.p-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .8s var(--ease-out), filter .8s var(--ease-out); }
.p-card { transition: border-color .4s ease, box-shadow .4s ease; }
.p-card:hover { border-color: var(--border-strong); box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.07); z-index: 2; }
.p-card:hover .p-card__bg { transform: scale(1.06); filter: saturate(1.08); }
.p-card__overlay { transition: background .5s ease; }
.p-card:hover .p-card__overlay { background: linear-gradient(to top, rgba(5,7,13,.96) 0%, rgba(5,7,13,.55) 55%, rgba(5,7,13,.05) 100%); }
.p-card__title { transition: transform .5s var(--ease-out); }
.p-card:hover .p-card__title { transform: translateY(-4px); }
.p-card__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: #fff; opacity: 0; transform: translateY(10px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.p-card__cta svg { transition: transform .3s ease; }
.p-card:hover .p-card__cta { opacity: 1; transform: translateY(0); }
.p-card:hover .p-card__cta svg { transform: translateX(5px); }
@media (hover: none) { .p-card__cta { opacity: 1; transform: none; } }
/* ---------- Case study proof gallery ---------- */
.proj-proof { margin: 50px 0 10px; }
.proj-proof h2 { margin-bottom: 18px; }
.proj-proof__grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.proj-proof figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #0a0e1a; }
.proj-proof img { width: 100%; display: block; }
.proj-proof figcaption { padding: 12px 16px; font-size: 12px; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: .06em; }

/* ---------- Portfolio subsections ---------- */
.portfolio__subhead { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; letter-spacing: -.01em; margin: 60px 0 26px; display: flex; align-items: center; gap: 16px; }
.portfolio__subhead::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.portfolio__subhead:first-of-type { margin-top: 44px; }

/* ---------- SEO proof wall (GSC screenshots only) ---------- */
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.seo-proof { display: block; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #0a0e1a; text-decoration: none; transition: transform .5s var(--ease-out), border-color .4s ease, box-shadow .4s ease; }
figure.seo-proof { margin: 0; }
a.seo-proof:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.seo-proof img { width: 100%; display: block; }
.seo-proof__cap { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; }
.seo-proof__cap strong { display: block; color: var(--text); font-size: 15px; font-weight: 600; }
.seo-proof__cap span { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); letter-spacing: .03em; }
.seo-proof__go { font-style: normal; font-size: 13px; color: var(--accent-3); white-space: nowrap; opacity: 0; transform: translateX(-6px); transition: opacity .35s ease, transform .35s ease; }
a.seo-proof:hover .seo-proof__go { opacity: 1; transform: none; }
@media (max-width: 820px) { .seo-grid { grid-template-columns: 1fr; } }

/* ---------- Process: sticky animated visual ---------- */
.process__grid { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: 64px; align-items: start; }
.process__visual { position: sticky; top: 120px; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 24px 0; }
.process__orb { position: relative; width: 300px; height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 44px; }
.process__orb::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1.5px dashed var(--border-strong); animation: orbSpin 26s linear infinite; }
.process__orb::after { content: ""; position: absolute; inset: 30px; border-radius: 50%; background: radial-gradient(circle, var(--accent-1) 0%, transparent 70%); opacity: .12; filter: blur(6px); }
.process__orb-num { position: relative; z-index: 1; font-family: var(--font-display); font-size: clamp(64px, 7vw, 92px); font-weight: 800; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.process__orb.pop .process__orb-num { animation: orbPop .45s var(--ease-out); }
.process__orb-label { position: relative; z-index: 1; font-size: 15px; color: var(--text-dim); max-width: 210px; }
.process__dot { position: absolute; border-radius: 50%; background: var(--grad-brand); z-index: 1; }
.process__dot.d1 { width: 10px; height: 10px; top: 10%; left: 16%; animation: dotFloat 5s ease-in-out infinite; }
.process__dot.d2 { width: 7px; height: 7px; bottom: 14%; right: 12%; animation: dotFloat 6.5s ease-in-out infinite reverse; }
.process__dot.d3 { width: 12px; height: 12px; top: 6%; right: 20%; background: var(--accent-3); opacity: .7; animation: dotFloat 7.5s ease-in-out infinite; }
.process__hint { font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-mute); }
@keyframes orbSpin { to { transform: rotate(360deg); } }
@keyframes orbPop { 0% { transform: scale(.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes dotFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (max-width: 940px) {
  .process__grid { grid-template-columns: 1fr; gap: 24px; }
  .process__visual { position: static; padding: 0; }
  .process__orb { width: 230px; height: 230px; }

.testi-card__stars svg.dim { opacity: .25; }
