:root {
  color-scheme: dark;
  --bg: #030407;
  --bg-deep: #020305;
  --panel: rgba(8, 13, 20, 0.84);
  --panel-solid: #08101a;
  --accent: #00e7f2;
  --accent-2: #78c8ff;
  --accent-soft: rgba(0, 231, 242, 0.12);
  --glow: rgba(0, 231, 242, 0.28);
  --proof: #b7ff7a;
  --text: #f4f9fb;
  --muted: #8b9daa;
  --line: rgba(192, 225, 240, 0.12);
  --line-hot: rgba(0, 231, 242, 0.38);
  --header: 78px;
  --wrap: min(1460px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.58;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  background: rgba(0, 231, 242, 0.24);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 11px 15px;
  border-radius: 6px;
  background: var(--accent);
  color: #020609;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

#galaxy-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.film-grain,
.vignette,
.grid-plane {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.film-grain {
  z-index: 80;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.76' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  z-index: 3;
  background: radial-gradient(
    circle at 50% 44%,
    transparent 20%,
    rgba(3, 4, 7, 0.48) 62%,
    rgba(2, 3, 5, 0.96) 100%
  );
}

.grid-plane {
  z-index: 1;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(98, 193, 232, 0.022) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(98, 193, 232, 0.022) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 2px;
  background: rgba(255, 255, 255, 0.035);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), var(--proof));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  min-height: var(--header);
  padding: 0 max(28px, calc((100vw - 1460px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(3, 4, 7, 0.92),
    rgba(3, 4, 7, 0.68)
  );
  backdrop-filter: blur(18px) saturate(125%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 220px;
  text-decoration: none;
}

.brand img {
  filter: drop-shadow(0 0 16px rgba(0, 231, 242, 0.24));
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 14px;
  letter-spacing: 0.025em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font: 650 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.19em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: #9babb4;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 180ms ease;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-link,
.header-link {
  display: inline-grid;
  min-height: 40px;
  place-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #91a4ad;
  background: rgba(255, 255, 255, 0.02);
  font: 700 9px/1 ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.language-link:hover,
.language-link:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  border-color: var(--line-hot);
  color: #fff;
  background: rgba(0, 231, 242, 0.05);
}

.button-primary,
.point-detail-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #02070a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(0, 231, 242, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible,
.point-detail-link:hover,
.point-detail-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 231, 242, 0.22);
}

.button-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--line-hot);
  border-radius: 6px;
  background: rgba(3, 7, 12, 0.52);
  color: #bfd0d8;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  color: #fff;
  background: rgba(0, 231, 242, 0.055);
}

.hub-main,
.detail-main,
.site-footer {
  position: relative;
  z-index: 5;
}

.hub-hero {
  min-height: 100svh;
  padding: calc(var(--header) + 65px) max(32px, calc((100vw - 1460px) / 2))
    28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hub-grid {
  width: 100%;
  max-width: 1460px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(600px, 1.28fr);
  align-items: center;
  gap: clamp(38px, 5vw, 88px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.eyebrow,
.section-index,
.micro-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font: 700 9px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow i,
.live-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--proof);
  box-shadow: 0 0 14px rgba(183, 255, 122, 0.8);
}

.hero-copy h1,
.detail-hero h1 {
  margin: 24px 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(50px, 5.8vw, 88px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-copy h1 span,
.detail-hero h1 span,
.section-head h2 span,
.contact-copy h2 span {
  color: var(--accent-2);
  text-shadow: 0 0 44px rgba(80, 182, 238, 0.12);
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: #9babb5;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.hub-instruction {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #637985;
  font: 650 8px/1.5 ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.hub-instruction span {
  color: var(--accent);
}

.galaxy-stage {
  position: relative;
  min-height: 660px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 231, 242, 0.095),
      transparent 26%
    ),
    linear-gradient(145deg, rgba(10, 17, 25, 0.6), rgba(3, 5, 9, 0.12));
  box-shadow:
    inset 0 0 80px rgba(0, 231, 242, 0.025),
    0 34px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(7px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 300ms ease;
}

.galaxy-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 231, 242, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(0, 231, 242, 0.035) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
}

.stage-meta {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #607783;
  font: 650 8px/1 ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--proof);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 231, 242, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-a {
  width: 42%;
  aspect-ratio: 1;
}

.orbit-b {
  width: 67%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit-spin 52s linear infinite;
}

.orbit-c {
  width: 89%;
  aspect-ratio: 1;
  border-color: rgba(120, 200, 255, 0.07);
  animation: orbit-spin 78s linear infinite reverse;
}

.core-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 172px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 231, 242, 0.44);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10, 48, 66, 0.97),
    rgba(4, 12, 19, 0.95) 68%
  );
  color: var(--text);
  cursor: pointer;
  box-shadow:
    0 0 0 18px rgba(0, 231, 242, 0.022),
    0 0 72px rgba(0, 231, 242, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.core-button::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px dashed rgba(0, 231, 242, 0.24);
  border-radius: 50%;
  animation: orbit-spin 21s linear infinite reverse;
}

