@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&display=swap');

:root {
  --white: #ffffff;
  --off: #fafafa;
  --off2: #f4f4f6;
  --off3: #eeeef2;

  --ink: #0f0f14;
  --ink2: #1c1c24;
  --ink3: #2e2e3a;

  --text: #0f0f14;
  --text2: #5c5c72;
  --text3: #9898aa;
  --text4: #c4c4cc;

  --bdr: #e4e4ec;
  --bdr2: #d0d0dc;

  --indigo: #4f46e5;
  --indigo2: #6366f1;
  --indigo3: #818cf8;
  --indigo-bg: #eef2ff;
  --indigo-bdr: #c7d2fe;

  --emerald: #059669;
  --emerald-bg: #ecfdf5;
  --emerald-bdr: #a7f3d0;

  --amber: #d97706;
  --amber-bg: #fffbeb;
  --amber-bdr: #fde68a;

  --rose: #e11d48;
  --rose-bg: #fff1f2;

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;

  --shadow-sm: 0 1px 3px rgba(15,15,20,0.06), 0 1px 2px rgba(15,15,20,0.04);
  --shadow: 0 4px 16px rgba(15,15,20,0.08), 0 2px 6px rgba(15,15,20,0.05);
  --shadow-lg: 0 16px 48px rgba(15,15,20,0.12), 0 4px 16px rgba(15,15,20,0.07);
  --shadow-xl: 0 32px 80px rgba(15,15,20,0.14), 0 8px 24px rgba(15,15,20,0.08);

  --shadow-indigo: 0 8px 32px rgba(79,70,229,0.22), 0 2px 8px rgba(79,70,229,0.12);
  --shadow-indigo-lg: 0 16px 56px rgba(79,70,229,0.28), 0 4px 16px rgba(79,70,229,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; }
h3 { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.025em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.015em; }

a { color: inherit; text-decoration: none; }
p { color: var(--text2); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* ── DECORATIVE BG SHAPES ── */
.bg-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

/* ── BADGE / PILL ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--indigo-bg);
  border: 1.5px solid var(--indigo-bdr);
  color: var(--indigo);
  margin-bottom: 1.4rem;
}
.badge .live-dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: livepulse 2s ease-in-out infinite;
}
@keyframes livepulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-lg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.btn-indigo {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--shadow-indigo);
}
.btn-indigo:hover { background: #4338ca; transform: translateY(-2px); box-shadow: var(--shadow-indigo-lg); }
.btn-indigo:active { transform: scale(0.98) translateY(0); }

.btn-white {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--bdr);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { border-color: var(--bdr2); box-shadow: var(--shadow); transform: translateY(-1px); }

.btn-outline-indigo {
  background: var(--indigo-bg);
  color: var(--indigo);
  border: 1.5px solid var(--indigo-bdr);
}
.btn-outline-indigo:hover { background: #e0e7ff; transform: translateY(-1px); }

.icon-arrow { transition: transform 0.2s; }
.btn:hover .icon-arrow { transform: translateX(3px); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  transition: box-shadow 0.3s;
}
nav.elevated { box-shadow: var(--shadow); }

.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--indigo);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(79,70,229,0.35);
}
.logo-text i { color: var(--indigo2); font-style: normal; }
.logo-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text2);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--ink); background: var(--off2); }
.nav-cta-link {
  background: var(--indigo) !important;
  color: #fff !important;
  border-radius: var(--r-lg) !important;
  padding: 8px 18px !important;
  box-shadow: 0 2px 10px rgba(79,70,229,0.3);
  transition: all 0.2s !important;
}
.nav-cta-link:hover { background: #4338ca !important; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(79,70,229,0.4) !important; }

/* Admin / Dashboard pill in nav */
.nav-admin-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 5px 12px !important;
  background: transparent !important;
  border: 1.5px solid var(--indigo-bdr) !important;
  border-radius: 100px !important;
  color: var(--indigo) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition: all 0.18s !important;
}
.nav-admin-pill:hover {
  background: var(--indigo-bg) !important;
  border-color: var(--indigo) !important;
  transform: none !important;
}
.nav-admin-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.25);
  animation: livepulse 2s ease-in-out infinite;
}
.nav-admin-pill--login { color: var(--text2) !important; border-color: var(--bdr2) !important; }
.nav-admin-pill--login:hover { background: var(--off2) !important; color: var(--ink) !important; border-color: var(--bdr2) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: 0.3s; display: block; }

