:root {
  --bg: #0a0a0b;
  --bg-elev: #111113;
  --ink: #f5f5f4;
  --ink-dim: #a3a3a0;
  --ink-faint: #525250;
  --neon: #d4ff00;
  --neon-soft: #b8e000;
  --accent: #ff3b3b;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Glow accent behind everything */
.glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,0,0.15), transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.glow-1 { top: -200px; right: -200px; }
.glow-2 { bottom: -200px; left: -200px; background: radial-gradient(circle, rgba(255,59,59,0.08), transparent 70%); }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10,10,11,0.6);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--neon);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.nav-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-tag .status {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  margin-right: 6px;
  box-shadow: 0 0 8px var(--neon);
}
.nav-actions {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* ============ CONTAINER ============ */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}

.hero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-meta::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--neon);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--neon);
  text-shadow: 0 0 40px rgba(212,255,0,0.3);
}
.hero h1 .strike {
  position: relative;
  font-weight: 700;
}
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  top: 50%;
  height: 4px;
  background: var(--accent);
  transform: rotate(-2deg);
  opacity: 0;
  animation: strike 0.6s ease 1.2s forwards;
}
@keyframes strike {
  to { opacity: 1; }
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink-dim);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.btn-primary {
  background: var(--neon);
  color: var(--bg);
  padding: 18px 32px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-soft);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(212,255,0,0.5);
  transform: translateY(-2px);
}
.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 18px 32px;
  border: 1px solid var(--line-strong);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border-radius: 999px;
}
.btn-secondary:hover {
  border-color: var(--neon);
  color: var(--neon);
}

/* Ticker at bottom of hero */
.ticker {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.ticker-track span::after {
  content: '◆';
  color: var(--neon);
  font-size: 8px;
}
@keyframes tick {
  to { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTION HEADERS ============ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--neon);
}
.section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
}
.section h2 em {
  font-style: italic;
  color: var(--neon);
}
.section-desc {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 600px;
  margin-bottom: 64px;
}

/* ============ WHO WE SERVE ============ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.serve-card {
  background: var(--bg-elev);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
  cursor: default;
}
.serve-card:hover {
  background: #18181a;
}
.serve-card:hover .serve-icon {
  color: var(--neon);
  transform: scale(1.1) rotate(-5deg);
}
.serve-icon {
  font-size: 42px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  display: inline-block;
}
.serve-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.serve-card p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.6;
}
.serve-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
}

/* ============ SERVICES (what we build) ============ */
.services {
  display: grid;
  gap: 16px;
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
}
.service-row:last-child {
  border-bottom: 1px solid var(--line);
}
.service-row:hover {
  padding-left: 24px;
}
.service-row:hover .service-arrow {
  background: var(--neon);
  color: var(--bg);
  transform: rotate(-45deg) scale(1.1);
}
.service-row:hover h3 {
  color: var(--neon);
}
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}
.service-content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.service-content p {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 500px;
}
.service-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--ink);
  flex-shrink: 0;
}

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212,255,0,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.why-card:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
}
.why-card:hover::before {
  opacity: 1;
}
.why-stat {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--neon);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.why-stat span {
  font-size: 32px;
  color: var(--ink-dim);
  margin-left: 4px;
}
.why-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.why-card p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============ PROCESS ============ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  position: relative;
}
.process-step {
  position: relative;
}
.process-num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 88px;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  text-shadow: 0 0 40px rgba(212,255,0,0.3);
}
.process-step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.process-step p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -32px;
  top: 30px;
  color: var(--ink-faint);
  font-size: 24px;
}
.process-step:last-child::after { display: none; }

/* ============ CTA ============ */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.cta-wrap {
  background: linear-gradient(135deg, var(--bg-elev), var(--bg));
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,255,0,0.08), transparent 70%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
}
.cta-wrap h2 em {
  font-style: italic;
  color: var(--neon);
}
.cta-wrap p {
  color: var(--ink-dim);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}
.cta-wrap .btn-primary {
  position: relative;
  font-size: 16px;
  padding: 22px 40px;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 2;
}
footer .logo {
  font-size: 18px;
}
.footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-social a {
  color: var(--ink-dim);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: var(--neon);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-tag { display: none; }
  .wrap { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero { padding-top: 80px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .ticker { display: none; }
  .service-row {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .service-num { display: none; }
  .service-row:hover { padding-left: 0; }
  .process-step::after { display: none; }
  .cta-wrap { padding: 60px 24px; }
  footer { flex-direction: column; text-align: center; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ LANGUAGE TOGGLE ============ */
.lang-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lang-btn {
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-dim);
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.lang-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.lang-btn.active {
  background: var(--neon);
  color: var(--bg);
  border-color: var(--neon);
}