.core-button:hover,
.core-button:focus-visible {
  transform: translate(-50%, -50%) scale(1.045);
  border-color: var(--proof);
  box-shadow:
    0 0 0 21px rgba(0, 231, 242, 0.03),
    0 0 90px rgba(0, 231, 242, 0.28);
}

.core-button small,
.core-button span {
  color: var(--accent);
  font: 650 7px/1.3 ui-monospace, monospace;
  letter-spacing: 0.16em;
}

.core-button strong {
  margin: 9px 0;
  font: 750 20px/0.98 "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.02em;
}

.galaxy-point {
  position: absolute;
  z-index: 6;
  width: 154px;
  min-height: 76px;
  padding: 11px 12px;
  border: 1px solid rgba(0, 231, 242, 0.2);
  border-radius: 7px;
  background: rgba(5, 11, 17, 0.88);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.galaxy-point::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 231, 242, 0.45), transparent);
  transform-origin: left center;
}

.galaxy-point:hover,
.galaxy-point:focus-visible,
.galaxy-point[aria-expanded="true"] {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: rgba(6, 25, 33, 0.94);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(0, 231, 242, 0.1);
}

.galaxy-point > b {
  color: var(--proof);
  font: 700 7px/1 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.galaxy-point > strong {
  display: block;
  margin-top: 8px;
  font: 750 10px/1.2 ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.galaxy-point > small {
  display: block;
  margin-top: 5px;
  color: #6f838e;
  font-size: 8px;
}

.point-1 {
  top: 12%;
  left: 7%;
}

.point-1::before {
  top: 64%;
  left: calc(100% + 3px);
  transform: rotate(18deg);
}

.point-2 {
  top: 8%;
  right: 7%;
}

.point-2::before {
  top: 70%;
  right: calc(100% + 3px);
  transform: rotate(158deg);
}

.point-3 {
  top: 44%;
  left: 2%;
}

.point-3::before {
  top: 50%;
  left: calc(100% + 3px);
}

.point-4 {
  top: 44%;
  right: 2%;
}

.point-4::before {
  top: 50%;
  right: calc(100% + 3px);
  transform: rotate(180deg);
}

.point-5 {
  bottom: 9%;
  left: 10%;
}

.point-5::before {
  bottom: 65%;
  left: calc(100% + 3px);
  transform: rotate(-20deg);
}

.point-6 {
  right: 10%;
  bottom: 9%;
}

.point-6::before {
  right: calc(100% + 3px);
  bottom: 65%;
  transform: rotate(-160deg);
}

.stage-foot {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 17px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: #526975;
  font: 650 7px/1 ui-monospace, monospace;
  letter-spacing: 0.13em;
}

.proof-rail {
  width: 100%;
  max-width: 1460px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-rail span {
  padding: 15px;
  border-right: 1px solid var(--line);
  color: #81949e;
  font: 650 8px/1.4 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.proof-rail span:last-child {
  border-right: 0;
}

.proof-rail b {
  margin-right: 12px;
  color: var(--accent);
  font-weight: 650;
}

.detail-drawer {
  position: fixed;
  top: calc(var(--header) + 18px);
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: min(510px, calc(100vw - 40px));
  padding: 26px;
  transform: translateX(calc(100% + 40px));
  border: 1px solid var(--line-hot);
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(0, 231, 242, 0.1),
      transparent 28%
    ),
    rgba(4, 10, 16, 0.97);
  box-shadow: -28px 30px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
  overflow: auto;
  visibility: hidden;
  transition:
    transform 330ms cubic-bezier(0.22, 0.8, 0.22, 1),
    visibility 330ms linear;
}

.detail-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.drawer-top > span {
  color: #6a808b;
  font: 650 8px/1 ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.drawer-close {
  min-width: 44px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  color: #8ba0aa;
  cursor: pointer;
  font: 700 8px/1 ui-monospace, monospace;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  border-color: var(--accent);
  color: #fff;
  background: rgba(0, 231, 242, 0.05);
}

.js .galaxy-detail {
  display: none;
}

.js .galaxy-detail.is-active {
  display: block;
}

.galaxy-detail {
  padding-top: 42px;
  animation: panel-in 360ms ease both;
}

.galaxy-detail > small {
  color: var(--accent);
  font: 700 8px/1 ui-monospace, monospace;
  letter-spacing: 0.16em;
}

.galaxy-detail h2 {
  margin: 18px 0 17px;
  font: 620 clamp(33px, 3vw, 46px)/1.02 "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.04em;
}

.galaxy-detail > p {
  margin: 0;
  color: #91a4ad;
  font-size: 14px;
  line-height: 1.72;
}

.galaxy-detail ul {
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.galaxy-detail li {
  position: relative;
  padding: 13px 0 13px 23px;
  border-top: 1px solid var(--line);
  color: #aebdc4;
  font-size: 12px;
}

.galaxy-detail li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--proof);
  box-shadow: 0 0 10px rgba(183, 255, 122, 0.5);
}

.point-detail-link {
  width: 100%;
  margin-top: 34px;
  justify-content: space-between;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  border: 0;
  background: rgba(0, 2, 4, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.detail-hero {
  min-height: 92svh;
  padding: calc(var(--header) + 95px) max(32px, calc((100vw - 1320px) / 2))
    80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.detail-hero-inner {
  width: 100%;
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.7fr);
  gap: clamp(45px, 9vw, 145px);
  align-items: center;
}

.detail-hero h1 {
  max-width: 880px;
}

.detail-hero-copy > p {
  max-width: 670px;
  margin: 0;
  color: #96a9b3;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.72;
}

.detail-system-card {
  position: relative;
  min-height: 520px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(0, 231, 242, 0.11),
      transparent 32%
    ),
    rgba(6, 13, 20, 0.66);
  overflow: hidden;
}

.detail-system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 231, 242, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(0, 231, 242, 0.035) 1px,
      transparent 1px
    );
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000, transparent 76%);
}

.system-flow {
  position: absolute;
  inset: 72px 30px 58px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  align-items: center;
}

.system-flow article {
  position: relative;
  z-index: 2;
  padding: 12px 15px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 231, 242, 0.16);
  border-radius: 6px;
  background: rgba(3, 9, 14, 0.82);
}

