:root {
  --bg: #0a0e1a;
  --bg-2: #0f1424;
  --surface: #141b30;
  --surface-2: #1a2240;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #e8ecf5;
  --text-dim: #9aa3b8;
  --text-muted: #6b7390;
  --brand: #1ec8ff;
  --brand-2: #6a8cff;
  --brand-glow: rgba(30, 200, 255, 0.45);
  --accent: #b993ff;
  --success: #2ecc71;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.6), 0 10px 20px -10px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ─── Background animation ─── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.45;
  animation: float 22s ease-in-out infinite;
}
.orb-1 { width: 560px; height: 560px; background: var(--brand); top: -160px; left: -160px; }
.orb-2 { width: 640px; height: 640px; background: var(--brand-2); top: 12%; right: -200px; animation-delay: -7s; opacity: 0.35; }
.orb-3 { width: 480px; height: 480px; background: var(--accent); bottom: -180px; left: 30%; animation-delay: -14s; opacity: 0.28; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(60px,-40px) scale(1.08); }
  66%     { transform: translate(-40px,30px) scale(0.95); }
}
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
}

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10,14,26,0.55);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 7px; text-decoration: none; color: var(--text); }
.logo-mark { width: auto; height: 36px; color: var(--text); flex-shrink: 0; transition: transform 0.4s; display: block; overflow: visible; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-burst {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
  animation: logoBurst 2s ease-out infinite;
}
.logo-burst-2 { animation-delay: 1s; stroke: var(--accent); }
@keyframes logoBurst {
  0%   { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}
.logo-text { display: flex; flex-direction: column; line-height: 1; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; gap: 3px; }
.logo-text span:last-child { color: var(--brand); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--text-dim); text-decoration: none; font-size: 14.5px; font-weight: 500;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--brand); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 100px; font-weight: 600; font-size: 14.5px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 15.5px; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #06121e;
  box-shadow: 0 10px 30px -10px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-ghost { color: var(--text-dim); background: transparent; }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn-outline { color: var(--text); background: rgba(255,255,255,0.04); border-color: var(--border-strong); }
.btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline-light { color: var(--text); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); }

/* ─── Hero ─── */
.hero { position: relative; z-index: 2; padding: 70px 40px 40px; }
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(30,200,255,0.1); border: 1px solid rgba(30,200,255,0.25);
  color: var(--brand); font-size: 13.5px; font-weight: 500;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 0 var(--brand-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(30,200,255,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(30,200,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,200,255,0); }
}
.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.hero-title .line { display: block; overflow: hidden; }
.gradient-text {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 200%;
  animation: shift 6s ease infinite;
}
@keyframes shift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.strike { text-decoration: line-through; text-decoration-color: rgba(255,99,99,0.7); text-decoration-thickness: 4px; color: var(--text-muted); }

