:root {
  --bg: #070a12;
  --fg: rgba(245, 248, 255, 0.96);
  --muted: rgba(229, 234, 243, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.28);
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  scroll-behavior: smooth;
}

body {
  font-family: "Onest", sans-serif;
}

.vision-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(246, 242, 232, 0.88), rgba(190, 207, 235, 0.74) 18%, rgba(106, 128, 175, 0.5) 42%, rgba(28, 38, 61, 0.82) 72%, rgba(6, 10, 18, 0.99) 100%);
}

.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: rgba(246, 249, 255, 0.96);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 1.82rem;
  height: 1.82rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 5px rgba(244, 247, 252, 0.08));
}

.brand-atom-orbit,
.brand-atom-core,
.brand-atom-electron {
  position: absolute;
}

.brand-atom-orbit {
  inset: 0;
  border-radius: 50%;
  border: 1.35px solid rgba(236, 241, 248, 0.9);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.06);
}

.brand-atom-orbit--one {
  transform: rotate(0deg) scaleX(1.02) scaleY(0.48);
}

.brand-atom-orbit--two {
  transform: rotate(62deg) scaleX(1.02) scaleY(0.48);
}

.brand-atom-orbit--three {
  transform: rotate(-62deg) scaleX(1.02) scaleY(0.48);
  opacity: 0.88;
}

.brand-atom-core,
.brand-atom-electron {
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.brand-atom-core {
  left: 50%;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98), rgba(206, 214, 225, 0.96));
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.12),
    0 1px 4px rgba(0, 0, 0, 0.14);
}

.brand-atom-electron {
  width: 0.23rem;
  height: 0.23rem;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.98), rgba(186, 196, 209, 0.94));
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.18);
}

.brand-atom-electron--one {
  left: 78%;
  top: 17%;
}

.brand-atom-electron--two {
  left: 16%;
  top: 71%;
}

.brand-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.topnav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.4rem);
  flex-wrap: wrap;
}

.topnav a,
.topbar-cta {
  color: rgba(238, 243, 250, 0.86);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.topnav a:hover,
.topbar-cta:hover {
  color: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.topbar-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.22rem 0 0.32rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topbar-cta::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(252, 254, 255, 0.98) 0%, rgba(191, 212, 247, 0.92) 46%, rgba(122, 146, 186, 0.88) 100%);
  box-shadow:
    0 0 10px rgba(236, 244, 255, 0.16),
    0 0 22px rgba(164, 193, 237, 0.08);
}

.topbar-cta::after {
  content: "";
  position: absolute;
  left: 0.98rem;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(235, 242, 250, 0.36), rgba(190, 209, 238, 0.12) 54%, rgba(255, 255, 255, 0));
  transform-origin: left center;
  transform: scaleX(0.66);
  transition:
    transform 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
  opacity: 0.9;
}

.topbar-cta:hover::after,
.topbar-cta:focus-visible::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, rgba(248, 252, 255, 0.58), rgba(208, 224, 248, 0.22) 56%, rgba(255, 255, 255, 0));
}

.topbar-cta:focus-visible {
  outline: none;
}

.scene-backdrop,
.scene-overlay {
  position: absolute;
  inset: 0;
}

.scene-backdrop {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(246, 249, 255, 0.24), rgba(211, 227, 255, 0.14) 18%, rgba(102, 131, 185, 0.08) 38%, rgba(13, 19, 33, 0) 62%),
    linear-gradient(180deg, rgba(136, 162, 208, 0.34) 0%, rgba(103, 128, 170, 0.2) 20%, rgba(26, 36, 56, 0.78) 58%, rgba(6, 10, 18, 1) 100%);
}

.scene-sky,
.scene-glow,
.scene-field,
.scene-orbit,
.scene-electron {
  position: absolute;
  pointer-events: none;
}

.scene-field {
  inset: 0;
  height: calc(100vh + 30rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 74%, rgba(0, 0, 0, 0.5) 88%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 74%, rgba(0, 0, 0, 0.5) 88%, rgba(0, 0, 0, 0) 100%);
}

.scene-sky {
  inset: 0;
  background:
    radial-gradient(circle at 50% 41%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 15%),
    radial-gradient(circle at 50% 53%, rgba(193, 220, 255, 0.24), rgba(255, 255, 255, 0) 29%),
    linear-gradient(180deg, rgba(171, 194, 231, 0.76) 0%, rgba(160, 184, 220, 0.42) 24%, rgba(84, 106, 149, 0.14) 50%, rgba(24, 31, 48, 0.05) 72%, rgba(0, 0, 0, 0) 100%);
}

.scene-glow {
  left: 50%;
  top: 58%;
  width: min(72vw, 62rem);
  height: min(30vw, 22rem);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.32), rgba(194, 224, 255, 0.14) 22%, rgba(255, 255, 255, 0) 60%);
  filter: blur(36px);
  opacity: 0.72;
  animation: scene-glow-breathe 12s ease-in-out infinite;
}

.scene-orbit {
  left: 50%;
  top: 74%;
  border-radius: 50%;
  border: 1.2px solid rgba(247, 251, 255, 0.28);
  filter: blur(0.1px);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.04),
    0 0 30px rgba(196, 225, 255, 0.03);
  transform-origin: center;
  opacity: 0.56;
}

.scene-orbit--one {
  width: min(74vw, 64rem);
  height: min(30vw, 26rem);
  transform: translate(-50%, -50%) rotate(18deg);
  animation: scene-orbit-a 24s cubic-bezier(0.45, 0.02, 0.18, 0.99) infinite alternate;
}

.scene-orbit--two {
  width: min(62vw, 54rem);
  height: min(48vw, 42rem);
  transform: translate(-50%, -50%) rotate(78deg);
  opacity: 0.4;
  animation: scene-orbit-b 19s cubic-bezier(0.62, 0.04, 0.24, 0.98) infinite alternate;
}

.scene-orbit--three {
  width: min(70vw, 60rem);
  height: min(36vw, 32rem);
  transform: translate(-50%, -50%) rotate(-54deg);
  opacity: 0.24;
  animation: scene-orbit-c 27s cubic-bezier(0.36, 0.08, 0.12, 0.99) infinite alternate;
}

.scene-electron {
  left: 50%;
  top: 74%;
  width: 0.9rem;
  height: 0.9rem;
  margin: -0.45rem 0 0 -0.45rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 1), rgba(210, 224, 244, 0.96) 40%, rgba(116, 149, 206, 0.74) 100%);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.26),
    0 0 28px rgba(94, 142, 230, 0.16);
}

.scene-electron--one {
  animation: scene-electron-a 15s linear infinite;
}