/* ── HERO ── */
#hero {
  padding: 7rem 0 5rem;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #f8f8ff 0%, #fff 40%, #f0f4ff 100%);
}

.hero-blob-1 {
  width: 700px; height: 500px;
  top: -200px; right: -150px;
  background: radial-gradient(ellipse, #ddd6fe 0%, #c7d2fe 30%, transparent 70%);
}
.hero-blob-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(ellipse, #a5f3fc 0%, #bae6fd 50%, transparent 70%);
  opacity: 0.35;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.6rem;
}
.hero-eyebrow-line { width: 28px; height: 2px; background: var(--indigo3); border-radius: 2px; }
.hero-eyebrow-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
}

.hero-title { margin-bottom: 1.4rem; }
.hero-title .accent {
  color: var(--indigo);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 5px;
  background: var(--indigo-bdr);
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bdr);
  flex-wrap: wrap;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--indigo-bg), var(--indigo-bdr));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--indigo);
  margin-left: -8px;
}
.trust-avatars .trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 0.82rem; color: var(--text2); }
.trust-text strong { color: var(--ink); font-weight: 700; }
.trust-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}
.trust-stat-num { font-weight: 800; color: var(--ink); font-size: 1rem; }
.trust-stat-label { color: var(--text3); }
.trust-divider { width: 1px; height: 24px; background: var(--bdr); }

/* HERO VISUAL */
.hero-visual { position: relative; }

.hero-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hc-topbar {
  background: var(--off);
  border-bottom: 1px solid var(--bdr);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hc-d1 { background: #fc5f57; }
.hc-d2 { background: #fdbc2e; }
.hc-d3 { background: #33c748; }
.hc-title {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hc-body { padding: 20px; }

.hc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.hc-metric {
  background: var(--off);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 14px;
}
.hc-metric-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); }
.hc-metric-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 4px 0 2px;
}
.hc-metric-val.indigo { color: var(--indigo); }
.hc-metric-val.emerald { color: var(--emerald); }
.hc-metric-val.amber { color: var(--amber); }
.hc-metric-val.ink { color: var(--ink); }
.hc-metric-change { font-size: 0.7rem; font-weight: 600; color: var(--emerald); }

.hc-feed { display: flex; flex-direction: column; gap: 6px; }
.hc-feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 500;
}
.hc-feed-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hc-feed-dot.indigo { background: var(--indigo); }
.hc-feed-dot.emerald { background: var(--emerald); }
.hc-feed-dot.amber { background: var(--amber); }
.hc-feed-text { flex: 1; color: var(--text2); }
.hc-feed-time { color: var(--text4); font-size: 0.7rem; }
.hc-feed-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hc-feed-badge.done { background: var(--emerald-bg); color: var(--emerald); border: 1px solid var(--emerald-bdr); }
.hc-feed-badge.live { background: var(--indigo-bg); color: var(--indigo); border: 1px solid var(--indigo-bdr); }
.hc-feed-badge.new { background: var(--amber-bg); color: var(--amber); border: 1px solid var(--amber-bdr); }

/* Floating chips on hero visual */
.float-chip {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  animation: chipfloat 4s ease-in-out infinite;
}
.float-chip.fc1 { top: -18px; right: 12px; animation-delay: 0s; }
.float-chip.fc2 { bottom: 30px; left: -22px; animation-delay: 2s; }
.float-chip-icon { font-size: 1rem; }
.float-chip-label { color: var(--text3); font-size: 0.68rem; font-weight: 600; display: block; margin-bottom: 1px; }
.float-chip-val { color: var(--ink); font-weight: 800; font-size: 0.85rem; }
@keyframes chipfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── MARQUEE ── */
.marquee-band {
  background: var(--off);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.marquee-band::before { left: 0; background: linear-gradient(90deg, var(--off), transparent); }
.marquee-band::after  { right: 0; background: linear-gradient(-90deg, var(--off), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 2.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text3);
  white-space: nowrap;
}
.marquee-item .mi-sep {
  width: 4px; height: 4px;
  background: var(--indigo3);
  border-radius: 50%;
}

/* ── ZERO EMPLOYEES BAND ── */
.zero-band {
  background: var(--ink2);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.zero-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(79,70,229,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.zero-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.zero-hero-stat { text-align: center; flex-shrink: 0; }
.zero-big-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 40%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 48px rgba(99,102,241,0.55));
  animation: zeroPulse 2s ease-in-out infinite;
}
@keyframes zeroPulse {
  0%,100% { filter: drop-shadow(0 0 40px rgba(99,102,241,0.45)); }
  50%      { filter: drop-shadow(0 0 72px rgba(99,102,241,0.75)); }
}
.zero-big-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}
.zero-divider-v {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
  flex-shrink: 0;
}
.zero-message { flex: 1; }
.zero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(79,70,229,0.18);
  border: 1px solid rgba(99,102,241,0.35);
  color: #a5b4fc;
  margin-bottom: 1rem;
}
.zero-eyebrow-dot {
  width: 5px; height: 5px;
  background: #818cf8;
  border-radius: 50%;
  animation: livepulse 2s ease-in-out infinite;
}
.zero-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.03em;
}
.zero-title span {
  background: linear-gradient(90deg, #a5b4fc, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zero-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 380px;
}
.zero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex-shrink: 0;
}
.zero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.zero-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.zero-stat-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}
@media (max-width: 900px) {
  .zero-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem 3rem;
  }
  .zero-divider-v { display: none; }
  .zero-stats { flex-direction: row; gap: 0.75rem; grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 600px) {
  .zero-inner { grid-template-columns: 1fr; text-align: center; }
  .zero-sub { margin: 0 auto; }
  .zero-eyebrow { margin: 0 auto 1rem; }
  .zero-stats { flex-wrap: wrap; justify-content: center; }
}