.system-flow article::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 24px;
  background: linear-gradient(var(--accent), transparent);
}

.system-flow article:last-child::after {
  display: none;
}

.system-flow b {
  color: var(--proof);
  font: 700 8px/1 ui-monospace, monospace;
}

.system-flow strong {
  font: 750 10px/1 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.system-flow small {
  color: #647b86;
  font-size: 8px;
}

.content-section {
  padding: 140px max(32px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: 100%;
  max-width: 1320px;
  margin: auto;
}

.section-head {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  gap: clamp(48px, 10vw, 155px);
  align-items: end;
}

.section-head h2,
.contact-copy h2 {
  margin: 22px 0 0;
  font: 590 clamp(42px, 5vw, 72px)/1.02 "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-head > p {
  margin: 0 0 4px;
  color: #8fa2ac;
  font-size: 16px;
  line-height: 1.78;
}

.pipeline-grid,
.method-grid,
.deploy-grid,
.price-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.pipeline-card,
.method-card,
.deploy-card,
.price-card {
  position: relative;
  min-height: 390px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: linear-gradient(
    150deg,
    rgba(10, 21, 31, 0.78),
    rgba(4, 9, 14, 0.68)
  );
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.pipeline-card:hover,
.method-card:hover,
.deploy-card:hover,
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-hot);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font: 700 8px/1 ui-monospace, monospace;
  letter-spacing: 0.13em;
}

.card-meta small {
  color: #617783;
  font: inherit;
}

.card-visual {
  position: relative;
  height: 118px;
  margin: 29px 0 23px;
  border-top: 1px solid rgba(0, 231, 242, 0.08);
  border-bottom: 1px solid rgba(0, 231, 242, 0.08);
}

.card-visual span {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 231, 242, 0.26);
  transform: rotate(45deg);
}