.scene-electron--two {
  width: 0.76rem;
  height: 0.76rem;
  margin: -0.38rem 0 0 -0.38rem;
  opacity: 0.88;
  animation: scene-electron-b 11.4s linear infinite;
}

.scene-electron--three {
  width: 0.62rem;
  height: 0.62rem;
  margin: -0.31rem 0 0 -0.31rem;
  opacity: 0.72;
  animation: scene-electron-c 17.2s linear infinite reverse;
}

.scene-overlay {
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 15, 24, 0.06) 0%, rgba(10, 15, 24, 0) 18%, rgba(7, 10, 18, 0.12) 70%, rgba(7, 10, 18, 0.74) 100%),
    linear-gradient(90deg, rgba(10, 14, 22, 0.06) 0%, rgba(10, 14, 22, 0) 14%, rgba(10, 14, 22, 0) 86%, rgba(10, 14, 22, 0.06) 100%);
}

.vision-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, transparent 34%, rgba(0, 0, 0, 0.16) 72%, rgba(0, 0, 0, 0.32) 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 30%);
}

@keyframes scene-glow-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.58;
  }

  35% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 0.8;
  }

  68% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.66;
  }
}

@keyframes scene-core-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.96);
    box-shadow:
      0 0 30px rgba(186, 215, 255, 0.36),
      0 0 65px rgba(92, 142, 230, 0.16);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
      0 0 38px rgba(200, 224, 255, 0.44),
      0 0 88px rgba(92, 142, 230, 0.24);
  }
}

@keyframes scene-orbit-a {
  0% {
    transform: translate(-50%, -50%) rotate(14deg) scale(0.98);
  }

  37% {
    transform: translate(-50%, -50%) rotate(26deg) scale(1.01);
  }

  100% {
    transform: translate(-50%, -50%) rotate(42deg) scale(0.99);
  }
}

@keyframes scene-orbit-b {
  0% {
    transform: translate(-50%, -50%) rotate(72deg) scale(0.98);
    opacity: 0.46;
  }

  58% {
    transform: translate(-50%, -50%) rotate(94deg) scale(1.02);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) rotate(112deg) scale(0.99);
    opacity: 0.52;
  }
}

@keyframes scene-orbit-c {
  0% {
    transform: translate(-50%, -50%) rotate(-62deg) scale(0.97);
    opacity: 0.24;
  }

  44% {
    transform: translate(-50%, -50%) rotate(-38deg) scale(1.03);
    opacity: 0.38;
  }

  100% {
    transform: translate(-50%, -50%) rotate(-18deg) scale(1);
    opacity: 0.28;
  }
}

@keyframes scene-electron-a {
  0% {
    transform: translate(min(37vw, 32rem), 0);
  }

  25% {
    transform: translate(0, min(-12vw, -10rem));
  }

  50% {
    transform: translate(min(-37vw, -32rem), 0);
  }

  75% {
    transform: translate(0, min(12vw, 10rem));
  }

  100% {
    transform: translate(min(37vw, 32rem), 0);
  }
}

@keyframes scene-electron-b {
  0% {
    transform: translate(min(10vw, 9rem), min(-24vw, -20rem));
  }

  25% {
    transform: translate(min(24vw, 20rem), 0);
  }

  50% {
    transform: translate(min(10vw, 9rem), min(24vw, 20rem));
  }

  75% {
    transform: translate(min(-8vw, -7rem), 0);
  }

  100% {
    transform: translate(min(10vw, 9rem), min(-24vw, -20rem));
  }
}

@keyframes scene-electron-c {
  0% {
    transform: translate(min(-28vw, -24rem), min(-14vw, -12rem));
    opacity: 0.54;
  }

  25% {
    transform: translate(min(-8vw, -7rem), min(-28vw, -24rem));
  }

  50% {
    transform: translate(min(28vw, 24rem), min(6vw, 5rem));
    opacity: 0.86;
  }

  75% {
    transform: translate(min(-7vw, -6rem), min(26vw, 22rem));
  }

  100% {
    transform: translate(min(-28vw, -24rem), min(-14vw, -12rem));
    opacity: 0.58;
  }
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 6.3rem 1.5rem 3rem;
  display: block;
  text-align: center;
}

.about-section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 1.5rem 6rem;
  overflow: hidden;
}

.about-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-aurora,
.about-trace {
  position: absolute;
  pointer-events: none;
}

.about-aurora {
  left: 50%;
  top: 16%;
  width: min(56rem, 82vw);
  height: 20rem;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 40%, rgba(245, 248, 255, 0.16), rgba(180, 205, 245, 0.12) 18%, rgba(115, 151, 214, 0.06) 40%, rgba(0, 0, 0, 0) 72%);
  filter: blur(24px);
  opacity: 0.8;
}

.about-trace {
  left: 50%;
  top: 45%;
  border-radius: 50%;
  border: 0.9px solid rgba(236, 242, 250, 0.06);
  transform-origin: center;
  box-shadow: 0 0 16px rgba(194, 220, 255, 0.025);
  filter: blur(0.2px);
}

.about-trace--one {
  width: min(56rem, 84vw);
  height: min(18rem, 28vw);
  transform: translate(-50%, -50%) rotate(18deg);
  opacity: 0.2;
}

.about-trace--two {
  width: min(44rem, 64vw);
  height: min(24rem, 34vw);
  transform: translate(-50%, -50%) rotate(72deg);
  opacity: 0.12;
}

.about-trace--three {
  width: min(52rem, 74vw);
  height: min(20rem, 30vw);
  transform: translate(-50%, -50%) rotate(-48deg);
  opacity: 0.08;
}

.about-shell {
  position: relative;
  width: min(100%, 74rem);
  margin: 0 auto;
  z-index: 1;
}

.about-header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.82fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: end;
}

.about-intro {
  max-width: 42rem;
}

.about-manifest {
  position: relative;
  overflow: visible;
  align-self: stretch;
  padding: 0.85rem 0 0.5rem 1.7rem;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.about-manifest::before,
.about-manifest::after,
.about-card::before,
.about-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-manifest::before {
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 1px;
  height: auto;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(248, 252, 255, 0.82) 14%,
    rgba(193, 216, 248, 0.28) 38%,
    rgba(116, 156, 223, 0.12) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 16px rgba(171, 208, 255, 0.16),
    0 0 28px rgba(120, 168, 238, 0.06);
}

.about-manifest::after {
  left: -3.2rem;
  top: 50%;
  width: 9rem;
  height: 9rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 230, 255, 0.18), rgba(135, 171, 232, 0.08) 34%, rgba(0, 0, 0, 0) 72%);
  filter: blur(14px);
  opacity: 0.76;
}

.about-kicker {
  margin-bottom: 1.1rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(234, 241, 250, 0.68);
}