/* ── SECTION HEADER ── */
.section-head { margin-bottom: 4rem; }
.section-head.center { text-align: center; }
.section-head.center .badge { margin-left: auto; margin-right: auto; display: flex; width: fit-content; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--text2); font-size: 1rem; max-width: 560px; line-height: 1.75; }
.section-head.center p { margin: 0 auto; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.services-intro .right { color: var(--text2); line-height: 1.75; font-size: 0.95rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bdr);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 2.2rem 2rem;
  transition: background 0.25s;
  cursor: default;
  position: relative;
}
.svc-card:hover { background: var(--off); }
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo3));
  border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--indigo-bg);
  border: 1.5px solid var(--indigo-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  transition: all 0.25s;
}
.svc-card:hover .svc-icon { background: #e0e7ff; transform: scale(1.06) rotate(-3deg); }
.svc-cat { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--indigo); margin-bottom: 0.4rem; }
.svc-name { font-size: 1.15rem; margin-bottom: 0.6rem; }
.svc-desc { font-size: 0.87rem; color: var(--text2); line-height: 1.65; }
.svc-from {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
  background: var(--emerald-bg);
  border: 1px solid var(--emerald-bdr);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── WHY US ── */
#why { background: var(--off); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.why-text h2 { margin-bottom: 1rem; }
.why-text > p { margin-bottom: 2.2rem; line-height: 1.75; }
.why-feats { display: flex; flex-direction: column; gap: 1px; border-radius: var(--r-xl); border: 1.5px solid var(--bdr); overflow: hidden; }
.why-feat {
  background: var(--white);
  display: flex;
  gap: 1.1rem;
  padding: 1.3rem 1.5rem;
  transition: background 0.2s;
}
.why-feat:hover { background: var(--indigo-bg); }
.why-feat-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--indigo-bg);
  border: 1.5px solid var(--indigo-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-feat-body h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.why-feat-body p { font-size: 0.83rem; color: var(--text2); line-height: 1.55; }

/* Code block */
.code-block {
  background: var(--ink2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cb-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--ink3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cb-dot { width: 10px; height: 10px; border-radius: 50%; }
.cb-d1 { background: #fc5f57; }
.cb-d2 { background: #fdbc2e; }
.cb-d3 { background: #33c748; }
.cb-label { margin-left: auto; font-size: 0.7rem; color: rgba(255,255,255,0.3); font-family: monospace; }
.cb-body { padding: 20px 22px; font-family: 'Fira Code', 'SF Mono', monospace; font-size: 0.78rem; line-height: 2; }
.ck { color: #c084fc; }
.cf { color: #60a5fa; }
.cs { color: #86efac; }
.cc { color: #4b5563; }
.co { color: #4ade80; }
.cy { color: #fcd34d; }
.ch { color: #67e8f9; }
.cw { color: rgba(255,255,255,0.85); }

/* ── PROCESS ── */
#process { background: var(--white); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 38px; left: 10%;
  width: 80%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo3), transparent);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--indigo);
  transition: all 0.25s;
  box-shadow: 0 0 0 6px var(--white), var(--shadow-sm);
}
.step-item:hover .step-circle { background: var(--indigo); color: #fff; box-shadow: 0 0 0 6px var(--white), var(--shadow-indigo); }
.step-item h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.step-item p { font-size: 0.83rem; color: var(--text2); line-height: 1.6; }

/* ── PROJECTS ── */
#projects { background: var(--off); }
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.proj-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.proj-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--indigo-bdr); }

.proj-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.proj-thumb.t1 { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%); }
.proj-thumb.t2 { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); }
.proj-thumb.t3 { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); }
.proj-thumb .proj-thumb-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.proj-body { padding: 1.6rem; }
.proj-cat-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 0.8rem;
  background: var(--indigo-bg);
  color: var(--indigo);
  border: 1px solid var(--indigo-bdr);
}
.proj-title { font-size: 1.15rem; margin-bottom: 0.6rem; }
.proj-desc { font-size: 0.86rem; color: var(--text2); line-height: 1.6; margin-bottom: 1.1rem; }
.proj-stack { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.1rem; }
.proj-tag {
  font-size: 0.68rem; font-weight: 600;
  padding: 3px 9px; border-radius: 6px;
  background: var(--off2); border: 1px solid var(--bdr);
  color: var(--text2);
}
.proj-result {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald);
}
.proj-result-icon { font-size: 0.85rem; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testi-card {
  background: var(--off);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all 0.25s;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testi-star { width: 14px; height: 14px; background: #fbbf24; border-radius: 3px; }
.testi-quote {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--indigo-bdr);
  padding-left: 1rem;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0;
  background: var(--indigo-bg);
  color: var(--indigo);
  border: 2px solid var(--indigo-bdr);
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 0.75rem; color: var(--text3); }

/* ── CTA ── */
.cta-wrap { padding: 0 0 7rem; }
.cta-box {
  background: var(--indigo);
  border-radius: var(--r-2xl);
  padding: 5.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-indigo-lg);
}
.cta-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-deco-1 { width: 500px; height: 500px; top: -250px; right: -150px; background: rgba(255,255,255,0.06); }
.cta-deco-2 { width: 300px; height: 300px; bottom: -120px; left: -80px; background: rgba(255,255,255,0.04); }
.cta-box .badge {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  margin: 0 auto 1.4rem;
  display: flex;
  width: fit-content;
}
.cta-box .badge .live-dot { background: #a5f3fc; }
.cta-box h2 { color: #fff; margin-bottom: 0.9rem; }
.cta-box p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 2.2rem; font-size: 1rem; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white-solid { background: #fff; color: var(--indigo); font-weight: 700; border-radius: var(--r-lg); padding: 0.85rem 1.8rem; box-shadow: var(--shadow); transition: all 0.2s; }
.btn-white-solid:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-white-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); border-radius: var(--r-lg); padding: 0.85rem 1.8rem; transition: all 0.2s; font-weight: 700; }
.btn-white-ghost:hover { background: rgba(255,255,255,0.2); }

/* ── CONTACT ── */
.contact-hero { padding: 8rem 0 4rem; text-align: center; background: linear-gradient(170deg, #f0f4ff 0%, #fff 100%); margin-top: 68px; }
.contact-hero h1 { margin-bottom: 0.8rem; }
.contact-hero p { color: var(--text2); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 3rem;
  align-items: start;
  padding: 0 0 7rem;
}

.sidebar-block { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-h { font-size: 1.3rem; margin-bottom: 0.5rem; }
.sidebar-sub { font-size: 0.9rem; color: var(--text2); margin-bottom: 1rem; line-height: 1.7; }
.cdet {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cdet:hover { border-color: var(--indigo-bdr); box-shadow: var(--shadow); }
.cdet-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--indigo-bg);
  border: 1.5px solid var(--indigo-bdr);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.cdet-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); display: block; margin-bottom: 2px; }
.cdet a, .cdet span { font-size: 0.85rem; font-weight: 600; color: var(--ink); transition: color 0.15s; }
.cdet a:hover { color: var(--indigo); }
.open-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-bg);
  border: 1.5px solid var(--emerald-bdr);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald);
}
.open-badge .live-dot { background: var(--emerald); }

.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-2xl);
  padding: 2.5rem 2.8rem 3rem;
  box-shadow: var(--shadow-lg);
}
.cf-head { font-size: 1.5rem; margin-bottom: 0.4rem; }
.cf-sub { font-size: 0.88rem; color: var(--text2); margin-bottom: 2rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.2rem; }
.fg label { display: block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 6px; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  background: var(--off);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  padding: 10px 14px;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text4); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--indigo);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.fg textarea { min-height: 130px; resize: vertical; }
.fg select { cursor: pointer; }
.fg select option { background: #fff; }
.form-submit { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 0.95rem; margin-top: 0.4rem; }

.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.fs-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--text2); font-size: 0.92rem; }

