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

:root {
  --d0:    #07071A;
  --d1:    #0C0C24;
  --d2:    #11112E;
  --d3:    #16163A;
  --blue:  #4D9FFF;
  --blue2: #0052FF;
  --cyan:  #00D4FF;
  --green: #00E676;
  --red:   #FF4D6A;
  --r0:  rgba(255,255,255,0.06);
  --r1:  rgba(255,255,255,0.09);
  --r2:  rgba(255,255,255,0.14);
  --t1:  rgba(255,255,255,0.90);
  --t2:  rgba(255,255,255,0.50);
  --t3:  rgba(255,255,255,0.26);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--d0);
  color: var(--t1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITY ─── */
.mono {
  font-family: 'IBM Plex Mono', monospace;
}
.display {
  font-family: 'Space Grotesk', sans-serif;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 54px;
  background: rgba(7,7,26,0.82);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(4,4,18,0.96); border-bottom-color: var(--r1); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { width: 28px; height: 28px; }
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700; color: white; letter-spacing: -0.03em;
}

/* nav links row */
.nav-links { display: flex; align-items: center; gap: 4px; }

/* plain links */
.nav-links > a {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  text-decoration: none; padding: 6px 12px; border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.nav-links > a:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.05); }

/* dropdown trigger */
.nav-item {
  position: relative;
}
.nav-trigger {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  padding: 6px 12px; border-radius: 4px; border: none; background: none;
  transition: color 0.15s, background 0.15s; white-space: nowrap;
  user-select: none;
}
.nav-trigger svg { width: 12px; height: 12px; transition: transform 0.2s; flex-shrink: 0; }
.nav-item:hover .nav-trigger,
.nav-item.open .nav-trigger {
  color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.05);
}
.nav-item.open .nav-trigger svg { transform: rotate(180deg); }

/* dropdown panel */
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: rgba(10,10,28,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
  min-width: 240px;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}

/* wide dropdown for services */
.nav-dropdown.wide {
  min-width: 560px;
  display: grid; grid-template-columns: 1fr 1fr;
}
.nav-dropdown.wide .dd-col {
  padding: 16px;
}
.nav-dropdown.wide .dd-col + .dd-col {
  border-left: 1px solid rgba(255,255,255,0.06);
}
.dd-col-head {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 600; color: var(--t3);
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 8px 10px; margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* single-col dropdown */
.nav-dropdown.single { padding: 10px; }

/* dropdown item */
.dd-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 8px; border-radius: 5px;
  text-decoration: none; cursor: pointer;
  transition: background 0.12s;
}
.dd-item:hover { background: rgba(255,255,255,0.05); }
.dd-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(77,159,255,0.1);
  border: 1px solid rgba(77,159,255,0.18);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.dd-icon svg { width: 14px; height: 14px; }
.dd-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; color: var(--t1);
  letter-spacing: -0.02em; line-height: 1.2;
}
.dd-desc {
  font-size: 11.5px; color: var(--t3); line-height: 1.4; margin-top: 2px;
}

.nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  background: var(--blue2); color: white;
  padding: 8px 18px; border-radius: 4px;
  text-decoration: none; letter-spacing: -0.01em;
  transition: filter 0.15s;
  box-shadow: 0 0 16px rgba(0,82,255,0.35);
  margin-left: 8px;
}
.nav-cta:hover { filter: brightness(1.12); }

/* ─── HERO ─── */
.hero {
  padding-top: 54px;
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #07071A;
}

#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Subtle left-side gradient so text stays readable */
.hero-left-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to right, #07071A 30%, rgba(7,7,26,0.7) 55%, transparent 80%);
}

/* Bottom fade from dark hero to light content */
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, #07071A 100%);
  pointer-events: none; z-index: 1;
}

/* Thin top edge glow */
.hero-glow-line {
  position: absolute; top: 54px; left: 0; right: 0;
  height: 1px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(0,120,255,0.6) 30%, rgba(0,212,255,0.8) 50%, rgba(0,120,255,0.6) 70%, transparent 100%);
}

