@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@300;400;500;700&display=swap');

:root {
  --bg: #08080a;
  --bg-panel: #0e0e11;
  --bg-panel-2: #111114;
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --purple-pale: #C4B5FD;
  --purple-deep: #2E1065;
  --text: #F5F5F7;
  --text-muted: #9494A0;
  --text-faint: #5C5C66;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.16);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(.16,.8,.24,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur-fast: 200ms;
  --dur-base: 350ms;
  --dur-slow: 900ms;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-full: 999px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 24px; } }

/* ---------- Focus states ---------- */
:focus-visible { outline: 2px solid var(--purple-light); outline-offset: 2px; }

/* ---------- Typography & Base ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}

/* ---------- Global Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}
.btn:hover {
  border-color: var(--purple-light);
  background: rgba(124,58,237,0.12);
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

.btn-solid {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.btn-solid:hover {
  background: #6D28D9;
  border-color: #6D28D9;
}
.btn-sm { padding: 11px 22px; font-size: 11px; }

/* ---------- Form Fields ---------- */
.field{ margin-bottom:24px; }
.field label{
  font-family:var(--font-mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--text-faint); display:block; margin-bottom:8px;
}
.field input, .field textarea{
  width:100%; background:var(--bg-panel-2); border:1px solid var(--border);
  border-radius:var(--radius-sm); padding:14px 16px; color:var(--text);
  font-family:var(--font-body); font-size:15px;
  transition: border-color var(--dur-fast) ease;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--purple-light); }