.about-title {
  max-width: 10.5ch;
  margin: 0;
  font-size: clamp(2.3rem, 4.9vw, 5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: rgba(247, 250, 255, 0.98);
  text-wrap: balance;
}

.about-copy {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(229, 236, 246, 0.86);
}

.about-copy--secondary {
  margin-bottom: 0;
  color: rgba(213, 222, 236, 0.7);
}

.about-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.about-card {
  position: relative;
  overflow: visible;
  min-height: 0;
  padding: 0.2rem 0 0.3rem 1.4rem;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.about-card::before {
  left: 0;
  top: 0.28rem;
  bottom: 0;
  width: 1px;
  height: auto;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.9), rgba(188, 213, 247, 0.3) 34%, rgba(110, 153, 224, 0.12) 68%, rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(182, 214, 255, 0.14);
}

.about-card::after {
  left: -0.28rem;
  top: 0.16rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 254, 255, 1), rgba(211, 227, 248, 0.94) 34%, rgba(128, 168, 229, 0.68) 100%);
  box-shadow:
    0 0 12px rgba(212, 229, 252, 0.22),
    0 0 30px rgba(111, 164, 242, 0.14);
}

.about-card:hover {
  transform: translateY(-3px);
  opacity: 0.96;
}

.about-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.95rem;
}

.about-card-top::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 249, 255, 0.24), rgba(171, 206, 255, 0.1) 46%, rgba(255, 255, 255, 0));
}

.about-card-pulse {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(251, 253, 255, 1) 0%, rgba(219, 231, 248, 0.96) 44%, rgba(132, 164, 216, 0.68) 100%);
  box-shadow:
    0 0 10px rgba(210, 228, 255, 0.18),
    0 0 18px rgba(123, 173, 248, 0.08);
}

.about-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: rgba(205, 217, 236, 0.5);
}

.about-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(246, 249, 255, 0.95);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.05);
}

.about-card p {
  margin: 0;
  max-width: 26ch;
  font-size: 0.96rem;
  line-height: 1.66;
  color: rgba(220, 227, 239, 0.76);
}

.gallery-section {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 8rem;
  overflow: hidden;
}

.gallery-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.gallery-aurora,
.gallery-trace {
  position: absolute;
  pointer-events: none;
}

.gallery-aurora {
  left: 50%;
  top: 10%;
  width: min(72rem, 94vw);
  height: 32rem;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 42%, rgba(247, 251, 255, 0.18), rgba(175, 203, 244, 0.12) 24%, rgba(111, 150, 219, 0.08) 44%, rgba(0, 0, 0, 0) 76%);
  filter: blur(34px);
  opacity: 0.74;
}

.gallery-trace {
  left: 50%;
  top: 54%;
  border-radius: 50%;
  border: 0.9px solid rgba(240, 246, 255, 0.055);
  transform-origin: center;
  box-shadow: 0 0 24px rgba(188, 220, 255, 0.03);
}

.gallery-trace--one {
  width: min(72rem, 96vw);
  height: min(22rem, 36vw);
  transform: translate(-50%, -50%) rotate(16deg);
  opacity: 0.18;
}

.gallery-trace--two {
  width: min(54rem, 80vw);
  height: min(28rem, 42vw);
  transform: translate(-50%, -50%) rotate(-42deg);
  opacity: 0.12;
}

.gallery-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 78rem);
  margin: 0 auto;
}

.gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.82fr);
  gap: clamp(1.3rem, 3vw, 3rem);
  align-items: end;
  margin-bottom: 2.25rem;
}

.gallery-heading {
  max-width: 36rem;
}

.gallery-kicker {
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(231, 239, 250, 0.62);
}

.gallery-title {
  margin: 0;
  font-size: clamp(2.2rem, 4.9vw, 4.8rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: rgba(247, 250, 255, 0.98);
  text-wrap: balance;
}

.gallery-copy {
  margin: 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(216, 226, 241, 0.76);
}

.gallery-composition {
  position: relative;
  display: grid;
  gap: 1.8rem;
}

.gallery-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1.35rem;
  align-items: start;
}

.gallery-band {
  display: grid;
  gap: 1.1rem;
}

.gallery-band-head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(18rem, 1fr);
  gap: 1.3rem;
  align-items: start;
  padding-top: 0.2rem;
}

.gallery-band-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(231, 239, 250, 0.54);
}

.gallery-band-copy {
  margin: 0;
  max-width: 32rem;
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(210, 222, 239, 0.64);
}

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

.gallery-tile {
  position: relative;
}

.gallery-open {
  position: relative;
  display: grid;
  gap: 0.9rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  cursor: pointer;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.gallery-open::before {
  content: none;
}

.gallery-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  background: rgba(7, 13, 29, 0.16);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(205, 230, 255, 0.04);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.gallery-frame::before,
.gallery-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.gallery-frame::before {
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(236, 243, 252, 0.1);
  opacity: 1;
}

.gallery-frame::after {
  inset: auto 12% -14% 12%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 128, 203, 0.12), rgba(0, 0, 0, 0) 72%);
  filter: blur(18px);
  opacity: 0.4;
}

.gallery-tile--hero .gallery-frame {
  min-height: 28rem;
}

.gallery-tile--feature .gallery-frame {
  min-height: 28rem;
}

.gallery-tile--support .gallery-frame {
  min-height: 16rem;
}

.gallery-open:hover .gallery-frame {
  transform: translateY(-4px);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.24),
    0 0 30px rgba(185, 219, 255, 0.04),
    inset 0 0 0 1px rgba(215, 236, 255, 0.06);
  filter: saturate(1.03);
}

.gallery-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.95) contrast(1.02) brightness(0.88);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.04), rgba(4, 10, 24, 0.08) 28%, rgba(5, 11, 24, 0.2) 58%, rgba(4, 8, 19, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 12, 30, 0.18), rgba(5, 12, 30, 0) 26%, rgba(5, 12, 30, 0) 74%, rgba(5, 12, 30, 0.14));
}

.gallery-meta,
.gallery-text {
  z-index: 3;
}

.gallery-meta {
  position: absolute;
  top: 1.05rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.gallery-index {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: rgba(236, 243, 251, 0.56);
  white-space: nowrap;
}

.gallery-index::after {
  content: "";
  display: inline-block;
  width: 2.3rem;
  height: 1px;
  margin-left: 0.66rem;
  vertical-align: middle;
  background: linear-gradient(90deg, rgba(236, 243, 251, 0.34), rgba(236, 243, 251, 0));
}

.gallery-chip {
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 244, 255, 0.58);
}

.gallery-text {
  position: relative;
  display: grid;
  gap: 0.38rem;
  padding-left: 0.08rem;
  text-align: left;
}