.hero-ticker {
  position: relative; z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 40px;
  display: flex; align-items: center; gap: 32px;
  background: rgba(7,7,26,0.5);
  backdrop-filter: blur(8px);
}
.ticker-item {
  display: flex; align-items: center; gap: 7px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.ticker-sep { color: rgba(255,255,255,0.12); font-size: 14px; line-height: 1; }
.status-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #00E676; flex-shrink: 0;
  box-shadow: 0 0 6px #00E676;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero-body {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 72px 40px 96px;
}
.hero-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: rgba(0,200,255,0.85);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.hero-kicker::before {
  content: '//'; color: rgba(255,255,255,0.2); font-weight: 400;
}
.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(60px, 8.5vw, 120px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  max-width: 860px;
  margin-bottom: 44px;
}
.hero-h1 .accent {
  background: linear-gradient(135deg, #4D9FFF 0%, #00D4FF 60%, #7B6FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero-h1 .accent::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4D9FFF, #00D4FF);
  border-radius: 2px;
  -webkit-text-fill-color: initial;
}

.hero-lower {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 48px; align-items: start;
}
.hero-desc {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.5);
  max-width: 480px; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-blue {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  background: var(--blue); color: white;
  padding: 13px 24px; border-radius: 3px;
  text-decoration: none; transition: filter 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 0 24px rgba(0,82,255,0.4);
}
.btn-blue:hover { filter: brightness(1.15); box-shadow: 0 0 32px rgba(0,82,255,0.6); }
.btn-outline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  padding: 12px 24px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: all 0.15s;
  display: inline-flex; align-items: center;
}
.btn-outline:hover { background: rgba(255,255,255,0.10); color: white; border-color: rgba(255,255,255,0.2); }

.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; overflow: hidden;
  backdrop-filter: blur(16px);
  max-width: 360px;
}
.hs {
  background: rgba(10,10,40,0.55);
  padding: 20px 22px;
}
.hs-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px; font-weight: 700; color: #FFFFFF;
  letter-spacing: -0.05em; line-height: 1;
}
.hs-l {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: rgba(255,255,255,0.35);
  margin-top: 5px; letter-spacing: 0.06em; text-transform: uppercase;
}

/* Transition from dark hero to light page */
.hero-to-light {
  height: 80px;
  background: linear-gradient(to bottom, #07071A, var(--bg));
  border: none;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--d1);
  border-top: 1px solid var(--r1); border-bottom: 1px solid var(--r1);
  overflow: hidden;
}
.marquee-head {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--t3); letter-spacing: 0.14em;
  text-transform: uppercase; padding: 12px 40px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: scroll 32s linear infinite;
  padding: 12px 0 16px;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.p-logo {
  display: flex; align-items: center;
  padding: 0 40px; height: 44px;
  border-right: 1px solid var(--r0);
  opacity: 0.35; transition: opacity 0.2s; cursor: default;
}
.p-logo:hover { opacity: 0.9; }
.p-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--t1);
  letter-spacing: -0.03em; white-space: nowrap;
}
.p-logo .dot { color: var(--blue); margin-right: 2px; }

/* ─── SECTION HEADER ─── */
.sec-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500; color: var(--cyan);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.sec-eyebrow::before { content: '//'; color: var(--t3); }
.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.0;
  color: var(--t1);
}
.sec-title .hi { color: var(--blue); }

/* ─── SECTION DIVIDERS ─── */
.sec-rule {
  height: 1px; background: var(--r1); border: none; margin: 0;
}

