/* ============================================================
   GEEKS DIGITAL - Premium growth-engineering website
   Design system + all section styling
   ============================================================ */

:root {
  /* Brand */
  --purple: #7B3FF2;
  --purple-soft: #9d6bff;
  --orange: #FF8A00;
  --ink: #0A2540;
  --bg: #ffffff;
  --card: #F6F9FC;

  /* Derived neutrals (cool, low-chroma) */
  --ink-2: #46566a;          /* secondary text */
  --ink-3: #6b7a8d;          /* tertiary text  */
  --line: rgba(10, 37, 64, 0.08);
  --line-2: rgba(10, 37, 64, 0.12);

  /* Dark surfaces */
  --noir: #060a12;
  --noir-2: #0c121d;
  --noir-card: #131a27;

  /* Type */
  --sans: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(96px, 14vh, 180px);
  --radius-lg: 30px;
  --radius-md: 20px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { overflow-x: clip; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

::selection { background: rgba(123, 63, 242, 0.18); color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Shared type primitives ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px 2px rgba(123, 63, 242, 0.6);
}
.eyebrow.on-dark { color: var(--purple-soft); }
.eyebrow.orange { color: var(--orange); }
.eyebrow.orange::before { background: var(--orange); box-shadow: 0 0 12px 2px rgba(255,138,0,.55); }

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}

.display {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-title {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 46ch;
}

.grad-text {
  background: linear-gradient(105deg, var(--purple) 0%, var(--orange) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --bh: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: var(--bh);
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 10px 30px -10px rgba(10, 37, 64, 0.5);
}
.btn-primary svg { stroke: #fff; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(123, 63, 242, 0.55);
  background: linear-gradient(120deg, var(--purple), #6a2fe0);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--ink); background: rgba(10,37,64,.03); }

.btn-light {
  background: #fff; color: var(--ink);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(0,0,0,.5); }

.btn-sm { --bh: 44px; padding: 0 20px; font-size: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.header-inner {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.6), 0 8px 30px -20px rgba(10,37,64,.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.brand-mark {
  width: 34px; height: 34px;
  display: block;
  object-fit: contain;
  flex: none;
}
.footer-brand .brand-mark { filter: drop-shadow(0 4px 12px rgba(123,63,242,.4)); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}
.nav a {
  position: relative;
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 10px;
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1.5px; background: var(--purple);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { justify-self: end; display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta .btn span.hide-sm { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-glow::before {
  width: 620px; height: 620px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(123,63,242,.20), transparent 65%);
}
.hero-glow::after {
  width: 560px; height: 560px;
  top: 120px; right: -140px;
  background: radial-gradient(circle, rgba(255,138,0,.16), transparent 62%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  width: 100%;
}

.hero-copy { max-width: 600px; }
.hero h1 { margin: 26px 0 24px; }
.hero h1 .muted-line { color: var(--ink-3); }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 46px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .num { font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.hero-meta .lbl { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.hero-meta .sep { width: 1px; background: var(--line-2); }

/* Floating dashboard */
.dash {
  position: relative;
  height: 540px;
  perspective: 1600px;
}
.dash-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(6deg);
}
.glass {
  position: absolute;
  background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(246,249,252,.78));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 22px;
  box-shadow:
    0 30px 60px -22px rgba(10,37,64,.28),
    0 8px 20px -12px rgba(123,63,242,.20),
    inset 0 1px 0 rgba(255,255,255,.9);
  padding: 20px 22px;
  will-change: transform;
}
.glass .gl-label {
  font-size: 12.5px; color: var(--ink-3); font-weight: 500;
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.glass .gl-dot { width: 7px; height: 7px; border-radius: 50%; }
.glass .gl-value { font-size: 34px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.glass .gl-sub { font-size: 12.5px; color: var(--ink-3); margin-top: 7px; }

.card-traffic { top: 8px; left: 0; width: 232px; z-index: 4; }
.card-roas    { top: 44px; right: 6px; width: 198px; z-index: 5; }
.card-ai      { bottom: 150px; left: 26px; width: 210px; z-index: 6; }
.card-rev     { bottom: 8px; right: 0; width: 250px; z-index: 5; }

/* main chart card behind */
.card-chart {
  top: 132px; left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 230px;
  z-index: 1;
  padding: 22px;
  background: linear-gradient(165deg, rgba(10,37,64,.97), rgba(12,18,29,.97));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px -30px rgba(10,37,64,.6);
}
.card-chart .gl-label { color: rgba(255,255,255,.6); }
.card-chart .gl-value { color: #fff; }
.spark {
  margin-top: 16px;
  height: 96px;
  position: relative;
}
.spark svg { width: 100%; height: 100%; overflow: visible; }
.spark .area { fill: url(#sparkfill); }
.spark .line { fill: none; stroke: url(#sparkstroke); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 600; stroke-dashoffset: 0; }
.dash.in .spark .line { animation: draw 1.8s var(--ease-out) .4s backwards; }
@keyframes draw { from { stroke-dashoffset: 600; } to { stroke-dashoffset: 0; } }
.spark .pulse { fill: #fff; }

.bars { display: flex; align-items: flex-end; gap: 6px; height: 40px; margin-top: 14px; }
.bars span {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(var(--purple), var(--purple-soft));
  transform: scaleY(1); transform-origin: bottom;
}
.dash.in .bars span { animation: grow .9s var(--ease-out) backwards; }
.dash.in .bars span:nth-child(2){animation-delay:.06s} .dash.in .bars span:nth-child(3){animation-delay:.12s}
.dash.in .bars span:nth-child(4){animation-delay:.18s} .dash.in .bars span:nth-child(5){animation-delay:.24s}
.dash.in .bars span:nth-child(6){animation-delay:.3s} .dash.in .bars span:nth-child(7){animation-delay:.36s}
@keyframes grow { from { transform: scaleY(.15); } to { transform: scaleY(1); } }

@keyframes float-a { 0%,100%{ transform: translateY(0)} 50%{ transform: translateY(-14px)} }
@keyframes float-b { 0%,100%{ transform: translateY(0)} 50%{ transform: translateY(11px)} }
.dash.in .card-traffic { animation: float-a 6.5s ease-in-out infinite; }
.dash.in .card-roas    { animation: float-b 7.2s ease-in-out infinite; }
.dash.in .card-ai      { animation: float-b 6s ease-in-out infinite .3s; }
.dash.in .card-rev     { animation: float-a 7.8s ease-in-out infinite .2s; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .dash { height: 480px; max-width: 460px; }
  .dash-stage { transform: rotateY(-8deg) rotateX(4deg); }
}
@media (max-width: 520px){
  .dash { height: 430px; }
  .card-chart { width: 260px; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--noir);
  color: #fff;
  padding: 54px 0;
  overflow: hidden;
  position: relative;
}
.trust-head {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 38px;
}
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track {
  display: flex; align-items: center; gap: 70px;
  padding-right: 70px;
  animation: marquee 34s linear infinite;
  flex-shrink: 0;
}
.trust:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.logo-word {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  transition: color .3s, opacity .3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-word .gd { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); }
.logo-word:hover { color: #fff; }

/* ============================================================
   GROWTH STACK
   ============================================================ */
.section { padding-block: var(--section-y); position: relative; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head .lead { margin-top: 22px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stack-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 34px 32px 30px;
  background: linear-gradient(180deg, #fff, var(--card));
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(10,37,64,.04);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  min-height: 270px;
  display: flex;
  flex-direction: column;
}
.stack-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(123,63,242,.10), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.stack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -26px rgba(10,37,64,.30), 0 10px 24px -18px rgba(123,63,242,.4);
  border-color: rgba(123,63,242,.22);
}
.stack-card:hover::before { opacity: 1; }
.stack-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line-2);
  box-shadow: 0 8px 18px -10px rgba(10,37,64,.25);
  margin-bottom: 26px;
  position: relative;
}
.stack-icon svg { width: 24px; height: 24px; stroke: var(--purple); stroke-width: 1.6; fill: none; }
.stack-card:nth-child(even) .stack-icon svg { stroke: var(--orange); }
.stack-card .k {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px;
}
.stack-card h3 { font-size: 25px; letter-spacing: -.03em; margin-bottom: 12px; }
.stack-card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin-top: auto; }
.stack-card .arrow {
  margin-top: 22px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: background .3s, border-color .3s, transform .3s;
}
.stack-card .arrow svg { width: 15px; height: 15px; stroke: var(--ink); fill: none; stroke-width: 1.8; }
.stack-card:hover .arrow { background: var(--ink); border-color: var(--ink); transform: rotate(-45deg); }
.stack-card:hover .arrow svg { stroke: #fff; }

@media (max-width: 920px){ .stack-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .stack-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SUCCESS STORIES (dark, horizontal)
   ============================================================ */
.stories {
  background: var(--noir);
  color: #fff;
  border-radius: 40px;
  margin-inline: var(--gutter);
  padding-block: clamp(80px, 11vh, 130px);
  position: relative;
  overflow: hidden;
}
.stories::before {
  content:""; position:absolute; width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(123,63,242,.22), transparent 60%);
  top:-200px; right:-100px; filter: blur(40px);
}
.stories .container { position: relative; z-index: 1; }
.stories .section-head .lead { color: rgba(255,255,255,.62); }
.stories-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 0 24px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.stories-rail::-webkit-scrollbar { display: none; }
.story-card {
  flex: 0 0 clamp(300px, 38vw, 420px);
  scroll-snap-align: start;
  border-radius: 26px;
  padding: 30px;
  min-height: 380px;
  background: linear-gradient(180deg, var(--noir-card), rgba(12,18,29,.6));
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s;
}
.story-card:hover { transform: translateY(-6px); border-color: rgba(123,63,242,.4); }
.story-tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--purple-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.story-card h3 { font-size: 27px; margin: 16px 0 24px; letter-spacing: -.03em; }
.story-thumb {
  margin-top: auto;
  height: 120px; border-radius: 16px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 10px, rgba(255,255,255,.015) 10px 20px),
    linear-gradient(120deg, rgba(123,63,242,.25), rgba(255,138,0,.18));
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}
.story-stats { display: flex; gap: 28px; }
.story-stats .s .n { font-size: 30px; font-weight: 800; letter-spacing: -.035em; }
.story-stats .s .n .grad-text { display: inline; }
.story-stats .s .l { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.rail-hint { font-size: 12.5px; color: rgba(255,255,255,.4); margin-top: 14px; display:flex; align-items:center; gap:8px; }

@media (max-width: 700px){ .stories { border-radius: 24px; } }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy { padding-block: clamp(120px, 20vh, 240px); text-align: center; }
.philosophy .container { max-width: 1080px; }
.philo-lines {
  font-size: clamp(30px, 5vw, 66px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
}
.philo-lines p { margin: 0; }
.philo-lines .word { display: inline-block; }
.philo-lines .dim { color: var(--ink-3); }
.philo-lines em { font-style: normal; }

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.globe-wrap {
  position: relative;
  border-radius: 36px;
  background: linear-gradient(165deg, var(--noir-2), var(--noir));
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  color: #fff;
}
.globe-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000, transparent 80%);
}
.globe-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 50px; align-items: center;
}
.globe-inner > * { min-width: 0; }
.globe-copy { overflow-wrap: break-word; }
.globe-copy h2 { color:#fff; margin: 22px 0 20px; }
.globe-copy .lead { color: rgba(255,255,255,.62); }
.globe-stats { display: flex; flex-wrap: wrap; gap: 26px 36px; margin-top: 36px; }
.globe-stats > div { min-width: 0; }
.globe-stats .n { font-size: clamp(24px, 3.6vw, 32px); font-weight: 800; letter-spacing: -.035em; }
.globe-stats .l { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 2px; }

.map {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: 20px;
}
.map svg { width: 100%; height: 100%; overflow: visible; }
.node-dot { position: absolute; transform: translate(-50%,-50%); }
.node-dot .ring {
  position: absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid var(--purple-soft);
  animation: ping 2.6s var(--ease-out) infinite;
}
.node-dot .core {
  position: relative;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--purple-soft);
  box-shadow: 0 0 12px 2px rgba(157,107,255,.8);
}
.node-dot.orange .core { background: var(--orange); box-shadow: 0 0 12px 2px rgba(255,138,0,.8); }
.node-dot.orange .ring { border-color: var(--orange); }
.node-dot .name {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 11.5px; font-weight: 600; white-space: nowrap;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  padding: 3px 9px; border-radius: 999px;
  opacity: 0; transition: opacity .3s;
}
.node-dot.flip .name { left: auto; right: 16px; }
.node-dot:hover .name, .node-dot.show .name { opacity: 1; }
@keyframes ping { 0%{ transform:translate(-50%,-50%) scale(.6); opacity:.9 } 100%{ transform:translate(-50%,-50%) scale(3.4); opacity:0 } }

@media (max-width: 900px){
  .globe-inner { grid-template-columns: 1fr; gap: 36px; }
  .globe-wrap { padding: clamp(26px, 6vw, 48px) clamp(20px, 5vw, 44px); border-radius: 28px; }
  .globe-stats { gap: 22px 30px; }
}
@media (max-width: 560px){
  .globe-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 18px; }
  .globe-stats .n { font-size: clamp(21px, 6.2vw, 26px); }
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  background: var(--noir);
  color: #fff;
  padding-block: clamp(80px, 13vh, 150px);
}
.founder-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: center;
}
.founder-portrait {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,.1);
}
.founder-portrait image-slot { width: 100%; height: 100%; display:block; }
.founder-portrait::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, transparent 55%, rgba(6,10,18,.55));
}
.founder-quote {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.18;
}
.founder-quote .dim { color: rgba(255,255,255,.45); }
.founder-mark {
  font-family: var(--mono); font-size: 60px; line-height: 0; color: var(--purple-soft);
  display: block; height: 30px;
}
.founder-sign { margin-top: 40px; display: flex; align-items: center; gap: 16px; }
.founder-sign .sig {
  font-size: 30px; font-weight: 600; font-style: italic; letter-spacing: -.02em;
  font-family: Georgia, serif;
}
.founder-sign .who { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.4; }
.founder-sign .who strong { color:#fff; font-weight: 600; display:block; font-style: normal; }

@media (max-width: 820px){ .founder-grid { grid-template-columns: 1fr; } .founder-portrait{ max-width: 360px; } }

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.insight {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.insight:hover { transform: translateY(-7px); box-shadow: 0 30px 60px -28px rgba(10,37,64,.32); }
.insight-cover {
  height: 188px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #eef2f8, var(--card));
}
.insight-cover .blob {
  position:absolute; border-radius:50%; filter: blur(36px);
}
.insight:nth-child(1) .blob { width:260px;height:260px; background: radial-gradient(circle, rgba(123,63,242,.5), transparent 60%); top:-60px; left:-40px;}
.insight:nth-child(2) .blob { width:240px;height:240px; background: radial-gradient(circle, rgba(255,138,0,.45), transparent 60%); top:-40px; right:-30px;}
.insight:nth-child(3) .blob { width:260px;height:260px; background: radial-gradient(circle, rgba(123,63,242,.4), transparent 60%); bottom:-70px; left:30%;}
.insight-cover .tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px; color: var(--ink);
  border: 1px solid var(--line);
}
.insight-body { padding: 24px 24px 26px; display:flex; flex-direction:column; flex:1; }
.insight-body h3 { font-size: 21px; letter-spacing: -.025em; line-height: 1.2; margin-bottom: 10px; }
.insight-body p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.insight-meta { margin-top: auto; padding-top: 20px; display:flex; align-items:center; justify-content: space-between;
  font-size: 12.5px; color: var(--ink-3); }
.insight-meta .read { color: var(--purple); font-weight: 600; }

@media (max-width: 880px){ .insights-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline:auto; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  position: relative;
  text-align: center;
  padding-block: clamp(120px, 22vh, 260px);
  overflow: hidden;
}
.final-glow {
  position:absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  width: 800px; height: 500px; pointer-events:none;
  background: radial-gradient(ellipse, rgba(123,63,242,.16), transparent 60%),
             radial-gradient(ellipse 60% 80% at 60% 50%, rgba(255,138,0,.10), transparent 60%);
  filter: blur(30px);
}
.final .container { position: relative; z-index: 1; }
.final h2 {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900; letter-spacing: -.045em; line-height: .98;
}
.final h2 .dim { color: var(--ink-3); }
.final p { margin: 28px auto 0; }
.final .btn { margin-top: 44px; --bh: 60px; padding: 0 36px; font-size: 16px; }

/* Sample-data chip on the hero dashboard */
.sample-chip {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 5; white-space: nowrap;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75); background: rgba(10,37,64,.55);
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  padding: 5px 12px; backdrop-filter: blur(6px);
}

/* ============================================================
   FOOTER (compact)
   ============================================================ */
.site-footer { background: var(--noir); color: #fff; padding-top: 52px; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; padding-bottom: 34px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 17px; letter-spacing: -.01em; margin-bottom: 14px; }
.footer-logo img { width: 30px; height: 30px; border-radius: 8px; }
.footer-about { color: rgba(255,255,255,.55); font-size: 14px; max-width: 32ch; line-height: 1.6; margin: 0 0 14px; }
.footer-contact-line { margin: 0 0 6px; font-size: 14px; }
.footer-contact-line a { color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.footer-contact-line a:hover { color: #fff; border-color: #fff; }
.fcol-title { font-size: 11.5px; font-family: var(--mono); letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin: 0 0 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a { display: block; color: rgba(255,255,255,.7); font-size: 14px; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 8px; margin-top: 14px; }
.socials a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: rgba(255,255,255,.75); transition: background .25s, border-color .25s, color .25s; }
.socials a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); color: #fff; }
.socials svg { width: 15px; height: 15px; fill: currentColor; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: rgba(255,255,255,.45); font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.footer-legal a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 860px){ .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; gap: 24px; } }

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

/* ============================================================
   Reveal + cursor
   IMPORTANT: content is VISIBLE by default. Entrance animation is
   opt-in via <html class="js-anim"> which JS adds only once it is
   ready to run the reveal engine. If JS never runs / errors, nothing
   is ever hidden.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.js-anim .reveal { opacity: 0; transform: translateY(26px); }
.js-anim .reveal.in { animation: revealIn .85s var(--ease-out) forwards; }
.reveal.shown { opacity: 1 !important; transform: none !important; animation: none !important; }
@keyframes revealIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.js-anim .reveal.in.d1 { animation-delay: .09s; } .js-anim .reveal.in.d2 { animation-delay: .18s; }
.js-anim .reveal.in.d3 { animation-delay: .27s; } .js-anim .reveal.in.d4 { animation-delay: .36s; }
.js-anim .reveal.in.d5 { animation-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal, .js-anim .reveal { opacity: 1 !important; transform: none !important; }
  .spark .line { stroke-dashoffset: 0 !important; }
}

/* Custom cursor is opt-in: hidden unless JS adds .geeks-cursor to <body>
   (only on fine-pointer, motion-OK devices). Default cursor always works. */
.cursor-dot, .cursor-ring { display: none; position: fixed; top:0; left:0; pointer-events: none; z-index: 9999; border-radius: 50%; }
.geeks-cursor .cursor-dot, .geeks-cursor .cursor-ring { display: block; }
body.geeks-cursor { cursor: none; }
.cursor-dot { width: 7px; height: 7px; background: var(--ink); margin: -3.5px 0 0 -3.5px; transition: opacity .3s, background .3s, transform .15s; }
.cursor-ring { width: 38px; height: 38px; border: 1px solid var(--line-2); margin: -19px 0 0 -19px; transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, opacity .3s, margin .3s, background .3s; }
.cursor-ring.hot { width: 58px; height: 58px; margin: -29px 0 0 -29px; border-color: var(--purple); background: rgba(123,63,242,.06); }
.on-dark-cursor .cursor-dot { background: #fff; }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display:none !important; } }


/* ============================================================
   ENTRY CONTENT TYPOGRAPHY
   Proper rhythm for service pages, blog articles and case studies.
   ============================================================ */
.entry-content > * + * { margin-top: 1.15em; }
.entry-content h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.2;
  color: var(--ink);
  margin: 1.9em 0 .7em;
}
.entry-content > h2:first-child { margin-top: 0; }
.entry-content h3 {
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 700; letter-spacing: -.01em;
  color: var(--ink);
  margin: 1.7em 0 .55em;
}
.entry-content p { margin: 0 0 1.15em; }
.entry-content p:last-child { margin-bottom: 0; }
.entry-content ul, .entry-content ol {
  margin: 1.1em 0 1.4em;
  padding-left: 1.35em;
}
.entry-content li { margin: 0 0 .55em; padding-left: .2em; }
.entry-content li::marker { color: var(--purple); font-weight: 700; }
.entry-content a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(123,63,242,.35);
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}
.entry-content a:hover { color: #5f2bc7; text-decoration-color: currentColor; }
.entry-content strong { color: var(--ink); }
.entry-content blockquote {
  margin: 1.6em 0; padding: 18px 22px;
  border-left: 3px solid var(--purple);
  background: rgba(123,63,242,.05);
  border-radius: 0 12px 12px 0;
  color: var(--ink-2);
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 15px; }
.entry-content th, .entry-content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.entry-content th { background: rgba(123,63,242,.06); color: var(--ink); }
.entry-content img { max-width: 100%; height: auto; border-radius: 14px; }
.entry-content hr { border: 0; border-top: 1px solid var(--line); margin: 2.2em 0; }


/* ============================================================
   RESPONSIVE GRID MODIFIERS
   Inline column counts broke mobile; these classes carry the
   layout and collapse properly on smaller screens.
   ============================================================ */
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.geo-card { min-height: 230px; }
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cols-4, .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .geo-card { min-height: 0; }
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.ind-toc {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 46px;
}
.ind-toc a {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  background: #fff; transition: all .2s;
}
.ind-toc a:hover { border-color: var(--purple); color: var(--purple); }
.ind-sector { margin-bottom: 54px; scroll-margin-top: 110px; }
.ind-sector-title {
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 800;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 20px;
}
.ind-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 1024px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ind-grid { grid-template-columns: 1fr; } }
.ind-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px; background: #fff;
  border: 1px solid var(--line); border-radius: 16px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ind-card:hover {
  transform: translateY(-3px);
  border-color: rgba(123,63,242,.4);
  box-shadow: 0 14px 34px -18px rgba(10,37,64,.25);
}
.ind-name { font-weight: 700; color: var(--ink); font-size: 15.5px; }
.ind-line { font-size: 13.5px; color: var(--ink-3); line-height: 1.45; }
.ind-cta { text-align: center; padding: 46px 20px 10px; }
.ind-cta h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.ind-cta p { color: var(--ink-2); max-width: 560px; margin: 0 auto 22px; }
.mm-all {
  display: inline-block; margin-top: 14px;
  font-size: 13px; font-weight: 700; color: var(--purple);
}

/* ============================================================
   WHATSAPP FLOAT
   Small, calm, bottom-right. No pulse, no bounce; stays out of
   the reading line and under the drawer layer.
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, .55);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 32px -8px rgba(37, 211, 102, .6);
}
.wa-float svg { width: 27px; height: 27px; fill: #fff; }
@media (max-width: 640px) {
  .wa-float { right: 14px; bottom: 14px; width: 48px; height: 48px; }
  .wa-float svg { width: 25px; height: 25px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float, .wa-float:hover { transition: none; transform: none; }
}
@media print { .wa-float { display: none; } }


/* ============================================================
   PREMIUM FINISH
   Small plating touches: selection, focus, scrollbar, motion.
   ============================================================ */
::selection { background: rgba(123, 63, 242, .22); color: inherit; }

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

html { -webkit-tap-highlight-color: transparent; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

h1, h2, h3 { text-wrap: balance; }

.btn:active { transform: translateY(0) scale(.98); }

.entry-content a {
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

* { scrollbar-width: thin; scrollbar-color: rgba(123,63,242,.35) transparent; }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(123, 63, 242, .3);
  border-radius: 99px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background-color: rgba(123, 63, 242, .5); }

/* Content is never hidden from anyone who opted out of motion. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