.gallery-text strong {
  font-size: clamp(1rem, 1.3vw, 1.34rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(247, 250, 255, 0.98);
  transition: color 220ms ease;
}

.gallery-text span {
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(223, 231, 242, 0.74);
  transition: color 220ms ease;
}

.gallery-open:hover .gallery-text strong {
  color: rgba(251, 253, 255, 1);
}

.gallery-open:hover .gallery-text span {
  color: rgba(228, 235, 245, 0.84);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.gallery-lightbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(163, 203, 255, 0.12), rgba(7, 11, 21, 0) 32%),
    rgba(4, 8, 17, 0.82);
  backdrop-filter: blur(22px) saturate(120%);
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.7fr);
  gap: 1.4rem;
  padding: 1.15rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.08), rgba(141, 179, 232, 0.034)),
    rgba(7, 12, 27, 0.7);
  box-shadow:
    0 38px 84px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(210, 231, 255, 0.08);
  backdrop-filter: blur(22px) saturate(128%);
  transform: translateY(10px) scale(0.985);
  transition: transform 260ms ease;
}

.gallery-lightbox.is-open .gallery-lightbox-panel {
  transform: translateY(0) scale(1);
}

.gallery-lightbox-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.55rem;
  min-height: 20rem;
  background: rgba(0, 0, 0, 0.2);
}

.gallery-lightbox-media::after {
  content: "";
  position: absolute;
  inset: auto 10% -18% 10%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 152, 228, 0.22), rgba(0, 0, 0, 0) 72%);
  filter: blur(22px);
  pointer-events: none;
}

.gallery-lightbox-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #03060f;
}

.gallery-lightbox-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 1rem 0.35rem 0.5rem 0.25rem;
}

.gallery-lightbox-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(222, 233, 248, 0.52);
}

.gallery-lightbox-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: rgba(247, 250, 255, 0.98);
}

.gallery-lightbox-copy p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(216, 226, 241, 0.76);
}

.gallery-lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.6rem;
  z-index: 31;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(237, 244, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 13, 28, 0.54);
  color: rgba(245, 249, 255, 0.82);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.gallery-lightbox-close:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 248, 255, 0.18);
  background: rgba(10, 16, 34, 0.7);
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.pricing-section {
  position: relative;
  z-index: 1;
  padding: 2.25rem 1.5rem 8rem;
  overflow: hidden;
}

.pricing-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pricing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.32;
}

.pricing-glow--one {
  left: 50%;
  top: 5%;
  width: min(56rem, 72vw);
  height: 18rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(239, 246, 255, 0.16), rgba(160, 194, 244, 0.08) 36%, rgba(0, 0, 0, 0) 72%);
}

.pricing-glow--two {
  right: 10%;
  bottom: 4%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(116, 154, 223, 0.14), rgba(0, 0, 0, 0) 72%);
}

.pricing-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 78rem);
  margin: 0 auto;
}

.pricing-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.8fr);
  gap: clamp(1.2rem, 2.6vw, 2.75rem);
  align-items: end;
  margin-bottom: 2rem;
}

.pricing-heading {
  max-width: 34rem;
}

.pricing-kicker {
  margin-bottom: 0.95rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(231, 239, 250, 0.62);
}

.pricing-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: rgba(247, 250, 255, 0.98);
  text-wrap: balance;
}

.pricing-copy {
  margin: 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(216, 226, 241, 0.74);
}

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


.pricing-card {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.2rem 1.15rem 1.15rem;
  border: 1px solid rgba(216, 228, 245, 0.08);
  border-radius: 0.5rem;
  background:
    linear-gradient(180deg, rgba(241, 246, 255, 0.05), rgba(149, 177, 221, 0.018) 34%, rgba(8, 14, 28, 0.2) 100%),
    rgba(7, 12, 25, 0.44);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(114%);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(246, 250, 255, 0.04);
  pointer-events: none;
}

.pricing-card--pro {
  border-color: rgba(224, 236, 252, 0.12);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.22),
    0 0 34px rgba(165, 199, 244, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card-top {
  display: grid;
  gap: 0.45rem;
}

.pricing-badge {
  justify-self: start;
  margin-bottom: 0.2rem;
  padding: 0.38rem 0.56rem;
  border: 1px solid rgba(236, 244, 255, 0.1);
  border-radius: 999px;
  background: rgba(240, 246, 255, 0.04);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239, 246, 255, 0.68);
}

.pricing-plan {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 243, 251, 0.62);
}

.pricing-price {
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: rgba(248, 251, 255, 0.98);
}

.pricing-price span {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(221, 229, 240, 0.62);
}

.pricing-volume {
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(247, 250, 255, 0.95);
}

.pricing-meta {
  margin: -0.55rem 0 0;
  font-size: 0.88rem;
  color: rgba(215, 225, 239, 0.62);
}

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

.pricing-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.92rem;
  line-height: 1.58;
  color: rgba(220, 228, 240, 0.74);
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: rgba(236, 244, 255, 0.6);
  box-shadow: 0 0 12px rgba(188, 215, 255, 0.1);
}

.pricing-button {
  margin-top: auto;
  justify-self: start;
  min-width: 10.4rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(224, 235, 250, 0.12);
  border-radius: 0.5rem;
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.08), rgba(202, 219, 245, 0.04)),
    rgba(10, 16, 30, 0.62);
  color: rgba(241, 246, 255, 0.9);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.pricing-button:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 245, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.1), rgba(202, 219, 245, 0.05)),
    rgba(12, 18, 34, 0.68);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.14),
    0 0 20px rgba(166, 196, 242, 0.04);
}

.pricing-button:focus-visible {
  outline: none;
  border-color: rgba(244, 248, 255, 0.26);
  box-shadow:
    0 0 0 1px rgba(244, 248, 255, 0.12),
    0 0 22px rgba(180, 212, 255, 0.12);
}

.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 32;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.subscribe-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(166, 205, 255, 0.08), rgba(8, 12, 24, 0) 26%),
    rgba(4, 7, 16, 0.58);
  backdrop-filter: blur(14px) saturate(116%);
}

.subscribe-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.subscribe-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(100%, 33rem);
  padding: 1.55rem 1.45rem 1.35rem;
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 50% -8%, rgba(232, 241, 255, 0.09), rgba(232, 241, 255, 0) 36%),
    linear-gradient(180deg, rgba(245, 249, 255, 0.045), rgba(148, 182, 232, 0.018)),
    rgba(8, 13, 28, 0.82);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(210, 231, 255, 0.065);
  backdrop-filter: blur(20px) saturate(124%);
  transform: translateY(8px) scale(0.988);
  transition: transform 240ms ease;
}

.subscribe-panel::before,
.subscribe-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.subscribe-panel::before {
  right: -6.5rem;
  top: -4.5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  border: 1px solid rgba(231, 239, 250, 0.045);
  transform: scaleY(0.38) rotate(18deg);
  opacity: 0.7;
}