.card-visual span:nth-child(1) {
  top: 38px;
  left: 22%;
}

.card-visual span:nth-child(2) {
  top: 38px;
  left: 44%;
  border-color: rgba(183, 255, 122, 0.4);
}

.card-visual span:nth-child(3) {
  top: 38px;
  left: 66%;
}

.pipeline-card h3,
.method-card h3,
.deploy-card h3,
.price-card h3 {
  margin: 0 0 12px;
  font: 650 23px/1.1 "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.025em;
}

.pipeline-card p,
.method-card p,
.deploy-card p,
.price-card p {
  margin: 0;
  color: #899ca6;
  font-size: 13px;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 8px;
  border: 1px solid rgba(0, 231, 242, 0.12);
  border-radius: 4px;
  color: #8097a2;
  font: 650 8px/1 ui-monospace, monospace;
}

.details-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.details-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 14, 21, 0.72);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.details-grid details[open] {
  border-color: var(--line-hot);
  background: rgba(7, 24, 32, 0.84);
}

.details-grid summary {
  position: relative;
  min-height: 90px;
  padding: 22px 58px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  list-style: none;
}

.details-grid summary::-webkit-details-marker {
  display: none;
}

.details-grid summary small {
  color: var(--accent);
  font: 700 8px/1 ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.details-grid summary strong {
  margin-top: 10px;
  font-size: 18px;
}

.details-grid summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  color: var(--accent);
  font: 400 23px/1 ui-monospace, monospace;
}

.details-grid details[open] summary::after {
  content: "−";
}

.detail-body {
  padding: 0 22px 24px;
}

.detail-body p {
  margin: 0;
  color: #8c9fa9;
  font-size: 13px;
  line-height: 1.72;
}

.detail-body a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.method-grid {
  grid-template-columns: repeat(4, 1fr);
}

.method-card {
  min-height: 330px;
}

.method-card > b {
  display: block;
  margin: 42px 0 25px;
  color: rgba(0, 231, 242, 0.2);
  font: 550 74px/0.7 ui-monospace, monospace;
  letter-spacing: -0.08em;
}

.method-card > small {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 24px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--proof);
  font: 650 8px/1.4 ui-monospace, monospace;
}

.price-card {
  min-height: 440px;
}

.price-card.recommended {
  border-color: var(--line-hot);
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(0, 231, 242, 0.11),
      transparent 32%
    ),
    rgba(8, 21, 29, 0.9);
}

.price-value {
  display: block;
  margin: 38px 0 26px;
  color: var(--accent-2);
  font: 650 clamp(28px, 2.5vw, 38px)/1 "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.04em;
}