/* ── ABOUT ── */
.about-hero { padding: 8rem 0 5rem; background: linear-gradient(170deg, #f0f4ff 0%, #fff 100%); margin-top: 68px; }
.about-hero-inner { max-width: 720px; }
.about-hero-inner h1 { margin-bottom: 1.3rem; }
.about-hero-inner > p { color: var(--text2); font-size: 1.1rem; line-height: 1.8; max-width: 600px; margin-bottom: 2.2rem; }

.val-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; border: 1.5px solid var(--bdr); border-radius: var(--r-xl); overflow: hidden; margin-top: 3.5rem; }
.val-card { background: var(--white); padding: 2.2rem 2rem; transition: background 0.2s; }
.val-card:hover { background: var(--off); }
.val-ico { font-size: 1.7rem; margin-bottom: 1rem; }
.val-title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.val-desc { font-size: 0.86rem; color: var(--text2); line-height: 1.6; }

.manifesto-strip {
  background: var(--off);
  border-top: 1.5px solid var(--bdr);
  border-bottom: 1.5px solid var(--bdr);
  padding: 6rem 0;
}
.manifesto-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.manifesto-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.45;
  color: var(--ink);
  margin: 1.5rem 0 1.2rem;
}
.manifesto-q span { color: var(--indigo); }
.manifesto-by { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); }