/* ─── SERVICES ─── */
.services {
  background: var(--d0);
  border-bottom: 1px solid var(--r1);
  padding: 96px 40px;
  position: relative;
}
.services::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 500px; height: 500px;
  background: radial-gradient(circle at 90% 10%, rgba(0,82,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.svc-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-bottom: 64px; align-items: end; position: relative; z-index: 1;
}
.svc-intro {
  font-size: 15px; line-height: 1.7; color: var(--t2);
  padding-top: 16px; border-top: 1px solid var(--blue);
}
.svc-list { border-top: 1px solid var(--r1); position: relative; z-index: 1; }
.svc-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--r0);
  align-items: start; cursor: default;
  transition: background 0.2s;
}
.svc-row:hover { background: rgba(77,159,255,0.04); }
.svc-idx {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--t3);
  letter-spacing: 0.06em; padding-top: 3px;
}
.svc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600; color: var(--t1);
  letter-spacing: -0.03em; margin-bottom: 8px;
}
.svc-text { font-size: 13.5px; line-height: 1.7; color: var(--t2); max-width: 560px; }
.svc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  padding: 4px 9px; border-radius: 2px; white-space: nowrap; margin-top: 3px;
}

/* ─── AI SECTION ─── */
.ai-sec {
  background: var(--d1);
  padding: 96px 40px;
  border-bottom: 1px solid var(--r1);
  position: relative; overflow: hidden;
}
.ai-sec::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at 70% 30%, rgba(0,82,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.ai-inner {
  display: grid; grid-template-columns: 420px 1fr; gap: 80px;
  margin-top: 48px; align-items: start; position: relative; z-index: 1;
}
.ai-left p {
  font-size: 14px; line-height: 1.75; color: var(--t2);
  margin-top: 20px; margin-bottom: 32px;
}
.ai-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--r1); border: 1px solid var(--r1);
  border-radius: 4px; overflow: hidden;
}
.ai-card {
  background: var(--r0); padding: 28px 24px;
  transition: background 0.2s;
}
.ai-card:hover { background: rgba(255,255,255,0.07); }
.ai-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: rgba(0,212,255,0.55);
  letter-spacing: 0.1em; margin-bottom: 12px;
}
.ai-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 600; color: var(--t1);
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.ai-card-text { font-size: 12.5px; line-height: 1.65; color: var(--t2); }

/* ─── DECEPTION ─── */
.deception {
  padding: 96px 40px;
  background: var(--d0);
  border-bottom: 1px solid var(--r1);
  position: relative; overflow: hidden;
}
.deception::after {
  content: '';
  position: absolute; bottom: -80px; left: 50%;
  width: 600px; height: 400px; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(120,60,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.dec-header { margin-bottom: 56px; position: relative; z-index: 1; }
.dec-header .sec-title { max-width: 540px; margin-top: 12px; }
.dec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--r1); border: 1px solid var(--r1);
  border-radius: 4px; overflow: hidden; position: relative; z-index: 1;
}
.dc {
  background: var(--d1); padding: 36px 30px;
  transition: background 0.18s;
  position: relative;
}
.dc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue2), var(--cyan));
  opacity: 0; transition: opacity 0.2s;
}
.dc:hover { background: var(--d2); }
.dc:hover::before { opacity: 1; }
.dc-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--t3);
  letter-spacing: 0.1em; margin-bottom: 18px;
}
.dc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--t1);
  letter-spacing: -0.03em; margin-bottom: 10px;
}
.dc-text { font-size: 13px; line-height: 1.7; color: var(--t2); }

/* ─── FAIR ─── */
.fair {
  padding: 96px 40px;
  background: var(--d1);
  border-bottom: 1px solid var(--r1);
  position: relative; overflow: hidden;
}
.fair::before {
  content: '';
  position: absolute; top: 0; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,82,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.fair-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 80px;
  align-items: start; position: relative; z-index: 1;
}
.fair-left .sec-title { margin-top: 12px; margin-bottom: 20px; }
.fair-desc { font-size: 14px; line-height: 1.75; color: var(--t2); margin-bottom: 32px; }
.fair-list { display: flex; flex-direction: column; }
.fl {
  display: grid; grid-template-columns: 20px 1fr; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--r0); align-items: start;
}
.fl:first-child { border-top: 1px solid var(--r0); }
.fl-check {
  width: 16px; height: 16px; border-radius: 2px;
  background: var(--blue2); display: flex; align-items: center;
  justify-content: center; margin-top: 2px; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,82,255,0.5);
}
.fl-check svg { width: 9px; height: 9px; }
.fl-text { font-size: 13.5px; color: var(--t2); line-height: 1.6; }
.fl-text strong { font-weight: 600; color: var(--t1); }