.subscribe-panel::after {
  inset: auto 16% -18% 16%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 178, 236, 0.12), rgba(0, 0, 0, 0) 72%);
  filter: blur(24px);
  opacity: 0.42;
}

.subscribe-modal.is-open .subscribe-panel {
  transform: translateY(0) scale(1);
}

.subscribe-close {
  position: absolute;
  top: 1.05rem;
  right: 1.05rem;
  padding: 0.32rem 0;
  border: 0;
  background: transparent;
  color: rgba(244, 248, 255, 0.46);
  font: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.subscribe-close:hover {
  color: rgba(248, 251, 255, 0.82);
  opacity: 1;
}

.subscribe-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(222, 233, 248, 0.48);
}

.subscribe-kicker::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(246, 250, 255, 0.98) 0%, rgba(193, 214, 244, 0.68) 38%, rgba(128, 164, 221, 0.18) 72%, rgba(128, 164, 221, 0) 100%);
  box-shadow: 0 0 18px rgba(162, 194, 241, 0.18);
}

.subscribe-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0.9rem 0 0;
  font-size: clamp(1.82rem, 3vw, 2.35rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: rgba(248, 251, 255, 0.98);
}

.subscribe-copy {
  position: relative;
  z-index: 1;
  margin: 0.64rem 0 0;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.66;
  color: rgba(216, 226, 241, 0.64);
}

.subscribe-plan-line {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-top: 0.9rem;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(228, 236, 250, 0.08);
  border-radius: 999px;
  background: rgba(242, 247, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(229, 237, 248, 0.64);
}

.subscribe-form,
.subscribe-success {
  position: relative;
  z-index: 1;
  margin-top: 1.55rem;
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: end;
}

.subscribe-label {
  grid-column: 1 / -1;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 238, 249, 0.46);
}

.subscribe-input {
  width: 100%;
  min-width: 0;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(219, 231, 248, 0.08);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgba(243, 248, 255, 0.035), rgba(243, 248, 255, 0.016)),
    rgba(237, 244, 255, 0.028);
  color: rgba(247, 250, 255, 0.96);
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.subscribe-input::placeholder {
  color: rgba(220, 228, 240, 0.36);
}

.subscribe-input:focus {
  border-color: rgba(232, 240, 252, 0.14);
  background:
    linear-gradient(180deg, rgba(243, 248, 255, 0.05), rgba(243, 248, 255, 0.024)),
    rgba(240, 246, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(233, 241, 252, 0.05),
    0 0 18px rgba(156, 189, 238, 0.045);
}

.subscribe-submit {
  position: relative;
  align-self: stretch;
  padding: 0.82rem 1rem 0.86rem;
  border: 1px solid rgba(228, 236, 250, 0.09);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(232, 242, 255, 0.16), rgba(232, 242, 255, 0) 72%),
    linear-gradient(180deg, rgba(246, 249, 255, 0.12), rgba(198, 213, 237, 0.06)),
    rgba(14, 20, 37, 0.62);
  color: rgba(240, 246, 255, 0.92);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.subscribe-submit:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  filter: brightness(1.03);
}

.subscribe-note {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  color: rgba(214, 225, 240, 0.58);
}

.subscribe-success-title {
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(248, 251, 255, 0.96);
}

.subscribe-success p {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(216, 226, 241, 0.74);
}

@media (max-width: 640px) {
  .subscribe-panel {
    width: min(100%, 28rem);
    padding: 1.3rem 1.05rem 1.05rem;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .subscribe-submit {
    width: 100%;
  }
}

body.subscribe-open {
  overflow: hidden;
}

.generation-modal {
  position: fixed;
  inset: 0;
  z-index: 34;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.generation-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(176, 209, 255, 0.12), rgba(8, 12, 24, 0) 28%),
    rgba(4, 7, 16, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
}

.generation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.generation-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(100%, 42rem);
  display: grid;
  gap: 1rem;
  padding: 1.6rem 1.45rem 1.35rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 50% -12%, rgba(232, 241, 255, 0.09), rgba(232, 241, 255, 0) 38%),
    linear-gradient(180deg, rgba(245, 249, 255, 0.05), rgba(148, 182, 232, 0.02)),
    rgba(7, 12, 26, 0.84);
  box-shadow:
    0 38px 82px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(210, 231, 255, 0.065);
  backdrop-filter: blur(20px) saturate(126%);
  transform: translateY(10px) scale(0.985);
  transition: transform 240ms ease;
}

.generation-panel::before,
.generation-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.generation-panel::before {
  right: -5rem;
  top: -4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 1px solid rgba(231, 239, 250, 0.04);
  transform: scaleY(0.46) rotate(24deg);
  opacity: 0.72;
}

.generation-panel::after {
  inset: auto 14% -20% 14%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 178, 236, 0.14), rgba(0, 0, 0, 0) 72%);
  filter: blur(26px);
  opacity: 0.42;
}

.generation-modal.is-open .generation-panel {
  transform: translateY(0) scale(1);
}

.generation-close {
  position: absolute;
  top: 1.05rem;
  right: 1.05rem;
  padding: 0.32rem 0;
  border: 0;
  background: transparent;
  color: rgba(244, 248, 255, 0.46);
  font: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.generation-close:hover {
  color: rgba(248, 251, 255, 0.82);
  opacity: 1;
}

.generation-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(222, 233, 248, 0.48);
}

.generation-kicker::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(246, 250, 255, 0.98) 0%, rgba(193, 214, 244, 0.68) 38%, rgba(128, 164, 221, 0.18) 72%, rgba(128, 164, 221, 0) 100%);
  box-shadow: 0 0 18px rgba(162, 194, 241, 0.18);
}

.generation-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.generation-head h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: rgba(248, 251, 255, 0.98);
}

.generation-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0.54rem 0.72rem;
  border: 1px solid rgba(228, 236, 250, 0.08);
  border-radius: 999px;
  background: rgba(242, 247, 255, 0.03);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 237, 248, 0.64);
  white-space: nowrap;
}

.generation-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 38ch;
  font-size: 0.96rem;
  line-height: 1.68;
  color: rgba(216, 226, 241, 0.68);
}

.generation-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.generation-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.66rem;
  border: 1px solid rgba(228, 236, 250, 0.06);
  border-radius: 999px;
  background: rgba(242, 247, 255, 0.02);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(220, 229, 241, 0.4);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.generation-step.is-active {
  border-color: rgba(236, 244, 255, 0.12);
  background: rgba(242, 247, 255, 0.05);
  color: rgba(244, 248, 255, 0.88);
  box-shadow: 0 0 20px rgba(181, 212, 255, 0.08);
}

