:root {
  --bg: #0a0e1c;
  --surface: #0d1427;
  --surface-2: #111a30;
  --text: #e0e0e0;
  --muted: #a0a8b8;
  --accent-1: #141c36;
  --accent-2: #2c3e5e;
  --accent-3: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(44, 62, 94, 0.18), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(20, 28, 54, 0.32), transparent 32%),
    radial-gradient(circle at 20% 82%, rgba(20, 28, 54, 0.2), transparent 28%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; }

.orb {
  position: fixed;
  width: 320px;
  height: 320px;
  filter: blur(120px);
  opacity: 0.14;
  z-index: 0;
}
.orb.one { background: var(--accent-1); top: -40px; left: 8%; animation: float 22s ease-in-out infinite; }
.orb.two { background: var(--accent-2); top: 18%; right: 4%; animation: float 24s ease-in-out infinite reverse; }
.orb.three { background: #0f1424; bottom: -120px; left: 20%; animation: float 26s ease-in-out infinite; }

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

@keyframes gridPan {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 200px 200px, 200px 200px; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.75; }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
  animation: gridPan 22s linear infinite;
}

.interactive-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(44, 62, 94, 0.18), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.9;
  z-index: 0;
  transition: background-position 0.2s ease;
}

#particle-field {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

#particle-field span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 62, 94, 0.8), rgba(32, 44, 70, 0.1));
  filter: blur(0.4px);
  opacity: 0.7;
  animation: rise 14s linear infinite;
}

@keyframes rise {
  0% { transform: translate3d(0, 20px, 0) scale(0.7); opacity: 0; }
  20% { opacity: 0.85; }
  100% { transform: translate3d(0, -120vh, 0) scale(1); opacity: 0; }
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 96px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(20, 28, 54, 0.28), rgba(44, 62, 94, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset -6px -6px 12px rgba(255, 255, 255, 0.02), 0 18px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.55)) drop-shadow(0 4px 10px rgba(44, 62, 94, 0.35));
  transform: scale(1.22) translateX(6px);
  transform-origin: left center;
}

.brand span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

nav a {
  text-decoration: none;
  color: inherit;
  padding: 8px 12px;
  border-radius: 12px;
  transition: 0.2s ease;
}

nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

.pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 55%);
  transform: translateX(-120%);
}

.pill:hover::after { transform: translateX(0); transition: transform 0.6s ease; }

[data-tilt] { transform-style: preserve-3d; perspective: 800px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

.count-up { font-variant-numeric: tabular-nums; display: inline-block; min-width: 32px; }

.eyebrow {
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 28px;
  margin-top: 12px;
}

.hero h1 {
  font-family: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  margin: 12px 0 10px;
  letter-spacing: -0.8px;
  color: var(--text);
}

.hero h1 em {
  color: var(--accent-3);
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: shimmer 12s ease infinite;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
  font-size: 17px;
}

.hero-copy { display: grid; gap: 14px; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 6px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.1px;
  transition: 0.25s ease;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.btn::after {
  content: '';
  position: absolute;
  inset: -120% -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 45%);
  transform: translateX(-120%);
  opacity: 0.6;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: var(--accent-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(20, 28, 54, 0.35);
}

.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:hover::after { transform: translateX(60%); transition: transform 0.5s ease; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.ripple {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  animation: ripple 0.7s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 320px; height: 320px; opacity: 0; }
}

.hero-panel {
  background: linear-gradient(160deg, rgba(20, 28, 54, 0.9), rgba(44, 62, 94, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.3px;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  margin-top: 6px;
}

.note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.panel {
  margin-top: 54px;
  padding: 24px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(165deg, rgba(17, 23, 38, 0.9), rgba(13, 18, 30, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.panel::before {
  content: '';
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(circle at 20% 20%, rgba(44, 62, 94, 0.14), transparent 35%), radial-gradient(circle at 70% 80%, rgba(32, 44, 70, 0.2), transparent 40%);
  opacity: 0.45;
  z-index: 0;
  animation: drift 8s ease-in-out infinite;
}

.panel > * { position: relative; z-index: 1; }

.panel h3 {
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.panel p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.card {
  background: linear-gradient(150deg, rgba(20, 28, 54, 0.85), rgba(17, 23, 38, 0.9));
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 34px rgba(0, 0, 0, 0.45);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.1px;
}

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

.link-card {
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.link-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
}

.link-card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  letter-spacing: 0.2px;
}

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

.step {
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(20, 28, 54, 0.85), rgba(17, 23, 38, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step .count {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-3);
  margin-bottom: 8px;
  font-weight: 700;
}

.step h5 {
  margin-bottom: 6px;
  font-size: 16px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.logo-tile {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.3px;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.logo-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.cta {
  position: relative;
  overflow: hidden;
  margin-top: 58px;
  padding: 30px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(20, 28, 54, 0.9), rgba(44, 62, 94, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.cta h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.cta p {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 40%;
  filter: blur(70px);
  opacity: 0.45;
}

.cta::before {
  background: var(--accent-1);
  top: -40px;
  right: 6%;
}

.cta::after {
  background: var(--accent-2);
  bottom: -60px;
  left: 8%;
}

.visual-stack {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.glow-card {
  padding: 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17, 23, 38, 0.9), rgba(20, 28, 54, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.glow-chip {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.spark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.16));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}

.input, textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  resize: none;
}

.input::placeholder,
textarea::placeholder { color: var(--muted); }

.input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(44, 62, 94, 0.35);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

footer {
  margin-top: 38px;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 720px) {
  .orb, .grid-overlay { display: none; }
  header { flex-direction: column; gap: 10px; align-items: flex-start; }
  nav { flex-wrap: wrap; }
  .wrapper { padding: 22px 16px 80px; }
  .hero { grid-template-columns: 1fr; }
  .actions { width: 100%; }
  #particle-field { display: none; }
  .interactive-glow { opacity: 0.45; }
}