.risk-panel {
  background: var(--d2); border: 1px solid var(--r1);
  border-radius: 6px; overflow: hidden;
}
.rp-head {
  padding: 16px 20px; border-bottom: 1px solid var(--r1);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--d3);
}
.rp-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; color: var(--t1);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.rp-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; background: rgba(0,230,118,0.15); color: var(--green);
  padding: 3px 8px; border-radius: 2px; letter-spacing: 0.06em;
  border: 1px solid rgba(0,230,118,0.25);
}
.rp-rows { padding: 0; }
.rp-row { padding: 16px 20px; border-bottom: 1px solid var(--r0); }
.rp-row:last-child { border-bottom: none; }
.rp-top { display: flex; justify-content: space-between; margin-bottom: 7px; align-items: baseline; }
.rp-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--t2); letter-spacing: 0.02em;
}
.rp-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--t1); letter-spacing: -0.03em;
}
.rp-bar { height: 3px; background: var(--r1); border-radius: 2px; overflow: hidden; }
.rp-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue2), var(--cyan));
  box-shadow: 0 0 6px rgba(77,159,255,0.4);
}
.rp-foot {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(0,82,255,0.3), rgba(0,212,255,0.15));
  border-top: 1px solid rgba(77,159,255,0.25);
  display: flex; justify-content: space-between; align-items: center;
}
.rp-foot-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase;
}
.rp-foot-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700; color: white; letter-spacing: -0.05em;
}

/* ─── PARTNERS ─── */
.partners {
  padding: 96px 40px;
  background: var(--d0);
  border-bottom: 1px solid var(--r1);
}
.partners-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-bottom: 56px; align-items: end;
}
.partners-desc { font-size: 14px; line-height: 1.75; color: var(--t2); }
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--r1); border: 1px solid var(--r1);
  border-radius: 4px; overflow: hidden;
}
.pc {
  background: var(--d1); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.18s; position: relative;
}
.pc::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.pc:hover { background: var(--d2); }
.pc:hover::after { opacity: 1; }
.pc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--t1);
  letter-spacing: -0.04em; line-height: 1;
}
.pc-name .accent { color: var(--blue); }
.pc-desc { font-size: 12.5px; line-height: 1.6; color: var(--t3); margin-top: 2px; }
.pc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t3); margin-top: auto;
}
.pc-dot { color: var(--cyan); margin-right: 4px; }
.pc-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.pc-logo-wrap {
  height: 28px; display: flex; align-items: center;
  flex-shrink: 0;
}
.pc-logo-img {
  height: 30px; width: 30px;
  object-fit: cover; border-radius: 6px;
  opacity: 0.75; transition: opacity 0.2s; display: block;
}
.pc:hover .pc-logo-img { opacity: 1; }
.pc-logo-svg { opacity: 0.9; transition: opacity 0.2s; }
.pc:hover .pc-logo-svg { opacity: 1; }
.pc-logo-wordmark {
  height: 22px; width: auto; max-width: 100px;
  object-fit: contain; border-radius: 0;
  filter: brightness(0) invert(1);
  opacity: 0.75; transition: opacity 0.2s; display: block;
}
.pc:hover .pc-logo-wordmark { opacity: 1; }
.pc-logo-icon-dark {
  height: 30px; width: 30px;
  object-fit: contain; border-radius: 0;
  filter: brightness(0) invert(1);
  opacity: 0.75; transition: opacity 0.2s; display: block;
}
.pc:hover .pc-logo-icon-dark { opacity: 1; }