.generation-step.is-complete {
  border-color: rgba(192, 221, 255, 0.08);
  color: rgba(228, 236, 247, 0.7);
}

.generation-prompt {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(219, 231, 248, 0.06);
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(243, 248, 255, 0.03), rgba(243, 248, 255, 0.015)),
    rgba(237, 244, 255, 0.025);
  font-size: 0.92rem;
  line-height: 1.62;
  color: rgba(233, 240, 249, 0.76);
  white-space: pre-wrap;
  word-break: break-word;
}

.generation-ready {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.generation-ready video {
  width: 100%;
  display: block;
  border-radius: 1rem;
  background: #03060f;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(215, 233, 255, 0.08);
}

.generation-download,
.generation-prepare {
  justify-self: start;
  min-width: 10rem;
  padding: 0.86rem 1rem;
  border: 1px solid rgba(224, 235, 250, 0.12);
  border-radius: 0.88rem;
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.08), rgba(202, 219, 245, 0.04)),
    rgba(10, 16, 30, 0.62);
  color: rgba(241, 246, 255, 0.9);
  text-decoration: none;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.generation-download:hover,
.generation-prepare:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 245, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.1), rgba(202, 219, 245, 0.05)),
    rgba(12, 18, 34, 0.68);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.14),
    0 0 20px rgba(166, 196, 242, 0.04);
}

.generation-prepare[hidden] {
  display: none;
}

body.generation-open {
  overflow: hidden;
}

@media (max-width: 1040px) {
  .gallery-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-header,
  .pricing-grid {
    grid-template-columns: 1fr;
  }


  .pricing-header {
    gap: 0.95rem;
  }

  .gallery-stage,
  .gallery-band-head,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-band-head {
    gap: 0.7rem;
  }

  .gallery-tile--hero,
  .gallery-tile--feature {
    min-height: 22rem;
  }

  .gallery-tile--support {
    min-height: 16rem;
  }

  .gallery-lightbox-panel {
    grid-template-columns: 1fr;
  }

  .subscribe-panel {
    width: min(100%, 34rem);
  }

  .generation-panel {
    width: min(100%, 40rem);
  }
}

.atom-trigger {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease,
    filter 320ms ease;
}

.atom-trigger:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.atom-trigger-halo,
.atom-trigger-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.atom-trigger-halo {
  width: 8rem;
  height: 8rem;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(164, 200, 255, 0.18) 18%, rgba(74, 132, 230, 0.12) 42%, rgba(0, 0, 0, 0) 68%);
  filter: blur(20px);
  opacity: 0.68;
  animation: scene-glow-breathe 9.2s ease-in-out infinite;
}

.atom-trigger-core {
  width: 4.75rem;
  height: 4.75rem;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.98), rgba(222, 233, 248, 0.94) 36%, rgba(113, 149, 214, 0.82) 72%, rgba(24, 39, 84, 0.9) 100%);
  box-shadow:
    0 0 24px rgba(186, 215, 255, 0.28),
    0 0 54px rgba(92, 142, 230, 0.12);
  opacity: 0.9;
  animation: scene-core-pulse 8.4s ease-in-out infinite;
}

.atom-trigger:focus-visible {
  outline: none;
}

.atom-trigger:focus-visible .atom-trigger-core {
  box-shadow:
    0 0 0 2px rgba(244, 248, 255, 0.34),
    0 0 28px rgba(206, 226, 255, 0.34),
    0 0 64px rgba(92, 142, 230, 0.18);
}

.atom-guide {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: calc(50% + 3.65rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.62rem;
  transform: translateX(-50%);
  opacity: 0.78;
  pointer-events: none;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    filter 280ms ease;
}

.atom-guide-line {
  width: 1px;
  height: 1.7rem;
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.48), rgba(156, 187, 235, 0.08));
  box-shadow: 0 0 14px rgba(214, 232, 255, 0.2);
}

.atom-guide-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(231, 239, 250, 0.78);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}


.vision-lens {
  position: relative;
  width: 0.98em;
  height: 0.98em;
  margin: 0 0.04em;
  border-radius: 50%;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(248, 251, 255, 0.98) 0 3%, rgba(133, 201, 255, 0.96) 4%, rgba(22, 71, 164, 0.98) 8%, rgba(6, 18, 52, 1) 20%, rgba(3, 8, 22, 1) 39%, rgba(8, 30, 88, 0.96) 56%, rgba(129, 205, 255, 0.82) 66%, rgba(242, 248, 255, 0.92) 70%, rgba(81, 154, 255, 0.88) 73%, rgba(8, 29, 78, 0.78) 79%, rgba(0, 0, 0, 0) 80%);
  box-shadow:
    0 0 0 1px rgba(225, 240, 255, 0.26),
    0 0 8px rgba(112, 185, 255, 0.16),
    0 0 18px rgba(42, 120, 255, 0.14),
    0 8px 12px rgba(0, 0, 0, 0.16);
  animation: vision-lens-pulse 6.4s ease-in-out infinite;
}

.vision-lens::before {
  content: "";
  position: absolute;
  inset: 0.16em;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(3, 14, 38, 0) 23%, rgba(8, 20, 54, 0.84) 24%, rgba(2, 8, 22, 0.98) 43%, rgba(29, 98, 220, 0.3) 58%, rgba(235, 246, 255, 0.56) 73%, rgba(255, 255, 255, 0) 74%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 8px rgba(84, 160, 255, 0.09);
  animation: vision-lens-inner 7.2s ease-in-out infinite;
}

.vision-lens::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1em;
  width: 0.5em;
  height: 0.05em;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21, 78, 197, 0), rgba(133, 201, 255, 0.46), rgba(248, 251, 255, 0.7), rgba(133, 201, 255, 0.46), rgba(21, 78, 197, 0));
  filter: blur(0.03em);
  opacity: 0.56;
  animation: vision-lens-floor 5.2s ease-in-out infinite;
}

.vision-lens-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.1em;
  height: 0.1em;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 251, 255, 1) 0%, rgba(71, 155, 255, 1) 45%, rgba(16, 74, 225, 1) 100%);
  box-shadow:
    0 0 0.04em rgba(255, 255, 255, 0.88),
    0 0 0.12em rgba(133, 201, 255, 0.52),
    0 0 0.28em rgba(45, 127, 255, 0.4);
  animation: vision-lens-core 4.2s ease-in-out infinite;
}