.field textarea{ min-height:140px; resize:vertical; }
.field.error input, .field.error textarea{ border-color:#EF4444; }
.field-error-msg{ display:none; font-family:var(--font-mono); font-size:11px; color:#EF4444; margin-top:6px; }
.field.error .field-error-msg{ display:block; }
.form-status{ font-family:var(--font-mono); font-size:13px; color:var(--purple-light); margin-top:16px; min-height:20px; }

/* ---------- Navigation ---------- */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:50; height:76px;
  display:flex; align-items:center;
  border-bottom:1px solid transparent;
  background: transparent;
  transition: background var(--dur-base) ease, border-color var(--dur-base) ease, backdrop-filter var(--dur-base) ease;
}
.site-nav.scrolled, .site-nav.solid{
  background: rgba(8,8,10,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: var(--border);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.nav-logo{
  font-family:var(--font-display); font-weight:700; letter-spacing:.28em;
  font-size:13px; text-transform:uppercase; color:#fff;
}
.nav-links{
  display:flex; align-items:center; gap:36px;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase;
}
.nav-links a:not(.btn){ color:var(--text-muted); transition:color var(--dur-fast) ease; }
.nav-links a:not(.btn):hover{ color:#fff; }
.nav-links a.active{ color:var(--purple-light); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:24px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ height:1px; width:100%; background:#fff; transition: transform var(--dur-base) var(--ease-spring), opacity var(--dur-fast) ease; }
.nav-toggle.open span:first-child{ transform: translateY(3px) rotate(45deg); }
.nav-toggle.open span:last-child{ transform: translateY(-3px) rotate(-45deg); }

@media (max-width:860px){
  .nav-links{
    position:fixed; inset:76px 0 0 0; background:var(--bg);
    flex-direction:column; justify-content:center; align-items:center; gap:32px;
    font-size:16px;
    transform:translateX(100%);
    transition: transform var(--dur-base) var(--ease-out);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:flex; }
}

/* ---------- Global Footer (Interior pages) ---------- */
.site-footer{ padding:56px 0 36px; border-top:1px solid var(--border); }
.footer-inner{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:32px; }
.footer-brand .footer-logo{ font-family:var(--font-display); font-weight:700; letter-spacing:.3em; font-size:12px; color:#fff; }
.footer-tag{ font-family:var(--font-mono); font-size:11px; color:var(--text-faint); margin-top:10px; max-width:260px; line-height: 1.4; }
.footer-links{ display:flex; gap:22px; font-family:var(--font-mono); font-size:11px; color:var(--text-muted); flex-wrap:wrap; }
.footer-links a{ color:var(--text-muted); transition: color var(--dur-fast) ease; }
.footer-links a:hover{ color:var(--purple-light); }
.footer-meta{ display:flex; gap:18px; font-family:var(--font-mono); font-size:11px; color:var(--text-faint); flex-wrap:wrap; }
.footer-meta a{ color:var(--text-faint); transition: color var(--dur-fast) ease; }
.footer-meta a:hover{ color:var(--purple-light); }

/* ---------- Minimal Footer (Homepage) ---------- */
.home-footer { padding: 40px 0; border-top: 1px solid var(--border); }
.home-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.home-footer .footer-logo { font-family: var(--font-display); font-weight: 700; letter-spacing: .3em; font-size: 12px; color: #fff; }
.home-footer .footer-links { display: flex; gap: 24px; font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; }
.home-footer .footer-links a { color: var(--text-faint); transition: color var(--dur-fast) ease; }
.home-footer .footer-links a:hover { color: var(--purple-light); }
.home-footer .footer-links span { color: var(--text-faint); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1.in-view { transition-delay: .08s; }
.reveal-d2.in-view { transition-delay: .16s; }
.reveal-d3.in-view { transition-delay: .24s; }
.reveal-d4.in-view { transition-delay: .32s; }
.reveal-d5.in-view { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================= HERO (Homepage) ================= */
.hero { position:relative; min-height:100vh; display:flex; flex-direction:column; justify-content:space-between; overflow:hidden; background:#020203; }
.hero-canvas-wrap { position:absolute; inset:0; z-index:0; }
#hero-canvas { width:100%; height:100%; display:block; cursor: none; }
.hero-fallback-bg { position:absolute; inset:0; background: radial-gradient(60% 45% at 50% 32%, rgba(124,58,237,0.18), transparent 70%), radial-gradient(90% 60% at 50% 100%, #17101f, #08080a 60%); z-index:0; }
.hero-vignette { position:absolute; inset:0; z-index:1; pointer-events:none; background: linear-gradient(180deg, rgba(2,2,3,0.55) 0%, rgba(2,2,3,0) 20%, rgba(2,2,3,0) 70%, rgba(2,2,3,0.75) 100%), radial-gradient(120% 70% at 50% 50%, transparent 55%, rgba(2,2,3,0.55) 100%); }
.hero-content { position:relative; z-index:2; display:flex; flex-direction:column; min-height:100vh; justify-content:space-between; padding: 40px 0 44px; pointer-events: none; }
.hero-top { display:flex; justify-content:center; padding-top:8px; opacity: 0; pointer-events: none; } /* hidden since global nav sits on top */
.hero-hint { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2; font-family:var(--font-mono); font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:rgba(245,245,247,0.55); display:flex; align-items:center; gap:8px; pointer-events:none; transition:opacity .6s ease; }
.hero-hint::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--purple-light); box-shadow:0 0 12px 2px var(--purple-light); }
.hero-hint.hidden { opacity:0; }
.hero-bottom { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; padding: 0 44px; }
.hero-bottom-inner { max-width:760px; pointer-events: auto; }
.hero-heading { font-family:var(--font-display); font-weight:700; font-size:clamp(28px, 5.2vw, 54px); line-height:1.06; letter-spacing:0.01em; text-transform:uppercase; color:#fff; margin-bottom:20px; }
.hero-eyebrow-row { font-family:var(--font-mono); font-size:12px; letter-spacing:0.05em; color:var(--text-muted); display:flex; flex-wrap:wrap; gap:0; }
.hero-eyebrow-row span:not(:last-child)::after { content:'â€¢'; margin:0 10px; color:var(--purple-light); }
.hero-arrow { width:44px; height:44px; flex-shrink:0; border-radius:50%; border:1px solid var(--border-strong); display:flex; align-items:center; justify-content:center; color:#fff; transition:border-color .3s ease, background .3s ease; pointer-events: auto; }
.hero-arrow:hover { border-color:var(--purple-light); background:rgba(124,58,237,0.15); }
.hero-arrow svg { width:16px; height:16px; }
.hero-dots { position:absolute; bottom:14px; left:0; right:0; display:flex; justify-content:center; gap:8px; z-index:2; pointer-events: none; }
.hero-dots span { width:5px; height:5px; border-radius:50%; background:var(--text-faint); }
.hero-dots span.active { background:var(--purple-light); }
@media (max-width:720px){ .hero-bottom{ flex-direction:column; align-items:flex-start; gap:20px; padding:0 24px; } .hero-arrow{ align-self:flex-end; } .hero-hint{ font-size:10px; } }
/* ================= LOGO STRIP ================= */
.logo-strip {
  padding: 56px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  overflow: hidden;
  display: flex;
}
.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.logo-set {
  display: flex;
  align-items: center;
  gap: 96px;
  padding-right: 96px;
}
.logo-item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  text-transform: uppercase;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}


/* ================= INTRO / PROBLEM (SCROLL SCRUB) ================= */
.intro-scroll { position: relative; background: var(--bg-panel); border-top: 1px solid var(--border); }
.intro-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0 32px; overflow: hidden; }
.intro-inner { max-width: 900px; width: 100%; text-align: center; position: relative; }

.scrub-container { position: relative; height: 50vh; min-height: 400px; display: flex; align-items: center; justify-content: center; }

.scrub-line { 
  position: absolute; 
  top: 50%; left: 50%; transform: translate(-50%, -50%) translateY(32px);
  width: 100%;
  font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 4.8vw, 48px); line-height: 1.25; letter-spacing: -0.02em;
  color: #fff;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.scrub-line.active { opacity: 1; transform: translate(-50%, -50%) translateY(0); pointer-events: auto; }
.scrub-line.done { opacity: 0; transform: translate(-50%, -50%) translateY(-32px); }

.scrub-line.hi { color: var(--purple-light); }

/* Final CTA Block (Full Screen Overlay) â€” White-to-Purple Gradient */
.scrub-line.scrub-cta-block {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateY(32px);
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.06) 0%,
    rgba(196, 181, 253, 0.08) 15%,
    rgba(167, 139, 250, 0.12) 30%,
    rgba(139, 92, 246, 0.20) 50%,
    rgba(124, 58, 237, 0.35) 70%,
    rgba(91, 33, 182, 0.55) 85%,
    rgba(46, 16, 101, 0.80) 100%
  );
}
.scrub-line.scrub-cta-block.active { transform: translateY(0); }
.scrub-line.scrub-cta-block.done { transform: translateY(-32px); }

.cta-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(167, 139, 250, 0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(167, 139, 250, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
}
.cta-bg-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80vh; z-index: 1;
  background: radial-gradient(ellipse at bottom, rgba(124, 58, 237, 0.6) 0%, rgba(91, 33, 182, 0.3) 40%, transparent 75%);
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 32px;
  text-align: center;
  margin: 0 auto;
}

.cta-huge { 
  font-family: var(--font-display); 
  font-size: clamp(36px, 6vw, 76px); 
  font-weight: 300; 
  letter-spacing: -0.03em; 
  line-height: 1.05; 
  margin-bottom: 24px;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #e8e0ff 30%, #C4B5FD 55%, #A78BFA 75%, #7C3AED 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
.cta-huge .hi { 
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #C4B5FD 35%, #A78BFA 60%, #7C3AED 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 400; 
}
.cta-sub { 
  font-family: var(--font-display); 
  font-size: clamp(20px, 3.5vw, 32px); 
  font-weight: 600; 
  letter-spacing: -0.01em; 
  margin-bottom: 24px;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #e8e0ff 40%, #C4B5FD 70%, #A78BFA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
.cta-body { 
  font-size: clamp(17px, 2.2vw, 21px); 
  line-height: 1.6; 
  max-width: 760px; 
  margin: 0 auto 16px; 
  font-family: var(--font-body); 
  font-weight: 300;
  color: transparent;
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, #C4B5FD 60%, #A78BFA 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.cta-body.strong { 
  color: transparent; 
  margin-bottom: 44px;
  background: linear-gradient(135deg, #ffffff 0%, #e8e0ff 40%, #C4B5FD 70%, #A78BFA 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.cta-body.strong strong { 
  font-weight: 600; 
  letter-spacing: 0.01em; 
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #C4B5FD 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: #000;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  padding: 16px 36px; border-radius: var(--radius-sm); border: none; text-transform: uppercase;
  cursor: pointer; transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-fast);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4); }
.btn-white svg { width: 18px; height: 18px; }

/* ================= PROCESS CAROUSEL SECTION ================= */
/* ================= NEW PROCESS SECTION ================= */
.process-section {
  position: relative;
  z-index: 50; 
  background: #000000;
  border-radius: 48px;
  margin-top: -24px;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
  padding: 100px 0;
}
.process-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}
.ps-header {
  text-align: center;
  margin-bottom: 80px;
}
.ps-header h2 { 
  font-family: var(--font-display); 
  font-size: clamp(32px, 4vw, 56px); 
  font-weight: 300; 
  color: #fff; 
  margin-bottom: 16px; 
  letter-spacing: -0.02em; 
}
.ps-sub { 
  font-size: clamp(17px, 2vw, 20px); 
  color: var(--text-muted); 
  line-height: 1.6; 
  font-weight: 300; 
}

/* Vertical Step List */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.step-row {
  display: flex;
  gap: 32px;
  align-items: center;
  opacity: 0.1;
  transform: translateX(40px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.step-row.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* Big Number on the left */
.step-num-col {
  flex-shrink: 0;
  width: 160px;
  text-align: right;
}
.step-num {
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.8;
  font-style: italic;
  display: inline-block;
  transform: translateY(10px);
  padding: 0 20px;
}

/* The Dark Card */
.step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(124,58,237,0.1), transparent 60%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.step-row.is-active .step-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.step-row.is-active .step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(167,139,250,0.2);
}
.step-row.is-active .step-card:hover::before {
  opacity: 1;
}

.step-card-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Vector Shape Area */
.step-shape-box {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-svg {
  width: 100%;
  height: 100%;
}
.morph-shape {
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center;
}

/* Shape Animation States */
/* When not active, all shapes collapse into a single circle in the center */
.step-row:not(.is-active) .morph-shape {
  transform: scale(0.1) rotate(-90deg);
  opacity: 0;
}
.step-row:not(.is-active) .morph-shape:first-child {
  transform: scale(1) rotate(0);
  opacity: 1;
  cx: 80; cy: 80;
  points: "80,40 120,80 80,120 40,80";
}

/* Active states (morph out into full shape) */
.step-row.is-active .morph-shape {
  transform: scale(1) rotate(0);
  opacity: 1;
}

/* Text Content inside Card */
.step-text {
  flex: 1;
}
.step-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.step-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 800px) {
  .step-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .step-num-col {
    width: 100%;
    text-align: left;
  }
  .step-card-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .step-num { font-size: 80px; }
}




/* ================= STATS ================= */
.stats { background: #000000; border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 100px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center; }
.stat-num { font-family:var(--font-mono); font-weight:500; font-size:clamp(40px,5vw,56px); color:#fff; font-variant-numeric: tabular-nums; text-shadow: 0 0 20px rgba(167, 139, 250, 0.4); }
.stat-num span.accent { color:var(--purple-light); text-shadow: 0 0 24px rgba(124, 58, 237, 0.6); }
.stat-label { font-family:var(--font-mono); font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-faint); margin-top:12px; }
@media (max-width:800px){ .stats-grid{ grid-template-columns:repeat(2,1fr); row-gap:48px; } }

/* ================= TESTIMONIALS ================= */
.testimonials { padding:140px 0; }
.testimonials-head { text-align:center; margin-bottom:64px; }
.testimonials-head h2 { font-family:var(--font-display); font-size:clamp(24px,3.4vw,32px); font-weight:700; color:#fff; margin-top:14px; }
.t-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--border); border:1px solid var(--border); }
.t-card { background:var(--bg); padding:44px; }
.t-quote { font-family:var(--font-display); font-size:19px; line-height:1.55; color:var(--text); margin-bottom:28px; }
.t-name { font-family:var(--font-mono); font-size:12px; color:#fff; letter-spacing:0.04em; }
.t-role { font-family:var(--font-mono); font-size:12px; color:var(--text-faint); margin-top:2px; }
@media (max-width:760px){ .t-grid{ grid-template-columns:1fr; } }
@media (max-width: 1023px) { .testimonials { padding: 96px 0; } }
@media (max-width: 719px) { .testimonials { padding: 80px 0; } }

/* ================= CASE STUDIES ================= */
.cases { background:var(--bg-panel); padding:140px 0; border-top:1px solid var(--border); }
.cases-head { text-align:center; margin-bottom:64px; }
.cases-head h2 { font-family:var(--font-display); font-size:clamp(24px,3.4vw,32px); font-weight:700; color:#fff; margin-top:14px; }
.case-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.case-card { border:1px solid var(--border); border-radius:14px; padding:28px; background:linear-gradient(160deg, rgba(124,58,237,0.08), transparent 60%); transition:border-color .3s ease, transform .3s ease; }
.case-card:hover { border-color:var(--border-strong); transform:translateY(-4px); }
.case-tag { font-family:var(--font-mono); font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--purple-light); }
.case-card h3 { font-family:var(--font-display); font-size:19px; font-weight:700; color:#fff; margin:14px 0 10px; line-height:1.35; }
.case-card p { color:var(--text-muted); font-size:14px; line-height:1.65; }
.case-card a { display: block; color: inherit; }
@media (max-width:860px){ .case-grid{ grid-template-columns:1fr; } }
@media (max-width: 1023px) { .cases { padding: 96px 0; } }
@media (max-width: 719px) { .cases { padding: 80px 0; } }

/* ================= FAQ ================= */
.faq { padding:140px 0; max-width:820px; margin:0 auto; }
.faq-head { text-align:center; margin-bottom:56px; }
.faq-head h2 { font-family:var(--font-display); font-size:clamp(24px,3.4vw,32px); font-weight:700; color:#fff; margin-top:14px; }
.faq-item { border-top:1px solid var(--border); }
.faq-item:last-child { border-bottom:1px solid var(--border); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:26px 4px; background:none; border:none; text-align:left; color:#fff; font-family:var(--font-display); font-size:17px; font-weight:500; cursor:pointer; }
.faq-q-icon { flex-shrink:0; width:22px; height:22px; position:relative; }
.faq-q-icon::before, .faq-q-icon::after { content:''; position:absolute; background:var(--purple-light); transition:transform .35s ease; }
.faq-q-icon::before { left:0; top:50%; width:100%; height:1px; transform:translateY(-50%); }
.faq-q-icon::after { top:0; left:50%; width:1px; height:100%; transform:translateX(-50%); }
.faq-item.open .faq-q-icon::after { transform:translateX(-50%) rotate(90deg); opacity:0; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-a p { padding:0 4px 26px; color:var(--text-muted); font-size:15px; line-height:1.7; max-width:640px; }
@media (max-width: 1023px) { .faq { padding: 96px 0; } }
@media (max-width: 719px) { .faq { padding: 80px 0; } }

/* ================= FINAL CTA ================= */
.final-cta { position:relative; padding:160px 0; text-align:center; background:var(--bg-panel); border-top:1px solid var(--border); overflow:hidden; }
.final-cta-ring { position:absolute; top:50%; left:50%; width:520px; height:520px; transform:translate(-50%,-50%); border:1px dashed var(--border-strong); border-radius:50%; animation:spin 60s linear infinite; }
.final-cta-ring.two { width:640px; height:640px; animation-duration:90s; animation-direction:reverse; opacity:.5; }
@keyframes spin { to { transform:translate(-50%,-50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .final-cta-ring { animation:none; } }
.final-cta-inner { position:relative; z-index:1; max-width:640px; margin:0 auto; }
.final-cta h2 { font-family:var(--font-display); font-size:clamp(24px,4vw,36px); font-weight:700; color:#fff; line-height:1.35; margin-bottom:36px; }
.final-cta h2 .muted { color:var(--text-faint); }


/* ================= SERVICES PAGE ================= */
.page-hero { padding: 160px 0 100px; text-align: center; position: relative; background: var(--bg-panel); overflow: hidden; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 56px); color: #fff; line-height: 1.1; margin-bottom: 24px; position: relative; z-index: 2; text-transform: uppercase; }
.page-hero .sub { color: var(--text-muted); font-size: clamp(17px, 2vw, 19px); line-height: 1.6; max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 60%); z-index: 1; pointer-events: none; }
.page-hero-noise { position: absolute; inset: 0; z-index: 1; opacity: 0.5; pointer-events: none; }

.pillar { display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center; padding:100px 0; }
.pillar:nth-child(even) { direction: rtl; } 
.pillar:nth-child(even) > * { direction: ltr; }
.pillar-visual { aspect-ratio: 4/3; border-radius: var(--radius-md); background: var(--bg-panel-2); overflow:hidden; position: relative; }
.pillar-visual img, .pillar-visual canvas { width: 100%; height: 100%; object-fit: cover; }
.pillar-content h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: #fff; margin-bottom: 20px; }
.pillar-content p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.pillar-list { list-style: none; margin-bottom: 32px; }
.pillar-list li { font-family: var(--font-mono); font-size: 12px; color: var(--text); padding-left: 16px; position: relative; margin-bottom: 12px; letter-spacing: 0.05em; }
.pillar-list li::before { content: 'â€”'; position: absolute; left: 0; color: var(--purple-light); }
.pillar-content a { font-family: var(--font-mono); font-size: 12px; color: var(--purple-light); text-transform: uppercase; letter-spacing: 0.1em; transition: color var(--dur-fast) ease; }
.pillar-content a:hover { color: #fff; }

@media (max-width:860px){ 
  .pillar{ grid-template-columns:1fr; direction:ltr !important; padding:64px 0; } 
}

/* ================= WORK PAGE ================= */
.work-index { padding: 140px 0; }
.filter-row { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:56px; }
.filter-pill { font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; padding:10px 18px; border-radius:var(--radius-full); border:1px solid var(--border); background:transparent; color:var(--text-muted); cursor:pointer; transition: all var(--dur-fast) ease; }
.filter-pill.active { border-color: var(--purple-light); color:#fff; background:rgba(124,58,237,0.12); }
.filter-pill:hover:not(.active) { color: #fff; border-color: var(--border-strong); }

/* ================= CASE STUDY TEMPLATE ================= */
.cs-hero { position: relative; padding: 180px 0 80px; min-height: 60vh; display: flex; align-items: flex-end; }
.cs-hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--bg-panel-2); overflow: hidden; }
.cs-hero-bg img, .cs-hero-bg canvas { width: 100%; height: 100%; object-fit: cover; }
.cs-hero-content { position: relative; z-index: 2; max-width: 800px; }
.cs-hero-content h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.cs-hero-content .result-headline { font-size: clamp(18px, 2vw, 22px); color: var(--purple-light); }

.cs-narrative { padding: 100px 0; max-width: 760px; margin: 0 auto; }
.cs-section { margin-bottom: 80px; }
.cs-section h2 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 24px; }
.cs-section p { font-size: 18px; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px; }
.cs-section p:last-child { margin-bottom: 0; }

/* ================= ABOUT PAGE ================= */
.about-hero { padding: 160px 0 100px; max-width: 800px; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 32px; }
.about-hero p { font-size: 19px; line-height: 1.6; color: var(--text-muted); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; padding: 80px 0 140px; }
.team-member { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; background: var(--bg-panel); }
.team-photo { aspect-ratio: 1; background: var(--bg-panel-2); border-radius: var(--radius-sm); margin-bottom: 24px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.team-role { font-family: var(--font-mono); font-size: 11px; color: var(--purple-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.team-bio { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

.about-process { padding: 100px 0; border-top: 1px solid var(--border); }
.about-process h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 48px; }
.process-list { list-style: none; }
.process-list li { font-size: 18px; color: var(--text-muted); margin-bottom: 24px; display: flex; gap: 16px; }
.process-list li span { font-family: var(--font-mono); font-weight: 700; color: var(--text); display: inline-block; min-width: 120px; }

/* ================= PREMIUM CONTACT PAGE ================= */
.contact-premium {
  position: relative; min-height: 100vh; padding: 160px 0 100px;
  overflow: hidden; background: var(--bg); display: flex; align-items: center;
}

/* Ambient Background */
.ambient-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.ambient-bg .orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3; animation: orb-float 15s ease-in-out infinite alternate; }
.ambient-bg .orb-1 { width: 60vw; height: 60vw; background: var(--purple); top: -20%; left: -10%; }
.ambient-bg .orb-2 { width: 50vw; height: 50vw; background: #3b82f6; bottom: -10%; right: -10%; animation-delay: -5s; }
.ambient-bg .orb-3 { width: 40vw; height: 40vw; background: #10b981; top: 40%; left: 30%; animation-delay: -10s; }

@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 10%) scale(1.1); }
}

/* Floating Fun Elements & Parallax */
.floating-elements { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.parallax-wrapper { transition: transform 0.1s linear; will-change: transform; }

.float-shape { border: 1px solid rgba(255,255,255,0.05); }
.shape-square { width: 100px; height: 100px; border-radius: 16px; transform: rotate(15deg); animation: float-sq 10s linear infinite; }
.shape-circle { width: 150px; height: 150px; border-radius: 50%; animation: float-circ 12s linear infinite reverse; }
.shape-ring { width: 80px; height: 80px; border-radius: 50%; border: 4px solid rgba(167, 139, 250, 0.1); animation: float-ring 8s linear infinite; }

.float-tech {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 30px; padding: 10px 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; color: #fff;
  text-transform: uppercase; letter-spacing: 0.1em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.float-tech.badge-glow { animation: float-circ 6s ease-in-out infinite; }
.float-tech.badge-glass { animation: float-up-down 8s ease-in-out infinite reverse; }

/* Premium 3D Data Card */
.premium-3d-card {
  display: flex; align-items: center; gap: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 20px 32px 20px 24px; border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: float-up-down 8s ease-in-out infinite alternate;
}

.icon-3d-container {
  width: 48px; height: 48px; perspective: 800px;
}

.cube-3d {
  width: 100%; height: 100%; position: relative;
  transform-style: preserve-3d;
  animation: rotate-cube 12s linear infinite;
}

.cube-face {
  position: absolute; width: 48px; height: 48px;
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.6);
  box-shadow: inset 0 0 15px rgba(167, 139, 250, 0.4);
}

.cube-face.front  { transform: rotateY(  0deg) translateZ(24px); }
.cube-face.right  { transform: rotateY( 90deg) translateZ(24px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(24px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(24px); }
.cube-face.top    { transform: rotateX( 90deg) translateZ(24px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(24px); }

@keyframes rotate-cube {
  0% { transform: rotateX(-20deg) rotateY(0deg); }
  100% { transform: rotateX(-20deg) rotateY(360deg); }
}

.card-data { display: flex; flex-direction: column; }
.card-data .data-num { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: #fff; line-height: 1; margin-bottom: 4px; }
.card-data .data-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-light); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; }
.pulse-dot.green { background: #10b981; box-shadow: 0 0 12px #10b981; animation: pulse-green 2s infinite; }

@keyframes pulse-green { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
@keyframes float-up-down { 0% { transform: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } }
@keyframes float-sq { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(45deg); } 100% { transform: translateY(0) rotate(90deg); } }
@keyframes float-circ { 0% { transform: translateY(0) scale(1); } 50% { transform: translateY(-40px) scale(1.05); } 100% { transform: translateY(0) scale(1); } }
@keyframes float-ring { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(180deg); } 100% { transform: translateY(0) rotate(360deg); } }

/* Contact Grid */
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }

.premium-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 300; letter-spacing: -0.03em; color: #fff; line-height: 1.1; margin-bottom: 24px; }
.premium-sub { font-size: 20px; color: var(--text-muted); line-height: 1.6; font-weight: 300; margin-bottom: 48px; }

.hover-link { font-family: var(--font-mono); font-size: 24px; color: var(--purple-light); text-decoration: none; position: relative; transition: color 0.3s; }
.hover-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease; }
.hover-link:hover::after { transform: scaleX(1); transform-origin: left; }
.contact-mono { font-family: var(--font-mono); font-size: 14px; color: var(--text-faint); margin-top: 40px; }

/* Glassmorphic Form */
.contact-form-glass { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 24px; padding: 48px; box-shadow: 0 24px 48px rgba(0,0,0,0.2); }

.premium-field { position: relative; margin-bottom: 32px; }
.premium-field input, .premium-field textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 18px; padding: 12px 0; font-family: var(--font-body); transition: border-color 0.3s; }
.premium-field textarea { min-height: 120px; resize: none; }
.premium-field input:focus, .premium-field textarea:focus { outline: none; border-color: rgba(255,255,255,0.3); }

.premium-field label { position: absolute; top: 12px; left: 0; font-size: 18px; color: var(--text-muted); font-weight: 300; pointer-events: none; transition: all 0.3s ease; }
.premium-field input:focus ~ label, .premium-field input:not(:placeholder-shown) ~ label, .premium-field textarea:focus ~ label, .premium-field textarea:not(:placeholder-shown) ~ label { top: -16px; font-size: 13px; color: var(--purple-light); font-family: var(--font-mono); letter-spacing: 0.05em; text-transform: uppercase; }

.field-border { position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--purple); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.premium-field input:focus ~ .field-border, .premium-field textarea:focus ~ .field-border { transform: scaleX(1); }

.btn-premium { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: #fff; color: #000; font-family: var(--font-mono); font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 20px 40px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.3s ease; width: 100%; margin-top: 16px; }
.btn-premium:hover { background: var(--purple-light); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(167, 139, 250, 0.3); }
.btn-premium svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.btn-premium:hover svg { transform: translateX(4px); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } .contact-form-glass { padding: 32px 24px; } }

/* ================= 404 PAGE ================= */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--bg-panel); position: relative; overflow: hidden; }
.page-404 h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: #fff; margin-bottom: 24px; position: relative; z-index: 2; }
.page-404 p { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; position: relative; z-index: 2; }

/* ================= CUSTOM CURSOR ================= */
@media (pointer: fine) {
  body, a, button, input, textarea, select, .btn, .faq-q, .nav-toggle, .filter-pill, .hero-arrow {
    cursor: none !important;
  }
  
  #custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--purple-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    transition: opacity 0.2s var(--ease-out);
  }
  
  #custom-cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(167, 139, 250, 0.4);
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    will-change: transform, width, height, background;
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  
  #custom-cursor-trail.hover {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(167, 139, 250, 0.6);
  }
}


/* ================= REVIEWS SECTION ================= */
.reviews-section {
  background: #000000;
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.rev-header {
  margin-bottom: 64px;
}
.rev-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
}
.accent-text {
  color: transparent;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.rev-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.rev-card:hover {
  transform: translateY(8px);
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(124, 58, 237, 0.04);
  box-shadow: 0 15px 35px -10px rgba(124, 58, 237, 0.4), inset 0 0 20px rgba(124, 58, 237, 0.15);
}
.rev-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  flex: 1;
  text-align: center;
}
.rev-highlight {
  color: #fff;
  font-weight: 500;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rev-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.rev-name {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.rev-company {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .rev-grid { grid-template-columns: 1fr; }
}