/* ── SERVICES PAGE ── */
.services-page-hero { padding: 8rem 0 4rem; background: linear-gradient(170deg, #f0f4ff 0%, #fff 100%); margin-top: 68px; text-align: center; }
.services-page-hero h1 { margin-bottom: 0.8rem; }
.services-page-hero p { color: var(--text2); max-width: 540px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }

.full-svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.5rem; }
.full-svc-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.full-svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--indigo-bdr); }
.full-svc-card .svc-icon { margin-bottom: 1.2rem; }
.full-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.2rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--indigo);
  transition: gap 0.2s;
}
.full-svc-card:hover .full-svc-link { gap: 8px; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo-mark { box-shadow: none; }
.footer-brand .logo-text i { color: var(--indigo3); }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.4); max-width: 230px; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.fsoc:hover { background: rgba(79,70,229,0.3); color: #fff; border-color: rgba(79,70,229,0.5); }
.footer-col h5 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.auto-pill {
  background: rgba(79,70,229,0.2);
  border: 1px solid rgba(79,70,229,0.35);
  color: var(--indigo3);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── DJANGO MESSAGES ── */
.dj-msgs { list-style: none; margin-bottom: 1.5rem; }
.dj-msgs li { padding: 10px 16px; border-radius: var(--r); font-size: 0.88rem; margin-bottom: 6px; }
.dj-msgs .success { background: var(--emerald-bg); border: 1.5px solid var(--emerald-bdr); color: var(--emerald); }
.dj-msgs .error { background: var(--rose-bg); border: 1.5px solid #fecdd3; color: var(--rose); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.26s; }
.d4 { transition-delay: 0.34s; }
.d5 { transition-delay: 0.42s; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .hero-grid,.why-grid,.footer-top { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; gap: 1rem; }
}
@media(max-width:768px){
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--bdr); padding: 1.2rem 2rem 1.8rem; gap: 4px; }
  .nav-links.open a { display: block; }
  .hamburger { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 3.5rem 2rem; }
  .hero-trust { gap: 1rem; }
  .val-grid { grid-template-columns: 1fr; }
}

/* ── SERVICE CATEGORY COLOR ACCENTS ── */
.svc-card.cat-ai .svc-icon, .full-svc-card.cat-ai .svc-icon { background: #fdf4ff; border-color: #e9d5ff; }
.svc-card.cat-ml .svc-icon, .full-svc-card.cat-ml .svc-icon { background: #eff6ff; border-color: #bfdbfe; }
.svc-card.cat-web .svc-icon, .full-svc-card.cat-web .svc-icon { background: #ecfdf5; border-color: #a7f3d0; }
.svc-card.cat-dl .svc-icon, .full-svc-card.cat-dl .svc-icon { background: #fff7ed; border-color: #fed7aa; }

/* ── TECH STACK BADGE ROW ── */
.tech-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 1rem; }
.tech-tag {
  font-size: 0.67rem; font-weight: 700;
  padding: 3px 9px; border-radius: 6px;
  background: var(--off2); border: 1px solid var(--bdr);
  color: var(--text2); text-transform: uppercase; letter-spacing: 0.05em;
}

/* ── WHAT'S INCLUDED LIST ── */
.includes-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 5px; }
.includes-list li {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; color: var(--text2);
}
.includes-list li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--emerald-bg);
  border: 1.5px solid var(--emerald-bdr);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23059669' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── SERVICES CATEGORY FILTER ── */
.svc-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.svc-filter-btn {
  padding: 7px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  border: 1.5px solid var(--bdr);
  background: var(--white); color: var(--text2);
  cursor: pointer; transition: all 0.18s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.svc-filter-btn:hover, .svc-filter-btn.active {
  background: var(--indigo); color: #fff; border-color: var(--indigo);
  box-shadow: 0 2px 10px rgba(79,70,229,0.25);
}

/* ══════════════════════════════════════════════
   ZERO EMPLOYEES — DRAMATIC REDESIGN
══════════════════════════════════════════════ */
@keyframes ze-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50%       { transform: translate(-50%,-50%) scale(1.08); opacity: 0.9; }
}
@keyframes ze-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes ze-spin-rev {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(-360deg); }
}
@keyframes ze-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes ze-chip-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-5px) scale(1.03); }
}