/* ─── CTA ─── */
.cta {
  padding: 100px 40px;
  display: grid; grid-template-columns: 1fr 440px; gap: 80px;
  align-items: center; position: relative; overflow: hidden;
  background: var(--d1);
  border-bottom: 1px solid var(--r1);
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(0,82,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(0,212,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 700; letter-spacing: -0.05em; line-height: 0.95;
  color: var(--t1); position: relative; z-index: 1;
}
.cta-title .hi {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-right { position: relative; z-index: 1; }
.cta-desc { font-size: 15px; line-height: 1.7; color: var(--t2); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; margin-bottom: 20px; }
.btn-cta-p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  background: var(--blue); color: white;
  padding: 13px 24px; border-radius: 3px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 0 24px rgba(0,82,255,0.4);
  transition: filter 0.15s;
}
.btn-cta-p:hover { filter: brightness(1.15); }
.btn-cta-s {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  background: transparent; color: var(--t2);
  padding: 12px 24px; border-radius: 3px; border: 1px solid var(--r2);
  text-decoration: none; transition: all 0.15s;
}
.btn-cta-s:hover { color: var(--t1); border-color: rgba(255,255,255,0.3); }
.cta-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--t3);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ─── FOOTER ─── */
footer {
  background: #04040E;
  border-top: 1px solid var(--r0);
  padding: 56px 40px 28px;
}
.footer-top {
  display: grid; grid-template-columns: 200px 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; margin-bottom: 12px;
}
.footer-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--t1); letter-spacing: -0.03em;
}
.footer-logo svg { width: 22px; height: 22px; }
.footer-tagline { font-size: 12px; color: var(--t3); line-height: 1.6; }
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--t2);
  text-decoration: none; margin-bottom: 10px; transition: color 0.15s;
}
.footer-col a:hover { color: var(--t1); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--r0);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--t3); letter-spacing: 0.04em;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--t3);
  text-decoration: none; letter-spacing: 0.04em; transition: color 0.15s;
}
.footer-links a:hover { color: var(--t1); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── SERVICE CARDS GRID ─── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--r1);
  border: 1px solid var(--r1); border-radius: 4px; overflow: hidden;
  position: relative; z-index: 1;
}
.svc-card {
  background: var(--d1); padding: 30px 26px;
  transition: background 0.18s; position: relative;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue2), var(--cyan));
  opacity: 0; transition: opacity 0.2s;
}
.svc-card:hover { background: var(--d2); }
.svc-card:hover::before { opacity: 1; }
.svc-card-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(77,159,255,0.1);
  border: 1px solid rgba(77,159,255,0.18);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-card-icon svg { width: 18px; height: 18px; }
.svc-card-icon.cyan-icon { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.2); }
.svc-card-icon.violet-icon { background: rgba(120,60,255,0.1); border-color: rgba(120,60,255,0.2); }
.svc-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--t1);
  letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.3;
}
.svc-card-items {
  list-style: none; display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 16px;
}
.svc-card-items li {
  font-size: 12px; color: var(--t3);
  display: flex; align-items: center; gap: 7px; line-height: 1.4;
}
.svc-card-items li::before {
  content: ''; width: 3px; height: 3px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.svc-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(77,159,255,0.08); border: 1px solid rgba(77,159,255,0.15);
  padding: 3px 8px; border-radius: 2px; display: inline-block;
}

/* 3-column nav dropdown */
.nav-dropdown.wide3 {
  min-width: 760px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.nav-dropdown.wide3 .dd-col { padding: 16px; }
.nav-dropdown.wide3 .dd-col + .dd-col { border-left: 1px solid rgba(255,255,255,0.06); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-lower, .svc-header, .ai-inner, .fair-inner, .cta, .partners-header { grid-template-columns: 1fr; }
  .ai-inner { gap: 40px; }
  .ai-grid { grid-template-columns: 1fr; }
  .dec-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .dec-grid { grid-template-columns: 1fr; }
}