.price-value small {
  color: #637985;
  font: 650 8px/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.price-card > a {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.contact-section {
  padding: 150px max(32px, calc((100vw - 1320px) / 2));
  background:
    radial-gradient(
      circle at 15% 45%,
      rgba(0, 231, 242, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #030407, #050b11);
}

.contact-grid {
  width: 100%;
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(55px, 10vw, 150px);
  align-items: center;
}

.contact-copy > p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #91a3ad;
  font-size: 16px;
  line-height: 1.76;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line-hot);
  border-radius: 10px;
  background: rgba(7, 17, 25, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.contact-card > small {
  color: var(--accent);
  font: 700 8px/1 ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.contact-card h3 {
  margin: 19px 0 12px;
  font: 620 28px/1.08 "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.03em;
}

.contact-card p {
  margin: 0;
  color: #899da7;
  font-size: 13px;
}

.contact-card .button-primary {
  width: 100%;
  margin-top: 28px;
}

.site-footer {
  min-height: 150px;
  padding: 38px max(28px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 50px;
  align-items: start;
  border-top: 1px solid var(--line);
  background: #020305;
}

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

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 13px;
}

.footer-brand span {
  margin-top: 4px;
  color: #617681;
  font-size: 9px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 22px;
}

.site-footer nav a {
  color: #7d919b;
  font-size: 10px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--accent);
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #506671;
  font: 650 7px/1 ui-monospace, monospace;
  letter-spacing: 0.09em;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 0.76, 0.24, 1);
}

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

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --wrap: min(100% - 48px, 1120px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .main-nav {
    gap: 18px;
  }

  .hub-hero {
    padding-inline: 24px;
  }

  .hub-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 32px;
  }

  .galaxy-stage {
    min-height: 590px;
  }

  .galaxy-point {
    width: 138px;
  }

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

@media (max-width: 920px) {
  :root {
    --header: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    display: none;
  }

  .header-link {
    display: none;
  }

  .hub-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 62px);
  }

  .hub-grid,
  .detail-hero-inner,
  .section-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .galaxy-stage {
    min-height: 650px;
    max-width: 720px;
    width: 100%;
    margin: 18px auto 0;
  }

  .proof-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-rail span:nth-child(2) {
    border-right: 0;
  }

  .proof-rail span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .detail-drawer {
    top: calc(var(--header) + 10px);
    right: 10px;
    bottom: 10px;
    width: min(560px, calc(100vw - 20px));
  }

  .detail-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 78px);
  }

  .detail-system-card {
    min-height: 480px;
    max-width: 650px;
  }

  .content-section,
  .contact-section {
    padding-block: 100px;
  }

  .pipeline-grid,
  .deploy-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-card,
  .deploy-card,
  .price-card {
    min-height: auto;
  }

  .price-card {
    min-height: 410px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-meta {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --header: 64px;
  }

  .site-header {
    padding-inline: 15px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    display: none;
  }

  .language-link {
    min-height: 38px;
    padding-inline: 11px;
  }

  .hub-hero,
  .detail-hero,
  .content-section,
  .contact-section {
    padding-inline: 17px;
  }

  .hero-copy h1,
  .detail-hero h1 {
    font-size: clamp(42px, 13.5vw, 62px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
    justify-content: space-between;
  }

  .hub-instruction {
    display: none;
  }

  .galaxy-stage {
    min-height: auto;
    padding: 65px 13px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .orbit,
  .core-button::before,
  .galaxy-point::before,
  .stage-foot {
    display: none;
  }

  .core-button,
  .galaxy-point {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 74px;
    aspect-ratio: auto;
    transform: none;
    border-radius: 7px;
  }

  .core-button {
    order: -1;
    min-height: 112px;
  }

  .core-button:hover,
  .core-button:focus-visible,
  .galaxy-point:hover,
  .galaxy-point:focus-visible,
  .galaxy-point[aria-expanded="true"] {
    transform: translateY(-2px);
  }

  .galaxy-point {
    padding: 13px;
  }

  .galaxy-point > small {
    font-size: 9px;
  }

  .proof-rail {
    grid-template-columns: 1fr;
  }

  .proof-rail span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-rail span:last-child {
    border-bottom: 0;
  }

  .detail-drawer {
    padding: 20px;
  }

  .details-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .method-card {
    min-height: 315px;
  }

  .site-footer {
    padding-inline: 17px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
