* {
  box-sizing: border-box;
}

:root {
  --bg: #070b14;
  --bg-alt: #0d1322;
  --panel: rgba(16, 23, 39, 0.88);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #e9eefb;
  --muted: #9aa7c2;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(125, 211, 252, 0.12), transparent 30%),
    linear-gradient(180deg, #05070d 0%, var(--bg) 100%);
  color: var(--text);
  min-height: 100vh;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.section--contact {
  padding-bottom: 96px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 10, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #02111b;
  background: linear-gradient(135deg, var(--accent), #c5f0ff);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.28);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 0.96rem;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.nav a,
.contact__link {
  transition: color 0.2s ease;
}

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

.button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 700;
  color: #04131c;
  background: linear-gradient(135deg, var(--accent), #d8f6ff);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.18);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(56, 189, 248, 0.24);
}

.button--ghost,
.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-border);
  box-shadow: none;
}

.button--secondary:hover,
.button--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.button--full {
  width: 100%;
}

.hero {
  padding-top: 58px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.lead,
.contact__text,
.card p,
.program p,
.step p,
.hero__card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}

.hero__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero__facts li,
.hero__card,
.card,
.step,
.contact__panel {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__facts li {
  border-radius: 18px;
  padding: 18px;
}

.hero__facts strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.hero__facts span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero__card {
  border-radius: 28px;
  padding: 30px;
  display: grid;
  gap: 18px;
}

.hero__card-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.14);
}

.hero__meta {
  display: grid;
  gap: 14px;
}

.hero__meta-label,
.program__tag,
.step__num {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero__meta strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
}

.section__heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 28px;
}

.features,
.programs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.step {
  border-radius: 24px;
  padding: 24px;
}

.program {
  min-height: 220px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.step {
  min-height: 220px;
  display: grid;
  align-content: start;
}

.step__num {
  margin-bottom: 26px;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.contact__panel {
  border-radius: 28px;
  padding: 26px;
  display: grid;
  gap: 16px;
}

.contact__link {
  font-size: 1.03rem;
  word-break: break-word;
}

.footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.65;
}

.page-glow--one {
  width: 280px;
  height: 280px;
  background: rgba(56, 189, 248, 0.18);
  top: 10%;
  left: -80px;
}

.page-glow--two {
  width: 320px;
  height: 320px;
  background: rgba(125, 211, 252, 0.1);
  right: -90px;
  top: 48%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (max-width: 1024px) {
  .hero__grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .steps {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .header__inner {
    flex-wrap: wrap;
    padding: 12px 0 14px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.94rem;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    max-width: none;
  }

  .hero__facts,
  .features,
  .programs,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero__card,
  .card,
  .step,
  .contact__panel {
    border-radius: 22px;
  }

  .hero__facts {
    gap: 12px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
