:root {
  --page-bg: #05060f;
  --page-bg-alt: #0c0f1d;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.15);
  --glass: rgba(10, 12, 25, 0.6);
  --text: #f4f5ff;
  --text-soft: rgba(231, 232, 248, 0.72);
  --accent: #7c7dff;
  --accent-strong: #6366f1;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 40px 90px rgba(8, 10, 25, 0.35);
  --container: min(1120px, calc(100vw - 48px));
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(120, 122, 255, 0.22), transparent 52%),
    radial-gradient(circle at 84% 10%, rgba(255, 135, 198, 0.18), transparent 55%),
    radial-gradient(circle at 62% 78%, rgba(70, 110, 255, 0.14), transparent 50%),
    conic-gradient(from 120deg at 50% 65%, rgba(60, 66, 120, 0.08), rgba(5, 6, 15, 0.85)),
    var(--page-bg);
  color: var(--text);
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    radial-gradient(rgba(125, 132, 255, 0.6) 1px, transparent 1px);
  background-size: 140px 140px, 220px 220px;
  background-position: 0 0, 0 0;
  opacity: 0.35;
  animation:
    starDrift 28s linear infinite,
    starFloat 7s ease-in-out infinite;
  will-change: transform, opacity;
}

body::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1.2px, transparent 1.2px);
  background-size: 90px 90px;
  background-position: 0 0;
  opacity: 0.45;
  mix-blend-mode: screen;
  animation:
    starPulse 8s ease-in-out infinite alternate,
    starFloatReverse 9s ease-in-out infinite;
  will-change: transform, opacity;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus-visible {
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.cosmic-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  mix-blend-mode: screen;
}

.success-page {
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
}

.success {
  max-width: min(520px, 100%);
  padding: 2.8rem 2.6rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 18% 12%, rgba(120, 122, 255, 0.2), transparent 60%),
    rgba(6, 7, 22, 0.85);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.8rem;
  text-align: center;
}

.success__header h1 {
  margin-bottom: 1rem;
}

.success__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(123, 125, 255, 0.4);
  background: rgba(123, 125, 255, 0.12);
  color: rgba(223, 225, 255, 0.85);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.success__actions {
  display: grid;
  gap: 1rem;
  justify-content: center;
}

.success__actions .btn {
  width: 100%;
}

.success__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
}

.shooting-star {
  --x: 22vw;
  --duration: 5.2s;
  --delay: 0s;
  --trail: 180px;
  position: absolute;
  top: -20vh;
  left: var(--x);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 14px rgba(170, 180, 255, 0.85);
  opacity: 0;
  animation: shootingStar var(--duration) linear infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.shooting-star::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.4px;
  height: var(--trail);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(160, 172, 255, 0.85));
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.82;
}

.shooting-star::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  opacity: 0.6;
  pointer-events: none;
}

.shooting-star:nth-of-type(1) {
  --x: 18vw;
  --duration: 4.8s;
  --delay: 0s;
  --trail: 150px;
}

.shooting-star:nth-of-type(2) {
  --x: 48vw;
  --duration: 4s;
  --delay: 2.4s;
  --trail: 170px;
}

.shooting-star:nth-of-type(3) {
  --x: 74vw;
  --duration: 4.6s;
  --delay: 4.7s;
  --trail: 200px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

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

.section--xl {
  padding: 7.5rem 0;
}

.section__header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--text-soft);
}