.ze-section {
  background: #07070f;
  padding: 8rem 0 7rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Dot-grid background */
.ze-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(99,102,241,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Ambient glow */
.ze-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Eyebrow label */
.ze-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3rem;
}

/* ── The Big 0 Stage ── */
.ze-stage {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto 3.5rem;
}

/* Pulsing rings */
.ze-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.25);
  animation: ze-pulse 4s ease-in-out infinite;
}
.ze-r1 {
  width: 180px; height: 180px;
  transform: translate(-50%,-50%);
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 0 40px rgba(99,102,241,0.25), inset 0 0 40px rgba(99,102,241,0.08);
  animation-delay: 0s;
}
.ze-r2 {
  width: 290px; height: 290px;
  transform: translate(-50%,-50%);
  border-style: dashed;
  border-color: rgba(99,102,241,0.2);
  animation: ze-spin 20s linear infinite;
  animation-delay: 0s;
}
.ze-r3 {
  width: 400px; height: 400px;
  transform: translate(-50%,-50%);
  border-style: dashed;
  border-color: rgba(99,102,241,0.1);
  animation: ze-spin-rev 30s linear infinite;
}

/* Orbiting chips */
.ze-orbit-chip {
  position: absolute;
  top: 50%; left: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  pointer-events: none;
  animation: ze-chip-float 3s ease-in-out infinite;
}
/* Position each chip on a circle of radius ~195px */
.zoc-1 { transform: translate(-50%,-50%) translate(0px,  -195px); animation-delay: 0s; }
.zoc-2 { transform: translate(-50%,-50%) translate(170px, -95px); animation-delay: 0.4s; }
.zoc-3 { transform: translate(-50%,-50%) translate(170px,  95px); animation-delay: 0.8s; }
.zoc-4 { transform: translate(-50%,-50%) translate(0px,   195px); animation-delay: 1.2s; }
.zoc-5 { transform: translate(-50%,-50%) translate(-170px, 95px); animation-delay: 1.6s; }
.zoc-6 { transform: translate(-50%,-50%) translate(-170px,-95px); animation-delay: 2.0s; }

