﻿:root {
  --bg: #0a0a0f;
  --bg-alt: #0e1117;
  --fg: #f5f8ff;
  --muted: #95a0b8;
  --primary: #06d6ff;
  --secondary: #b061ff;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  background: radial-gradient(circle at 20% 10%, #101829 0%, var(--bg) 40%);
  color: var(--fg);
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(255, 255, 255, 0.06) 3px
  );
}

h1, h2, h3 {
  font-family: 'Chakra Petch', sans-serif;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }

main,
header,
footer {
  position: relative;
  z-index: 3;
}

.fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-alt { background: linear-gradient(180deg, rgba(14,17,23,0.9), rgba(10,10,15,0.9)); }
.section-intro { color: var(--muted); max-width: 720px; margin: 0 0 2rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  background: rgba(10, 10, 15, 0.6);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.brand {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 18px rgba(6, 214, 255, 0.35);
}
.desktop-nav { display: flex; align-items: center; gap: 1.2rem; }
.desktop-nav a { color: var(--muted); font-weight: 600; }
.desktop-nav a:hover { color: var(--primary); }
.menu-toggle { display: none; }
.mobile-nav { display: none; }

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.04);
  transition: transform 0.25s ease;
  animation: heroPulse 12s ease-in-out infinite;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.15), rgba(10, 10, 15, 0.82));
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 214, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 214, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
}
.hero-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.32;
}
.hero-orb-a {
  top: 8%;
  left: -5%;
  background: var(--primary);
}
.hero-orb-b {
  bottom: -8%;
  right: -4%;
  background: var(--secondary);
}
.hero-content { position: relative; text-align: center; }
.eyebrow {
  display: flex;
  width: max-content;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.25);
  margin: 0.65rem auto 1.15rem;
}
.hero h1 { font-size: clamp(3.6rem, 10vw, 8rem); text-shadow: 0 0 30px rgba(6, 214, 255, 0.3); }
.lead { color: var(--muted); max-width: 760px; margin: 0 auto 2rem; font-size: clamp(1.1rem, 2.6vw, 1.7rem); }
.hero-actions { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  border: 1px solid var(--primary);
  color: #08121a;
  background: var(--primary);
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.16s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 28px -6px rgba(6, 214, 255, 0.7);
}
.btn-outline { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-sm { padding: 0.55rem 0.9rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: -140% 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  transform: translateX(-100%) rotate(8deg);
  transition: transform 0.8s ease;
}
.card:hover::after {
  transform: translateX(100%) rotate(8deg);
}
.card:hover {
  border-color: rgba(6, 214, 255, 0.4);
}
.card h3, .card p { padding: 0 1rem; }
.card h3 { margin-top: 1rem; }
.card p { color: var(--muted); margin-bottom: 1.2rem; }
.card img { aspect-ratio: 16/10; object-fit: cover; opacity: 0.86; }

.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; }
.about-grid p { color: var(--muted); }
.about-image {
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.stats strong { display: block; color: var(--primary); font-size: 1.8rem; text-shadow: 0 0 10px rgba(6, 214, 255, 0.2); }
.stats span { color: var(--muted); font-size: 0.9rem; text-transform: uppercase; }

.contact-list { list-style: none; margin: 0; padding: 0; color: var(--muted); }
.contact-list li { margin-bottom: 0.7rem; }
.contact-list strong { color: var(--fg); }

.site-footer { border-top: 1px solid var(--border); padding: 2rem 0; background: rgba(8, 11, 16, 0.92); }
.footer-wrap { display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.site-footer p { color: var(--muted); margin: 0; }

h2 span { color: var(--secondary); }

.hud-title {
  position: relative;
  display: block;
  width: max-content;
  margin: 0 auto 0.75rem;
}
.hud-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.magnetic {
  position: relative;
}

.legal-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.28);
}

.email-link {
  color: var(--primary);
  font-weight: 600;
}

.email-link:hover {
  text-decoration: underline;
}

.email-hint {
  display: inline-flex;
  margin-left: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
}

@keyframes heroPulse {
  0% { transform: scale(1.04); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1.04); }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle {
    display: inline-flex;
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
  }
  .mobile-nav { display: none; padding: 0 1rem 1rem; gap: 0.7rem; flex-direction: column; }
  .mobile-nav a { color: var(--muted); font-weight: 600; }
  .mobile-nav.open { display: flex; }

  .card-grid, .about-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .hero-orb { opacity: 0.16; }
  .hero-grid { opacity: 0.09; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}





.hero-logo {
  isolation: isolate;
}

.hero-logo::after {
  height: 1px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(6, 214, 255, 0.7), rgba(6, 214, 255, 0.18), transparent);
}

.hero-logo .logo-text {
  position: relative;
  display: inline-block;
  color: #f4f8ff;
  text-shadow:
    0 0 10px rgba(6, 214, 255, 0.38),
    0 0 24px rgba(6, 214, 255, 0.22),
    0 0 40px rgba(176, 97, 255, 0.12);
  animation: logoNeonPulse 4.8s ease-in-out infinite;
}

@keyframes logoNeonPulse {
  0%,
  100% {
    text-shadow:
      0 0 9px rgba(6, 214, 255, 0.3),
      0 0 20px rgba(6, 214, 255, 0.2),
      0 0 34px rgba(176, 97, 255, 0.1);
  }
  50% {
    text-shadow:
      0 0 13px rgba(6, 214, 255, 0.46),
      0 0 28px rgba(6, 214, 255, 0.3),
      0 0 46px rgba(176, 97, 255, 0.16);
  }
}