.eyebrow {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(169, 170, 255, 0.68);
  margin: 0 0 1.25rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 2.85rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--primary {
  background: linear-gradient(130deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 50px rgba(99, 102, 241, 0.45);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn--stretch {
  width: 100%;
}

.is-pill {
  display: inline-flex;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 15, 0.78);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.05;
}

.logo__mark {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.logo__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(221, 223, 255, 0.58);
}

.nav {
  display: flex;
  align-items: center;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.nav__toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.95rem;
  color: rgba(230, 231, 255, 0.72);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  --hero-tilt-x: 0;
  --hero-tilt-y: 0;
}

.hero__backdrop {
  position: absolute;
  inset: -18% -5% -10%;
  background:
    radial-gradient(circle at 32% 24%, rgba(108, 118, 255, 0.24), transparent 60%),
    radial-gradient(circle at 78% 18%, rgba(255, 135, 214, 0.22), transparent 58%),
    radial-gradient(circle at 68% 75%, rgba(70, 115, 255, 0.16), transparent 58%),
    linear-gradient(140deg, rgba(8, 10, 26, 0.8), rgba(8, 10, 26, 0.15));
  filter: blur(52px);
  opacity: 0.88;
  pointer-events: none;
  animation: nebulaDrift 16s ease-in-out infinite;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: stretch;
}

.hero__content {
  padding: clamp(2rem, 4vw, 2.8rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 20% 20%, rgba(120, 124, 255, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(6, 7, 22, 0.88), rgba(6, 7, 22, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: perspective(1100px)
    rotateY(calc(var(--hero-tilt-x) * 0.12deg))
    rotateX(calc(var(--hero-tilt-y) * -0.1deg));
  transition: transform 0.6s ease;
}

.hero__content p:last-of-type {
  margin-bottom: 0;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin: 2.2rem 0;
  flex-wrap: wrap;
}

.hero__orbit {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(9, 11, 26, 0.8), rgba(12, 14, 34, 0.6));
  box-shadow: 0 18px 40px rgba(10, 14, 36, 0.35);
}

.hero__orbit-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(173, 175, 255, 0.82);
  margin-right: 0.6rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(120, 122, 255, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(229, 230, 255, 0.92);
}

.pill-link:hover,
.pill-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(130, 134, 255, 0.32);
  color: #fff;
  transform: translateY(-1px);
}

.hero__stats {
  margin: 0;
  padding: 2rem 2rem 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(100, 116, 255, 0.12), rgba(10, 13, 34, 0.75));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.hero__stats div {
  display: grid;
  gap: 0.5rem;
}

.hero__stats dt {
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  font-weight: 600;
  color: #fff;
}

.hero__stats dd {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(216, 219, 255, 0.82);
}

.hero__panel {
  display: flex;
  align-items: stretch;
}

.hero__panel-body {
  flex: 1;
  padding: clamp(2rem, 4vw, 2.6rem);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 18%, rgba(120, 128, 255, 0.22), transparent 62%),
    linear-gradient(165deg, rgba(10, 12, 28, 0.95), rgba(18, 20, 44, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.6rem;
  transform: perspective(1100px)
    rotateY(calc(var(--hero-tilt-x) * 0.08deg))
    rotateX(calc(var(--hero-tilt-y) * -0.08deg));
  transition: transform 0.6s ease;
}

.hero__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(102, 107, 255, 0.18);
  color: rgba(221, 222, 255, 0.9);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__panel h2 {
  margin: 0.8rem 0 0;
  font-size: 1.8rem;
}

.hero__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: rgba(225, 227, 255, 0.82);
}

.hero__list li {
  padding-left: 1.5rem;
  position: relative;
}

.hero__list li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(130deg, #6366f1, #8b5cf6);
  left: 0;
  top: 0.55rem;
}

.hero__mission {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(120, 131, 255, 0.2);
  background: linear-gradient(140deg, rgba(98, 104, 255, 0.18), rgba(82, 92, 240, 0.08));
  color: rgba(230, 232, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.015em;
}

.card-grid {
  display: grid;
  gap: 2.4rem;
}

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

.card {
  padding: 2.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 12%, rgba(123, 127, 255, 0.16), transparent 55%),
    rgba(8, 9, 24, 0.82);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.1rem;
}

.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.card ul li {
  padding-left: 1.3rem;
  position: relative;
  color: rgba(223, 225, 255, 0.8);
}

.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

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

.timeline__item {
  position: relative;
  padding: 2rem 1.8rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 18%, rgba(110, 115, 255, 0.16), transparent 60%),
    rgba(8, 9, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.timeline__step {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.18);
  color: rgba(219, 222, 255, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.pillars article {
  padding: 2.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 24% 22%, rgba(124, 128, 255, 0.14), transparent 58%),
    rgba(8, 9, 24, 0.82);
  box-shadow: var(--shadow);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  text-align: center;
}

.logo-grid span {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 30%, rgba(114, 118, 255, 0.12), transparent 55%),
    rgba(8, 9, 24, 0.82);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(225, 226, 255, 0.78);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

.insights-grid article {
  padding: 2rem 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 18% 18%, rgba(110, 114, 250, 0.16), transparent 55%),
    rgba(8, 9, 24, 0.82);
  box-shadow: var(--shadow);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__intro {
  display: grid;
  gap: 1.4rem;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.contact__list span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(193, 197, 255, 0.6);
  margin-bottom: 0.25rem;
}

.contact__list p {
  margin: 0;
  color: var(--text-soft);
}

.contact__form {
  padding: clamp(2rem, 4vw, 2.8rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(110, 114, 255, 0.14), transparent 55%),
    rgba(8, 9, 24, 0.85);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  gap: 0.5rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(225, 226, 255, 0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 13, 30, 0.7);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid rgba(123, 125, 255, 0.8);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.82rem;
  color: rgba(205, 208, 252, 0.72);
  margin: 0;
}

.site-footer {
  margin-top: auto;
  padding: 3.5rem 0 4rem;
  background: rgba(5, 6, 15, 0.92);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 2.4rem;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.95rem;
  color: rgba(229, 230, 255, 0.85);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #fff;
}

.footer__form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 11, 28, 0.82);
}

.footer__form input {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.7rem 0;
}

.footer__form input:focus-visible {
  outline: none;
}

.footer__form button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.footer__note {
  text-align: center;
  color: rgba(197, 200, 249, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

@media (max-width: 960px) {
  .container {
    width: calc(100vw - 40px);
  }

  .section {
    padding: 4.8rem 0;
  }

  .section--xl {
    padding: 5.8rem 0;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: fixed;
    inset: 72px 16px auto 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.6rem;
    background: rgba(8, 9, 24, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav__links[data-open='true'] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero__content {
    padding: 1.9rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.6rem;
  }

  .hero__stats dt {
    font-size: clamp(1.8rem, 4.6vw, 2.2rem);
  }

  .card-grid--three,
  .pillars,
  .logo-grid,
  .insights-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline__item {
    padding: 1.8rem;
  }

  .hero__panel {
    padding-top: clamp(4rem, 12vw, 5.5rem);
  }

  .hero__panel-body {
    margin-top: clamp(3rem, 10vw, 4.5rem);
  }

  .hero__owl {
    top: clamp(-3.2rem, -9vw, -2.4rem);
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(110px, 22vw, 170px);
  }

  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__panel-body {
    padding: 1.8rem;
  }

  .card-grid--three,
  .pillars,
  .logo-grid,
  .insights-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    padding: 1.6rem;
  }

  .card-grid--three {
    gap: 1.6rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__orbit {
    width: 100%;
    justify-content: center;
  }

  .hero__orbit-label {
    flex-basis: 100%;
    text-align: center;
    margin: 0;
  }

  .pill-link {
    flex: 1 1 auto;
    justify-content: center;
  }

  .section__header {
    margin-bottom: 2.2rem;
  }

  .hero__panel {
    padding-top: clamp(3.6rem, 14vw, 4.8rem);
  }

  .hero__panel-body {
    margin-top: clamp(2.6rem, 12vw, 4rem);
  }

  .hero__owl {
    width: clamp(96px, 30vw, 140px);
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100vw - 28px);
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero__content {
    padding: 1.6rem;
  }

  .hero__panel-body {
    padding: 1.6rem;
    border-radius: 20px;
  }

  .card,
  .pillars article,
  .insights-grid article,
  .timeline__item {
    padding: 1.65rem;
    border-radius: 18px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel-body {
    margin-top: 2.8rem;
  }

  .hero__owl {
    top: -2.4rem;
    width: 120px;
  }

  .hero__orbit {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-bottom: 1.8rem;
    padding: 0.9rem 0.8rem;
  }

  .pill-link {
    width: 100%;
  }

  .hero__stats {
    padding: 1.4rem;
  }

  .hero__stats dt {
    font-size: 1.65rem;
  }
}

@keyframes nebulaDrift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.06) translate3d(0, -18px, 0);
  }
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes starDrift {
  0% {
    background-position: 0 0, 0 0;
    opacity: 0.35;
  }
  50% {
    background-position: -120px 80px, 90px -60px;
    opacity: 0.42;
  }
  100% {
    background-position: -240px 160px, 180px -120px;
    opacity: 0.35;
  }
}

@keyframes starPulse {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.58;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes starFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(65px, -88px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes starFloatReverse {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-58px, 74px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shootingStar {
  0% {
    opacity: 0;
    transform: translate3d(0, -24vh, 0);
  }
  10% {
    opacity: 1;
    transform: translate3d(0, -6vh, 0);
  }
  38% {
    opacity: 1;
    transform: translate3d(0, 110vh, 0);
  }
  52% {
    opacity: 0;
    transform: translate3d(0, 132vh, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -24vh, 0);
  }
}
