:root {
  --bg: #020617;
  --bg-alt: #030712;
  --surface: rgba(15, 23, 42, 0.96);
  --surface-alt: rgba(15, 23, 42, 0.9);
  --border-subtle: rgba(148, 163, 184, 0.45);
  --accent: #22c55e;
  --accent-strong: #16a34a;
  --accent-soft: rgba(34, 197, 94, 0.25);
  --secondary: #38bdf8;
  --secondary-soft: rgba(56, 189, 248, 0.23);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --radius-lg: 18px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 65px rgba(15, 23, 42, 0.95);
  --max-width: 1060px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, #0f172a 0, #020617 45%, #020617 100%),
    radial-gradient(circle at bottom right, #022c22 0, #020617 55%, #020617 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal[data-animate="left"] {
  transform: translateX(-32px);
}

.reveal[data-animate="right"] {
  transform: translateX(32px);
}

.reveal[data-animate="up"] {
  transform: translateY(-32px);
}

.reveal[data-animate="down"] {
  transform: translateY(32px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}


body {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.4rem;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(3, 7, 18, 0.98), rgba(3, 7, 18, 0.9));
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.3rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
}

.logo-text {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.hero-logo {
  text-align: center;
  margin-bottom: 1.8rem;
}

.hero-logo img {
  max-width: 280px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.65);
  background:
    radial-gradient(circle at left, rgba(34, 197, 94, 0.3), transparent 65%),
    radial-gradient(circle at right, rgba(56, 189, 248, 0.18), transparent 60%);
}

/* NAV TOGGLE */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* HERO */

.hero {
  position: relative;
  padding: 4.6rem 0 4.1rem;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top center, rgba(34, 197, 94, 0.42), transparent 60%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.28), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  opacity: 0.3;
}

.hero-orbit-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -140px;
}

.hero-orbit-2 {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.78rem;
  color: #bbf7d0;
  background:
    radial-gradient(circle at left, rgba(34, 197, 94, 0.28), transparent 65%),
    radial-gradient(circle at right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  margin-bottom: 0.9rem;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.3rem, 3.4vw, 2.9rem);
  letter-spacing: -0.06em;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.9rem 0 1.2rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.6rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn.primary {
  background:
    radial-gradient(circle at top left, rgba(250, 250, 250, 0.95), rgba(209, 250, 229, 0.9)),
    linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.5);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.5), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn.primary:hover .btn-glow {
  opacity: 1;
}

.btn.primary:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--muted);
}

.btn.ghost:hover {
  border-color: var(--secondary);
  color: var(--text);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.6rem 0 0.9rem;
}

.stat {
  min-width: 140px;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stat-value {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  margin-top: 0.1rem;
}

.trust-line {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.6rem 0 0.7rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  font-size: 0.76rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
}

/* SECTIONS */

.section {
  position: relative;
  padding: 3.9rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98) 0, #020617 55%, #020617 100%);
}

.section-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.24), transparent 55%),
    radial-gradient(circle at right, rgba(34, 197, 94, 0.2), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.section-wave {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 2.3rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* SPLIT & GRID */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* CARDS */

.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.7rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.glass {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.88));
  backdrop-filter: blur(16px);
}

.track-card {
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  overflow: hidden;
}

.track-card .card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 55%);
  opacity: 0.2;
  pointer-events: none;
}

.track-card .card-glow-strong {
  background:
    radial-gradient(circle at top, rgba(34, 197, 94, 0.3), transparent 55%),
    radial-gradient(circle at bottom, rgba(56, 189, 248, 0.24), transparent 60%);
}

.track-card.featured {
  border-color: var(--accent-strong);
  box-shadow: 0 24px 55px rgba(34, 197, 94, 0.45);
}

.track-card .badge {
  position: absolute;
  top: 1.05rem;
  right: 1.1rem;
  font-size: 0.72rem;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34, 197, 94, 0.75);
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.22);
}

/* CHECKLISTS */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08rem;
  font-size: 0.78rem;
  color: var(--accent);
}

.checklist.subtle li::before {
  color: rgba(148, 163, 184, 0.95);
}

/* FORM */

.form-grid {
  align-items: flex-start;
}

.field,
.growth-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.95rem;
  font-size: 0.88rem;
}

.field label,
.field legend {
  color: #e5e7eb;
}

.growth-form input,
.growth-form select,
.growth-form textarea {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  padding: 0.6rem 0.75rem;
  font: inherit;
}

.growth-form textarea {
  resize: vertical;
}

.growth-form input::placeholder,
.growth-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.85);
}

.growth-form input:focus,
.growth-form select:focus,
.growth-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.chips label {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.chips input {
  accent-color: var(--accent-strong);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.1rem 0 0.9rem;
}

.side-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, #020617 0, #020617 100%);
  padding: 1.4rem 0 1.6rem;
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid.two {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid.three {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-bottom: 3.6rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset: 52px 0 auto 0;
    background: rgba(3, 7, 18, 0.98);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1.4rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 4.1rem;
  }

  .hero-stats {
    flex-direction: column;
  }
}