.vision-lens-orbit,
.vision-lens-scan {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.vision-lens-orbit {
  inset: -0.03em;
  background:
    conic-gradient(from 0deg, rgba(255, 255, 255, 0) 0deg, rgba(138, 208, 255, 0.04) 24deg, rgba(246, 250, 255, 0.72) 42deg, rgba(103, 182, 255, 0.44) 58deg, rgba(255, 255, 255, 0) 86deg, rgba(255, 255, 255, 0) 360deg);
  filter: blur(0.01em);
  -webkit-mask: radial-gradient(circle, transparent 64%, #000 68%, #000 71%, transparent 75%);
  mask: radial-gradient(circle, transparent 64%, #000 68%, #000 71%, transparent 75%);
  opacity: 0.82;
  animation: vision-lens-rotate 8.6s linear infinite;
}

.vision-lens-scan {
  inset: 0.22em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(172, 224, 255, 0.01) 34%, rgba(239, 248, 255, 0.36) 49%, rgba(77, 167, 255, 0.1) 62%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  filter: blur(0.015em);
  opacity: 0.4;
  mix-blend-mode: screen;
  animation: vision-lens-scan 5.4s ease-in-out infinite;
}

@keyframes vision-lens-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(225, 240, 255, 0.26),
      0 0 8px rgba(112, 185, 255, 0.16),
      0 0 18px rgba(42, 120, 255, 0.14),
      0 8px 12px rgba(0, 0, 0, 0.16);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(236, 246, 255, 0.38),
      0 0 10px rgba(128, 199, 255, 0.24),
      0 0 24px rgba(51, 131, 255, 0.2),
      0 0 44px rgba(32, 113, 255, 0.08),
      0 8px 14px rgba(0, 0, 0, 0.2);
  }
}

@keyframes vision-lens-inner {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

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

@keyframes vision-lens-core {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0.04em rgba(255, 255, 255, 0.88),
      0 0 0.12em rgba(133, 201, 255, 0.52),
      0 0 0.28em rgba(45, 127, 255, 0.4);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
      0 0 0.06em rgba(255, 255, 255, 0.92),
      0 0 0.18em rgba(152, 216, 255, 0.66),
      0 0 0.4em rgba(45, 127, 255, 0.54);
  }
}

@keyframes vision-lens-rotate {
  from {
    transform: rotate(0deg);
  }

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

@keyframes vision-lens-scan {
  0%,
  100% {
    transform: translateY(-8%) scaleY(0.94);
    opacity: 0.04;
  }

  50% {
    transform: translateY(10%) scaleY(1.03);
    opacity: 0.28;
  }
}

@keyframes vision-lens-floor {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-50%) scaleX(0.8);
  }

  50% {
    opacity: 0.46;
    transform: translateX(-50%) scaleX(0.9);
  }
}

.search-cluster {
  position: absolute;
  left: 50%;
  top: calc(50% + 4.75rem);
  width: min(66rem, calc(100% - 3rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 0;
  opacity: 0;
  transform: translate(-50%, -1.8rem) scale(0.68);
  transform-origin: center top;
  filter: blur(10px);
  pointer-events: none;
  overflow: visible;
  transition:
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

body.search-open .atom-trigger {
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0.22;
  filter: blur(1.2px);
}

body.search-open .atom-guide,
body.has-opened-search .atom-guide {
  transform: translate(-50%, -0.65rem);
  opacity: 0;
  filter: blur(5px);
}


body.search-open .search-cluster {
  max-height: 10rem;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.search-panel {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.42rem 0.48rem 0.42rem 0.95rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.24), rgba(210, 230, 255, 0.12) 42%, rgba(86, 142, 255, 0.08) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(225, 240, 255, 0.07) 30%, rgba(146, 195, 255, 0.11) 64%, rgba(90, 160, 255, 0.08) 100%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.24),
    0 0 38px rgba(222, 239, 255, 0.11),
    0 0 84px rgba(84, 157, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -18px 30px rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(184, 225, 255, 0.12);
  backdrop-filter: blur(30px) saturate(132%);
  animation: search-panel-breathe 7.5s ease-in-out infinite;
}

.search-panel::before,
.search-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.search-panel::before {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 32%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 74% 50%, rgba(183, 229, 255, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(104, 172, 255, 0.16), transparent 24%, rgba(255, 255, 255, 0.04) 52%, rgba(104, 172, 255, 0.18) 100%);
  opacity: 1;
  z-index: -1;
  animation: search-panel-surface 10s linear infinite;
}

.search-panel::after {
  top: -8%;
  bottom: -8%;
  left: -24%;
  width: 56%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(124, 191, 255, 0.16), rgba(245, 251, 255, 0.52), rgba(134, 198, 255, 0.82), rgba(245, 251, 255, 0.26), rgba(255, 255, 255, 0));
  opacity: 0.96;
  filter: blur(13px);
  z-index: -1;
  animation: search-panel-flow 5.4s ease-in-out infinite;
}

.search-icon {
  width: 2.45rem;
  height: 2.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: rgba(229, 242, 255, 0.82);
}

.search-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.search-panel input {
  width: 100%;
  height: 3.1rem;
  border: 0;
  background: transparent;
  color: rgba(245, 250, 255, 0.97);
  font-family: "Onest", sans-serif;
  font-size: 1.18rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.12);
}

.search-panel input::placeholder {
  color: rgba(221, 236, 255, 0.72);
}

.search-panel input:focus {
  outline: none;
}

.search-panel button {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  box-shadow: none;
  animation: none;
}

.search-panel button:hover {
  transform: translateY(-1px) scale(1.015);
  background: transparent;
  box-shadow: none;
}

.search-launch-button {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
  isolation: isolate;
}

.search-launch-ring,
.search-launch-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.search-launch-ring {
  width: 3.95rem;
  height: 3.95rem;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0) 58%, rgba(236, 244, 255, 0.4) 63%, rgba(175, 199, 236, 0.22) 70%, rgba(255, 255, 255, 0) 77%),
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(151, 187, 244, 0.06) 42%, rgba(0, 0, 0, 0) 70%);
  box-shadow:
    0 0 26px rgba(196, 220, 255, 0.14),
    0 0 48px rgba(112, 156, 226, 0.08);
  opacity: 0.92;
  animation: search-launch-ring 6.8s ease-in-out infinite;
}

.search-launch-core {
  width: 2.95rem;
  height: 2.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 249, 255, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(225, 235, 249, 0.14) 38%, rgba(78, 112, 170, 0.16) 100%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -10px 16px rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(159, 194, 243, 0.12);
  backdrop-filter: blur(14px) saturate(126%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.search-launch-core svg {
  width: 1.12rem;
  height: 1.12rem;
  filter: drop-shadow(0 0 10px rgba(238, 246, 255, 0.12));
}

.search-launch-button:hover .search-launch-core {
  transform: translate(-50%, -50%) scale(1.04);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -10px 16px rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.2),
    0 0 28px rgba(180, 212, 255, 0.16);
}

.search-launch-button:hover .search-launch-ring {
  opacity: 1;
}

.search-launch-button:focus-visible {
  outline: none;
}

.search-launch-button:focus-visible .search-launch-core {
  border-color: rgba(250, 252, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -10px 16px rgba(255, 255, 255, 0.06),
    0 0 0 2px rgba(243, 247, 255, 0.18),
    0 0 30px rgba(190, 219, 255, 0.22);
}

@keyframes search-launch-ring {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.78;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.03);
    opacity: 0.98;
  }
}

