:root {
  --dark: #050814;
  --dark-2: #071326;
  --white: #ffffff;
  --cream: #f7faf9;
  --text: #07111f;
  --muted: #5d6b78;
  --light-muted: #aab8c6;
  --border: rgba(255, 255, 255, 0.12);
  --dark-border: #dce8e4;
  --cyan: #20dff4;
  --green: #18c98f;
  --blue: #4f7cff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: var(--cream);
}

body.drawer-open {
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 22px 0;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  pointer-events: none;
  transition:
    padding 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
}

.site-header .brand-row,
.site-header .brand,
.site-header .nav,
.site-header .menu-toggle {
  pointer-events: auto;
}

.site-header.scrolled {
  padding: 12px 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(32, 223, 244, 0.18), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(24, 201, 143, 0.14), transparent 34%),
    rgba(5, 8, 20, 0.58);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.brand-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 24px rgba(32, 223, 244, 0.45);
}

.brand-name {
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.nav a {
  color: var(--light-muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.site-header.scrolled .menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  display: block;
}

/* Left drawer */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(2, 6, 17, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: min(82vw, 340px);
  height: 100vh;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.40);
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 28px 0 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(.22, .61, .36, 1);
}

.drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.drawer-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.drawer-label {
  margin-bottom: 6px;
  color: #0f766e;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drawer-title {
  color: #07111f;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  color: #07111f;
  background: transparent;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 18px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: rgba(7, 17, 31, 0.72);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 760;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.drawer-nav a.active,
.drawer-nav a:hover {
  color: #07111f;
  background: transparent;
  border: 0;
  transform: translateX(4px);
}

.drawer-nav a.active {
  color: #0f766e;
}

/* Animated science background */
.hero-section,
.page-hero {
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 223, 244, 0.20), transparent 30%),
    radial-gradient(circle at 85% 16%, rgba(79, 124, 255, 0.18), transparent 32%),
    radial-gradient(circle at 76% 84%, rgba(24, 201, 143, 0.14), transparent 34%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.hero-section {
  min-height: 92vh;
  padding-top: 98px;
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.24;
  mask-image: radial-gradient(circle at center, black 35%, transparent 82%);
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: -180px;
  border-radius: 999px;
  background: rgba(32, 223, 244, 0.18);
  filter: blur(85px);
  animation: glowMove 10s ease-in-out infinite alternate;
}

.science-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.56;
}

.dna-bg {
  position: absolute;
  right: -80px;
  top: 40px;
  width: min(620px, 56vw);
  height: min(720px, 74vh);
  opacity: 0.42;
  filter: drop-shadow(0 0 22px rgba(32, 223, 244, 0.22));
  animation: dnaFloat 9s ease-in-out infinite alternate;
}

.dna-strand {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 16;
  animation: dnaFlow 6s linear infinite;
}

.strand-one {
  stroke: rgba(32, 223, 244, 0.78);
}

.strand-two {
  stroke: rgba(24, 201, 143, 0.7);
  animation-direction: reverse;
}

.dna-rung {
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 2;
  stroke-linecap: round;
  animation: rungPulse 3.5s ease-in-out infinite;
}

.neural-bg {
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: min(580px, 54vw);
  opacity: 0.34;
  filter: drop-shadow(0 0 20px rgba(79, 124, 255, 0.16));
}

.neural-line {
  stroke: rgba(180, 244, 250, 0.34);
  stroke-width: 1.6;
  stroke-dasharray: 8 10;
  animation: neuralFlow 7s linear infinite;
}

.neural-node {
  fill: rgba(32, 223, 244, 0.7);
  animation: nodePulse 4s ease-in-out infinite;
  transform-origin: center;
}

.neural-node.alt {
  fill: rgba(24, 201, 143, 0.65);
  animation-delay: 1s;
}

/* Home */
.hero {
  position: relative;
  z-index: 3;
  min-height: calc(92vh - 98px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 24px 0 72px;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(3.25rem, 6.4vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--light-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button.primary {
  color: #031016;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 18px 45px rgba(32, 223, 244, 0.22);
}

.button.secondary {
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.button.dark {
  color: var(--white);
  background: var(--text);
}

.button:hover {
  transform: translateY(-2px);
}

.visual {
  min-height: 470px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 35% 28%, rgba(32, 223, 244, 0.22), transparent 30%),
    radial-gradient(circle at 72% 76%, rgba(24, 201, 143, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.visual::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 35px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.orbit {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px solid rgba(32, 223, 244, 0.22);
  animation: rotate 18s linear infinite;
}

.orbit.two {
  inset: 26%;
  border-color: rgba(255, 255, 255, 0.16);
  animation-duration: 12s;
  animation-direction: reverse;
}

.orbit::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.molecule {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.molecule svg {
  width: 76%;
  max-width: 420px;
  filter: drop-shadow(0 0 30px rgba(32, 223, 244, 0.18));
}

.line {
  stroke: rgba(190, 244, 250, 0.58);
  stroke-width: 2;
  stroke-dasharray: 10 12;
  animation: dash 6s linear infinite;
}

.dot {
  fill: var(--cyan);
  animation: floatDot 4.4s ease-in-out infinite;
  transform-origin: center;
}

.dot.green {
  fill: var(--green);
}

.dot.white {
  fill: #ffffff;
}

.dot:nth-of-type(2) {
  animation-delay: 0.35s;
}

.dot:nth-of-type(3) {
  animation-delay: 0.7s;
}

.dot:nth-of-type(4) {
  animation-delay: 1.05s;
}

.visual-note {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 20, 0.58);
  backdrop-filter: blur(16px);
}

.visual-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1rem;
}

.visual-note span {
  color: var(--light-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Inner pages */
.page-hero {
  padding: 150px 0 96px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.page-kicker,
.section-label {
  margin-bottom: 16px;
  color: #0f766e;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-kicker {
  color: var(--cyan);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.8rem);
}

.page-hero p {
  color: var(--light-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 0;
}

.content-section {
  padding: 82px 0;
  background: var(--cream);
}

.content-section.alt {
  background:
    radial-gradient(circle at 20% 15%, rgba(15, 118, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #eaf6f2, #f7faf9);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 880;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.split-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
  padding: 50px;
  border-radius: 36px;
  background: var(--white);
  border: 1px solid var(--dark-border);
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.07);
}

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

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

.card,
.point,
.team-card,
.contact-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--dark-border);
  box-shadow: 0 20px 60px rgba(7, 17, 31, 0.05);
}

.point {
  background: #f5faf8;
  border: 1px solid #dcebe6;
  box-shadow: none;
}

.card strong,
.point strong,
.team-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.card span,
.point span,
.team-card span,
.contact-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.research-points {
  display: grid;
  gap: 14px;
}

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

.avatar {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 20%),
    linear-gradient(135deg, rgba(32, 223, 244, 0.9), rgba(24, 201, 143, 0.9));
  box-shadow: 0 14px 34px rgba(32, 223, 244, 0.18);
}

.role {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #0f766e;
  background: #e8f7f2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-form {
  padding: 30px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--dark-border);
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 750;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 15px 16px;
  border: 1px solid #d8e8e3;
  border-radius: 16px;
  color: var(--text);
  background: #f9fcfb;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(32, 223, 244, 0.85);
  box-shadow: 0 0 0 4px rgba(32, 223, 244, 0.12);
}

.note-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: #f5faf8;
  border: 1px solid #dcebe6;
  color: var(--muted);
  line-height: 1.65;
}

/* Footer */
footer {
  background: #f7faf9;
  padding: 32px 0 42px;
  color: #74828d;
  font-size: 0.92rem;
}

.footer-row {
  border-top: 1px solid #dce8e4;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.85s cubic-bezier(.22, .61, .36, 1),
    transform 0.85s cubic-bezier(.22, .61, .36, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

/* Animations */
@keyframes glowMove {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-40px, -30px, 0) scale(1.08);
  }
}

@keyframes dnaFloat {
  from {
    transform: translateY(0) rotate(-4deg);
  }

  to {
    transform: translateY(18px) rotate(-2deg);
  }
}

@keyframes dnaFlow {
  to {
    stroke-dashoffset: -140;
  }
}

@keyframes rungPulse {

  0%,
  100% {
    opacity: 0.22;
  }

  50% {
    opacity: 0.58;
  }
}

@keyframes neuralFlow {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes nodePulse {

  0%,
  100% {
    opacity: 0.48;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.18);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* Responsive */
@media (max-width: 940px) {

  .hero,
  .split-card,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .visual {
    min-height: 420px;
  }

  .card-grid,
  .card-grid.two,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dna-bg {
    right: -180px;
    width: 760px;
    opacity: 0.26;
  }

  .neural-bg {
    opacity: 0.22;
  }
}

/* Mobile drawer mode */
@media (max-width: 720px) {
  .site-header {
    padding: 18px 0 12px;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .brand-row {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .brand-mark::after {
    inset: 8px;
  }

  .brand-row>.nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    order: -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero-section {
    min-height: auto;
    padding-top: 104px;
  }

  .page-hero {
    padding: 118px 0 56px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 54px;
    gap: 36px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
    letter-spacing: -0.055em;
  }

  .hero-copy,
  .section-copy,
  .page-hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .actions,
  .button {
    width: 100%;
  }

  .visual {
    min-height: 360px;
    border-radius: 28px;
  }

  .visual::before {
    border-radius: 27px;
  }

  .visual-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    border-radius: 20px;
  }

  .content-section {
    padding: 56px 0;
  }

  .split-card,
  .contact-form {
    padding: 30px;
    border-radius: 28px;
  }

  .card-grid,
  .card-grid.two,
  .team-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .dna-bg {
    top: 120px;
    right: -260px;
    width: 700px;
    opacity: 0.22;
  }

  .neural-bg {
    display: none;
  }

  .footer-row {
    font-size: 0.86rem;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .mobile-drawer {
    width: min(86vw, 330px);
    padding: 22px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .mobile-drawer,
  .drawer-overlay {
    transition: none !important;
  }
}

/* One-time splash screen */
.splash-active {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 22%, rgba(32, 223, 244, 0.18), transparent 34%),
    radial-gradient(circle at 78% 78%, rgba(24, 201, 143, 0.14), transparent 34%),
    linear-gradient(135deg, #050814, #071326);
  color: var(--white);
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.splash-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.2;
  mask-image: radial-gradient(circle at center, black 34%, transparent 78%);
}

.splash-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.42;
  animation: splashOrbMove 2.8s ease-in-out infinite alternate;
}

.splash-orb-one {
  width: 340px;
  height: 340px;
  left: -90px;
  top: -70px;
  background: rgba(32, 223, 244, 0.32);
}

.splash-orb-two {
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -150px;
  background: rgba(24, 201, 143, 0.26);
  animation-delay: 0.35s;
}

.splash-brand-clone {
  --splash-target-x: 0px;
  --splash-target-y: 0px;
  --splash-start-scale: 2.45;

  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  pointer-events: none;
  opacity: 1;
  transform:
    translate(-50%, -50%) scale(var(--splash-start-scale));
  transform-origin: center center;
  transition: none;
  will-change: transform;
}

.splash-moving .splash-brand-clone {
  transform:
    translate(calc(-50% + var(--splash-target-x)), calc(-50% + var(--splash-target-y))) scale(1);
  transition: transform 1.05s cubic-bezier(.18, .84, .28, 1);
}

.splash-fade {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-fade .splash-brand-clone {
  opacity: 0;
}

@keyframes splashOrbMove {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(24px, 18px, 0) scale(1.06);
  }
}