.hero-sub {
  color: var(--text-dim); font-size: 18px; max-width: 560px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--border);
  max-width: 620px;
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px; font-weight: 700;
  background: linear-gradient(180deg, #fff, #b8c2da);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats small { color: var(--text-muted); font-size: 12.5px; }

/* Hero visual */
.hero-visual {
  position: relative; height: 580px;
}
.visual-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--border);
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  animation: spin 30s linear infinite;
}
.ring-a { width: 420px; height: 420px; border-color: rgba(30,200,255,0.18); }
.ring-b { width: 560px; height: 560px; border-color: rgba(106,140,255,0.13); animation-duration: 50s; animation-direction: reverse; }
.ring-c { width: 280px; height: 280px; border-color: rgba(185,147,255,0.18); animation-duration: 22s; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.talent-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(26,34,64,0.95), rgba(20,27,48,0.9));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; gap: 14px; align-items: flex-start;
  width: 280px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  animation: bob 6s ease-in-out infinite;
}
.talent-card.small { width: 200px; padding: 12px; }
.card-1 { top: 8%; left: -4%; animation-delay: 0s; }
.card-2 { top: 38%; right: -6%; animation-delay: -2s; }
.card-3 { bottom: 8%; left: 6%; animation-delay: -4s; }
.card-4 { top: 4%; right: 8%; animation-delay: -1s; }
.card-5 { bottom: 24%; right: 14%; animation-delay: -3s; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
.avatar {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  color: #fff;
}
.avatar-a { background: linear-gradient(135deg, #ff7ab8, #b993ff); }
.avatar-b { background: linear-gradient(135deg, #1ec8ff, #6a8cff); }
.avatar-c { background: linear-gradient(135deg, #ffb84c, #ff7ab8); }
.avatar-d { background: linear-gradient(135deg, #2ecc71, #1ec8ff); }
.avatar-e { background: linear-gradient(135deg, #b993ff, #6a8cff); }

.talent-card .meta { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.talent-card .meta strong { font-size: 14.5px; font-weight: 600; }
.talent-card .meta span { font-size: 12px; color: var(--text-muted); }
.talent-card .tags { display: flex; gap: 5px; margin-top: 6px; flex-wrap: wrap; }
.talent-card .tags span { background: rgba(30,200,255,0.12); color: var(--brand); padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 500; }
.talent-card .status {
  font-size: 11px; color: var(--success); display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.talent-card .status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.placed-badge {
  position: absolute; bottom: -10px; right: 4%;
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06121e; padding: 14px 20px; border-radius: var(--radius);
  box-shadow: 0 20px 40px -10px var(--brand-glow);
  animation: bob 5s ease-in-out infinite; animation-delay: -2.5s;
}
.placed-badge strong { display: block; font-size: 14px; }
.placed-badge span { font-size: 12px; opacity: 0.75; }

/* Marquee */
.marquee {
  margin-top: 80px; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; align-items: center; width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee-track > span:not(.logo-pill) { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; }
.logo-pill { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: var(--text-dim); letter-spacing: -0.01em; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.logo-pill:hover { color: var(--text); opacity: 1; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ─── Sections ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
.section { padding: 140px 0; position: relative; z-index: 2; }
.section-dark { background: linear-gradient(180deg, transparent, rgba(15,20,36,0.85)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 720px; margin: 0 auto 80px; text-align: center; }
.tag {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  background: rgba(30,200,255,0.1); color: var(--brand);
  font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px;
  border: 1px solid rgba(30,200,255,0.2);
}
.tag-light { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-head p { color: var(--text-dim); font-size: 17px; }

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 38px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), var(--border-strong), transparent);
  z-index: 0;
}
.step {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; z-index: 1;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(30,200,255,0.35);
  box-shadow: 0 30px 60px -30px var(--brand-glow);
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  display: inline-block; padding: 6px 12px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06121e;
  margin-bottom: 22px;
}
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { color: var(--text-dim); font-size: 14.5px; }

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service {
  position: relative;
  background: linear-gradient(180deg, var(--surface), rgba(20,27,48,0.6));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 30px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.service::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(30,200,255,0.18), transparent 60%);
  transition: opacity 0.3s; pointer-events: none;
}
.service:hover { transform: translateY(-4px); border-color: rgba(30,200,255,0.3); }
.service:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,200,255,0.15), rgba(106,140,255,0.15));
  border: 1px solid rgba(30,200,255,0.25);
  display: grid; place-items: center; margin-bottom: 22px; color: var(--brand);
}
.service-icon svg { width: 24px; height: 24px; }
.service h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.service p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 18px; }
.service-meta { font-size: 12.5px; color: var(--brand); font-weight: 600; }

/* Two col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.col .lead { color: var(--text-dim); font-size: 18px; margin: 16px 0 36px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.check {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06121e; display: grid; place-items: center;
}
.check svg { width: 16px; height: 16px; }
.feature-list strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.feature-list span { color: var(--text-dim); font-size: 14.5px; }

/* Testimonials */
.testimonial-stack { display: flex; flex-direction: column; gap: 22px; }
.testimonial {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; position: relative;
  transition: transform 0.3s;
}
.testimonial.offset { margin-left: 40px; }
.testimonial:hover { transform: translateY(-4px); }
.quote-mark {
  position: absolute; top: 16px; right: 28px;
  font-family: 'Space Grotesk', serif; font-size: 80px; line-height: 1;
  color: var(--brand); opacity: 0.25;
}
.testimonial p { font-size: 16px; color: var(--text); margin-bottom: 22px; line-height: 1.6; }
.testimonial .who { display: flex; gap: 12px; align-items: center; }
.testimonial .who strong { display: block; font-size: 14px; }
.testimonial .who span { color: var(--text-muted); font-size: 12.5px; }

/* CTA */
.cta-section { padding: 80px 40px 140px; position: relative; z-index: 2; }
.cta-card {
  max-width: var(--container); margin: 0 auto;
  background: linear-gradient(135deg, #0e1530 0%, #1a1f4a 60%, #2a1f55 100%);
  border: 1px solid rgba(30,200,255,0.3);
  border-radius: 32px; padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(30,200,255,0.25);
}
.cta-glow {
  position: absolute; inset: -100px; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(30,200,255,0.3), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(185,147,255,0.25), transparent 50%);
  animation: float 18s ease-in-out infinite;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em;
  margin: 14px 0 18px;
}
.cta-card p { color: var(--text-dim); font-size: 18px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-brand p { color: var(--text-dim); margin-top: 20px; max-width: 360px; font-size: 14.5px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-cols h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 18px; }
.footer-cols a { display: block; color: var(--text-dim); text-decoration: none; font-size: 14.5px; padding: 6px 0; transition: color 0.2s; }
.footer-cols a:hover { color: var(--brand); }
.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding: 26px 40px 0;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted); font-size: 13px;
}

/* ─── Reveal animation ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 480px; max-width: 520px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .hero { padding: 40px 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 20px; }
  .section { padding: 90px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .testimonial.offset { margin-left: 0; }
  .cta-card { padding: 50px 24px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 26px 20px 0; }
  .talent-card { width: 240px; }
  .talent-card.small { width: 170px; }
}