@keyframes search-panel-breathe {
  0%,
  100% {
    box-shadow:
      0 26px 64px rgba(0, 0, 0, 0.24),
      0 0 38px rgba(222, 239, 255, 0.11),
      0 0 84px rgba(84, 157, 255, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      inset 0 -18px 30px rgba(255, 255, 255, 0.04),
      inset 0 0 0 1px rgba(184, 225, 255, 0.12);
  }

  50% {
    box-shadow:
      0 30px 72px rgba(0, 0, 0, 0.26),
      0 0 64px rgba(231, 244, 255, 0.18),
      0 0 128px rgba(87, 166, 255, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -18px 30px rgba(255, 255, 255, 0.05),
      inset 0 0 0 1px rgba(194, 231, 255, 0.16);
  }
}

@keyframes search-panel-surface {
  0% {
    transform: translateX(-2%) translateY(0);
    opacity: 0.92;
  }

  50% {
    transform: translateX(2%) translateY(-1.2%);
    opacity: 1;
  }

  100% {
    transform: translateX(-2%) translateY(0);
    opacity: 0.92;
  }
}

@keyframes search-panel-flow {
  0% {
    transform: translateX(-34%) skewX(-14deg);
    opacity: 0;
  }

  10% {
    opacity: 0.34;
  }

  42% {
    opacity: 0.96;
  }

  58% {
    opacity: 0.44;
  }

  100% {
    transform: translateX(238%) skewX(-14deg);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 1.1rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1rem;
  }

  .scene-orbit--one {
    width: 88vw;
    height: 36vw;
  }

  .scene-orbit--two {
    width: 74vw;
    height: 54vw;
  }

  .scene-orbit--three {
    width: 82vw;
    height: 42vw;
  }

  .atom-trigger {
    width: 4.35rem;
    height: 4.35rem;
  }

  .atom-trigger-halo {
    width: 6.2rem;
    height: 6.2rem;
  }

  .atom-trigger-core {
    width: 3.6rem;
    height: 3.6rem;
  }

  .atom-guide {
    top: calc(50% + 3.15rem);
    gap: 0.5rem;
  }

  .atom-guide-line {
    height: 1.4rem;
  }

  .atom-guide-text {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
  }

  .scene-electron {
    width: 0.72rem;
    height: 0.72rem;
    margin: -0.36rem 0 0 -0.36rem;
  }

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

  .brand-name {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .topnav {
    width: 100%;
    gap: 0.9rem 1.05rem;
  }

  .topnav a,
  .topbar-cta {
    font-size: 0.82rem;
  }

  .hero {
    padding: 7rem 1rem 2rem;
  }

  .about-section {
    padding: 3rem 1rem 4rem;
  }

  .about-shell {
    width: 100%;
  }

  .about-header {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .about-title {
    max-width: none;
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .about-copy {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .about-grid {
    grid-template-columns: 1fr;
    margin-top: 1.75rem;
    gap: 1.6rem;
  }

  .gallery-section {
    padding: 2rem 1rem 5rem;
  }

  .pricing-section {
    padding: 2rem 1rem 5rem;
  }

  .gallery-title {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .pricing-title {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .gallery-copy {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .pricing-copy {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .gallery-composition {
    gap: 1rem;
  }

  .pricing-grid {
    gap: 0.95rem;
  }


  .gallery-band {
    gap: 0.9rem;
  }

  .gallery-tile--hero .gallery-frame,
  .gallery-tile--feature .gallery-frame,
  .gallery-tile--support .gallery-frame {
    min-height: 17rem;
  }

  .gallery-open {
    gap: 0.72rem;
  }

  .gallery-frame {
    border-radius: 0;
  }

  .gallery-meta {
    top: 0.88rem;
    left: 0.9rem;
    right: 0.9rem;
  }

  .gallery-text {
    gap: 0.32rem;
  }

  .gallery-text strong {
    font-size: 1rem;
  }

  .gallery-text span {
    font-size: 0.86rem;
  }

  .gallery-lightbox {
    padding: 1rem;
  }

  .gallery-lightbox-panel {
    gap: 0.9rem;
    padding: 0.8rem;
    border-radius: 1.35rem;
  }

  .gallery-lightbox-media {
    min-height: 14rem;
    border-radius: 1rem;
  }

  .gallery-lightbox-close {
    top: 1rem;
    right: 1rem;
    padding: 0.62rem 0.88rem;
    font-size: 0.68rem;
  }

  .pricing-card {
    padding: 1rem;
  }

  .generation-modal {
    padding: 1rem;
  }

  .generation-panel {
    width: min(100%, 29rem);
    padding: 1.3rem 1.05rem 1.05rem;
  }

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

  .generation-state {
    min-width: 0;
  }

  .generation-ready video {
    border-radius: 0.95rem;
  }

  .about-card {
    min-height: 0;
    padding: 0.2rem 0 0.2rem 1.1rem;
  }

  .about-manifest {
    padding: 0.55rem 0 0.2rem 1.1rem;
  }

  .about-trace--one {
    width: 94vw;
    height: 34vw;
  }

  .about-trace--two {
    width: 78vw;
    height: 54vw;
  }

  .about-trace--three {
    width: 88vw;
    height: 42vw;
  }

  .search-cluster {
    width: 100%;
    top: calc(50% + 4rem);
  }

  body.search-open .search-cluster {
    max-height: 8rem;
  }

  .search-panel {
    width: 100%;
    gap: 0.45rem;
    padding: 0.46rem 0.48rem 0.46rem 0.68rem;
  }

  .search-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .search-panel input {
    height: 2.85rem;
    font-size: 1rem;
  }

  .search-panel button {
    width: 3.2rem;
    height: 3.2rem;
  }

  .search-launch-button {
    width: 3.8rem;
    height: 3.8rem;
  }

  .search-launch-ring {
    width: 3.18rem;
    height: 3.18rem;
  }

  .search-launch-core {
    width: 2.34rem;
    height: 2.34rem;
  }

  .search-launch-core svg {
    width: 0.96rem;
    height: 0.96rem;
  }

  .prompt-actions {
    width: 100%;
    margin-top: 0.8rem;
    gap: 0.45rem;
    padding: 0;
  }

  .action-pill {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 0.85rem;
    height: 2.65rem;
    font-size: 0.88rem;
  }
}
