:root {
  --bg: #050911;
  --panel: rgba(255, 255, 255, 0.04);
  --glass: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f6f7fb;
  --muted: #a8b0c2;
  --accent: #39d2ff;
  --accent-2: #ff7a9e;
  --accent-3: #ffc857;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --blur: 18px;
  --font-base: "Sora", "Segoe UI", sans-serif;
  --font-display: "DM Serif Display", "Times New Roman", serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-base);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: #04101b;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(57, 210, 255, 0.16), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(255, 122, 158, 0.15), transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(255, 200, 87, 0.1), transparent 36%),
    linear-gradient(135deg, #060b15 0%, #0a1324 45%, #060b15 100%);
  filter: saturate(1.05);
}

.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.25;
}

.orb {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.orb-1 { background: var(--accent); top: 10%; left: 8%; }
.orb-2 { background: var(--accent-2); top: 30%; right: 12%; }
.orb-3 { background: var(--accent-3); bottom: 6%; left: 22%; }

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(5, 9, 17, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
  z-index: 8;
}

.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #04101b;
}

.brand-text strong { display: block; font-weight: 700; }
.brand-text .eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }

.nav-links { display: flex; gap: 18px; }
.nav-links a { color: var(--muted); font-weight: 500; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }

.ghost-btn {
  padding: 10px 16px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  transition: all 0.25s ease;
}
.ghost-btn:hover { border-color: var(--accent); color: var(--accent); }

main { padding: 48px 32px 120px; max-width: 1200px; margin: 0 auto; }

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(57, 210, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-copy .accent { color: var(--accent); }

.lede { color: var(--muted); max-width: 720px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  border: 1px solid var(--stroke);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.cta-row { display: flex; gap: 12px; margin: 18px 0 14px; flex-wrap: wrap; }

.primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04101b;
  box-shadow: 0 18px 60px rgba(57, 210, 255, 0.25);
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 24px 70px rgba(57, 210, 255, 0.35); }

.secondary-btn {
  border: 1px solid var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.secondary-btn:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-top: 12px; }

.stat-card {
  padding: 14px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
}

.stat-value { display: block; font-size: 22px; font-weight: 700; }
.stat-label { color: var(--muted); font-size: 14px; }

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.chip:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 4s infinite;
}

.hero-visual { display: grid; gap: 16px; justify-items: end; }

.hero-photo { display: grid; gap: 8px; justify-items: center; }
.photo-frame {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(57, 210, 255, 0.12);
  background: linear-gradient(145deg, rgba(57, 210, 255, 0.08), rgba(255, 122, 158, 0.08));
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.photo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(57, 210, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(255, 122, 158, 0.22), transparent 48%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.photo-caption {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.viz-card {
  width: min(360px, 100%);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
}

.viz-card.ghost { background: rgba(255, 255, 255, 0.03); border-style: dashed; }

.viz-title { font-weight: 700; margin-bottom: 12px; }

.viz-grid { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 10px; }
.viz-block {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  font-weight: 600;
  color: var(--muted);
}
.viz-block.accent { background: rgba(57, 210, 255, 0.1); color: var(--text); border-color: rgba(57, 210, 255, 0.4); }

.viz-card ul { list-style: disc; padding-left: 18px; color: var(--muted); display: grid; gap: 6px; }

.marquee {
  margin: 32px 0;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.marquee-track {
  display: flex;
  gap: 48px;
  padding: 14px 24px;
  animation: marquee 16s linear infinite;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--muted);
}

.panel {
  margin: 54px 0;
  padding: 32px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
}

.section-head { margin-bottom: 22px; }
.section-head h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 8px; }
.section-head .lede { margin-top: 6px; }
.eyebrow { text-transform: uppercase; letter-spacing: 1px; font-size: 12px; color: var(--muted); }

.timeline { display: grid; gap: 18px; }
.card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}
.card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; }
.card-body { color: var(--muted); display: grid; gap: 8px; padding-left: 18px; }
.card-body li { line-height: 1.55; }

.two-col .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }

.tag-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-weight: 600;
}

.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 12px; }
.flow-step {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}
.step-label { font-weight: 700; color: var(--accent); display: inline-block; margin-bottom: 6px; }
.flow-step h4 { margin-bottom: 6px; }

.impact-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.impact-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(57, 210, 255, 0.06);
  color: var(--text);
}
.impact-value { display: block; font-size: 28px; font-weight: 800; }
.impact-label { color: #071321; }

.contact { display: grid; place-items: center; }
.contact-card {
  max-width: 560px;
  text-align: center;
  padding: 28px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(57, 210, 255, 0.08), rgba(255, 122, 158, 0.08));
  box-shadow: var(--shadow);
}

.contact-actions { display: flex; justify-content: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.floating { animation: float 6s ease-in-out infinite; }
.floating[data-float="18"] { animation-duration: 7s; }

.magnetic { position: relative; overflow: hidden; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(140%); }
  100% { transform: translateX(140%); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media (max-width: 720px) {
  .nav { position: sticky; }
  .nav-links { display: none; }
  main { padding: 32px 18px 96px; }
  .hero { padding: 22px; }
  .card-head { flex-direction: column; align-items: flex-start; }
}