/* Center number */
.ze-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.ze-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(99,102,241,0.6));
  animation: ze-float 4s ease-in-out infinite;
}
.ze-number-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: -4px;
}

/* ── Headline ── */
.ze-headline {
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.ze-headline h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.ze-strike {
  position: relative;
  color: rgba(255,255,255,0.35);
}
.ze-strike::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 52%;
  height: 3px;
  background: linear-gradient(90deg, #f87171, #fb923c);
  border-radius: 2px;
}
.ze-hl-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ── 3 Cards ── */
.ze-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}
.ze-card {
  background: rgba(255,255,255,0.02);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: background 0.2s;
}
.ze-card:hover { background: rgba(99,102,241,0.07); }
.ze-card-center {
  background: rgba(99,102,241,0.1);
  border-left: 1px solid rgba(99,102,241,0.2);
  border-right: 1px solid rgba(99,102,241,0.2);
}
.ze-card-center:hover { background: rgba(99,102,241,0.16); }
.ze-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.ze-icon-red    { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.2); }
.ze-icon-indigo { background: rgba(99,102,241,0.2); border: 1px solid rgba(99,102,241,0.3); }
.ze-icon-green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.ze-card-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.4rem;
}
.ze-card-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.ze-val-red    { color: #f87171; }
.ze-val-indigo { color: #a5b4fc; }
.ze-val-green  { color: #34d399; }
.ze-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
}

/* ── Stats ticker ── */
.ze-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}
.ze-tick {
  flex: 1;
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}
.ze-tick:hover { background: rgba(99,102,241,0.08); }
.ze-tick-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ze-tick-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.3);
}
.ze-tick-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ze-stage { width: 320px; height: 320px; }
  .ze-r1 { width: 140px; height: 140px; }
  .ze-r2 { width: 220px; height: 220px; }
  .ze-r3 { width: 305px; height: 305px; }
  .ze-number { font-size: 5.5rem; }
  .zoc-1 { transform: translate(-50%,-50%) translate(0,-148px); }
  .zoc-2 { transform: translate(-50%,-50%) translate(128px,-74px); }
  .zoc-3 { transform: translate(-50%,-50%) translate(128px, 74px); }
  .zoc-4 { transform: translate(-50%,-50%) translate(0, 148px); }
  .zoc-5 { transform: translate(-50%,-50%) translate(-128px, 74px); }
  .zoc-6 { transform: translate(-50%,-50%) translate(-128px,-74px); }
  .ze-cards { grid-template-columns: 1fr; }
  .ze-card-center { border-left: none; border-right: none; border-top: 1px solid rgba(99,102,241,0.2); border-bottom: 1px solid rgba(99,102,241,0.2); }
  .ze-ticker { flex-wrap: wrap; }
  .ze-tick { flex: 0 0 50%; }
  .ze-tick-sep { display: none; }
  .ze-section { padding: 5rem 0; }
}
@media (max-width: 480px) {
  .ze-orbit-chip { display: none; }
  .ze-stage { width: 220px; height: 220px; }
  .ze-r1 { width: 120px; height: 120px; }
  .ze-r2 { width: 180px; height: 180px; }
  .ze-r3 { width: 210px; height: 210px; }
  .ze-number { font-size: 5rem; }
}
