:root {
  color-scheme: dark;
  --bg: #031226;
  --bg-deep: #020a18;
  --panel: rgba(9, 35, 76, 0.72);
  --panel-strong: rgba(11, 44, 92, 0.9);
  --line: rgba(112, 189, 255, 0.26);
  --line-soft: rgba(117, 202, 255, 0.13);
  --text: #f5f9ff;
  --muted: #a8bdd7;
  --blue: #3b8cff;
  --blue-2: #67c2ff;
  --cyan: #31d6df;
  --purple: #656dff;
  --ink: #020713;
  --glass-edge: rgba(172, 225, 255, 0.26);
  --shadow-blue: rgba(0, 42, 108, 0.34);
  --card-radius: 8px;
  --font-display: "DIN Alternate", "Arial Narrow", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-body: "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "SFMono-Regular", "Cascadia Code", "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 8%, rgba(45, 126, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 28%, rgba(38, 215, 229, 0.13), transparent 24rem),
    linear-gradient(180deg, #020815 0%, #03162e 48%, #020d20 100%);
  font-family: var(--font-body);
  letter-spacing: 0;
  text-rendering: geometricprecision;
  font-variant-numeric: tabular-nums;
}

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 80;
  padding: 10px 14px;
  border: 1px solid rgba(124, 213, 255, 0.58);
  border-radius: 6px;
  background: rgba(3, 19, 45, 0.96);
  box-shadow: 0 14px 34px rgba(0, 33, 84, 0.38);
  color: #f7fbff;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(122, 194, 255, 0.86) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.4px);
  background-position:
    0 0,
    42px 28px;
  background-size:
    118px 118px,
    184px 184px;
  opacity: 0.34;
  content: "";
}

.site-shell::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1.4px),
    radial-gradient(ellipse at 50% 22%, transparent 0 18%, rgba(2, 9, 24, 0.35) 52%, rgba(2, 8, 20, 0.92) 100%),
    linear-gradient(180deg, transparent 0%, rgba(1, 8, 20, 0.5) 64%, rgba(1, 8, 20, 0.9) 100%);
  background-size:
    auto,
    5px 5px,
    auto,
    auto;
  opacity: 0.96;
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 70px);
  border-bottom: 1px solid rgba(132, 203, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(4, 15, 35, 0.9), rgba(2, 10, 26, 0.76)),
    rgba(2, 10, 26, 0.82);
  box-shadow: 0 18px 44px rgba(0, 25, 70, 0.3);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 258px;
}

.brand-icon {
  position: relative;
  display: inline-grid;
  width: 62px;
  height: 44px;
  place-items: center;
}

.brand-icon::before {
  position: absolute;
  inset: 4px 2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 154, 255, 0.34), transparent 68%);
  filter: blur(4px);
  content: "";
}

.brand-icon img {
  position: relative;
  width: 58px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(46, 177, 255, 0.75));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 27px;
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 1;
}

.brand-copy small {
  color: #93b9dc;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  flex: 1;
  color: rgba(238, 247, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  border-bottom: 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(105, 207, 255, 0.95), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.42);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: #ffffff;
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 44px;
  border: 1px solid rgba(124, 200, 255, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #1f73f0, #4ab6f5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(52, 142, 255, 0.46);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(186, 235, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.26),
    0 0 32px rgba(59, 160, 255, 0.48);
  outline: none;
  transform: translateY(-1px);
}

.header-cta:active {
  transform: translateY(0) scale(0.985);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(720px, calc(100vh - 76px));
  padding: clamp(52px, 6vw, 84px) clamp(22px, 5vw, 70px) clamp(34px, 5vw, 56px);
  overflow: hidden;
  border-bottom: 1px solid rgba(71, 158, 255, 0.28);
  isolation: isolate;
  text-align: center;
}

.hero-code::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 45%, rgba(2, 10, 25, 0.18) 0 11rem, rgba(2, 10, 25, 0.62) 27rem, rgba(2, 8, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(2, 10, 25, 0.78), transparent 24%, transparent 76%, rgba(2, 10, 25, 0.78));
  content: "";
  pointer-events: none;
}

.hero-code::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(2, 10, 24, 0.86));
  content: "";
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(65, 180, 255, 0.34), transparent 17rem),
    radial-gradient(circle at 18% 26%, rgba(61, 131, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 32%, rgba(37, 218, 229, 0.15), transparent 19rem),
    linear-gradient(180deg, rgba(1, 7, 19, 0.18), rgba(1, 8, 20, 0.78));
}

.code-rain {
  position: absolute;
  inset: -22% -9%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(9, minmax(94px, 1fr));
  gap: clamp(18px, 2.8vw, 46px);
  overflow: hidden;
  opacity: 0.78;
  transform: skewX(-6deg);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000000 11%, #000000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000000 11%, #000000 88%, transparent 100%);
  pointer-events: none;
}

.rain-column {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.9vw, 24px);
  min-width: 0;
  color: rgba(91, 214, 255, 0.54);
  font-family: "SFMono-Regular", "Cascadia Code", "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  text-shadow:
    0 0 10px rgba(55, 192, 255, 0.8),
    0 0 24px rgba(43, 118, 255, 0.45);
  animation: code-rain-fall 13s linear infinite;
}

.rain-column:nth-child(2n) {
  color: rgba(104, 149, 255, 0.48);
  animation-duration: 16s;
  animation-delay: -7s;
}

.rain-column:nth-child(3n) {
  color: rgba(48, 232, 227, 0.52);
  animation-duration: 18s;
  animation-delay: -11s;
}

.rain-column:nth-child(4n) {
  opacity: 0.62;
  animation-duration: 11s;
  animation-delay: -4s;
}

.rain-column span {
  display: block;
  min-width: max-content;
  opacity: 0.5;
  white-space: nowrap;
}

.rain-column span:nth-child(2n) {
  opacity: 0.76;
}

.rain-column span:nth-child(5n) {
  color: rgba(226, 246, 255, 0.72);
  opacity: 0.9;
}

.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(99, 216, 255, 0.16) 48%, transparent 56%),
    repeating-linear-gradient(180deg, rgba(118, 213, 255, 0.08) 0 1px, transparent 1px 9px);
  mix-blend-mode: screen;
  opacity: 0.56;
  animation: hero-scan-pass 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-center {
  display: grid;
  justify-items: center;
  width: min(100%, 1080px);
}

.hero-logo-mark {
  display: grid;
  width: clamp(68px, 7vw, 94px);
  height: clamp(50px, 5.2vw, 70px);
  margin-bottom: 14px;
  place-items: center;
  border: 1px solid rgba(113, 205, 255, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(54, 180, 255, 0.22), transparent 68%),
    rgba(5, 24, 57, 0.46);
  box-shadow:
    inset 0 0 30px rgba(69, 180, 255, 0.1),
    0 0 40px rgba(50, 156, 255, 0.3);
}

.hero-logo-mark img {
  width: 82%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(72, 198, 255, 0.72));
}

.eyebrow {
  margin: 0 0 18px;
  color: #91caff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-shadow: 0 0 20px rgba(70, 169, 255, 0.75);
}

.hero h1 {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(56px, 8vw, 122px);
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(118, 220, 255, 0.42),
    0 0 56px rgba(58, 132, 255, 0.4);
}

.hero h1::first-letter {
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 small {
  display: block;
}

.hero h1 span {
  background: linear-gradient(180deg, #ffffff 0%, #dff5ff 34%, #78d9ff 72%, #2e82ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 small {
  color: #e9f7ff;
  font-size: clamp(30px, 4.8vw, 62px);
  font-weight: 950;
  line-height: 1.12;
}

.hero-tagline {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.8vw, 38px);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.32;
  text-shadow: 0 0 26px rgba(45, 174, 255, 0.44);
}

.hero-lead {
  max-width: 860px;
  margin: 18px auto 0;
  color: #b8cee9;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.hero-product-dock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1020px);
  margin-top: 22px;
}

.hero-product-dock a {
  display: grid;
  gap: 7px;
  min-height: 78px;
  padding: 14px 18px;
  border: 1px solid rgba(109, 200, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 31, 74, 0.76), rgba(5, 18, 44, 0.66)),
    radial-gradient(circle at 50% 0%, rgba(71, 179, 255, 0.16), transparent 58%);
  box-shadow: inset 0 0 24px rgba(72, 173, 255, 0.08);
  text-align: left;
}

.hero-product-dock a:hover,
.hero-product-dock a:focus-visible {
  border-color: rgba(94, 213, 255, 0.72);
  box-shadow:
    inset 0 0 30px rgba(72, 173, 255, 0.12),
    0 0 26px rgba(38, 153, 255, 0.2);
  outline: none;
}

.hero-product-dock strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

.hero-product-dock span {
  color: #a9c9e9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.button,
.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  transition:
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    opacity 220ms ease;
}

.button {
  min-width: 184px;
  min-height: 58px;
  padding: 0 24px;
  font-size: 18px;
}

.button.primary,
.download-button {
  border: 1px solid rgba(111, 203, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #1d6fed 0%, #46b7f5 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 26px rgba(38, 135, 255, 0.48);
  color: #ffffff;
}

.button.secondary,
.button.outline,
.download-button.ghost {
  border: 1px solid rgba(98, 185, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(8, 29, 66, 0.52);
  color: #dbeeff;
}

.button.cyan,
.download-button.cyan {
  background: linear-gradient(135deg, #16b6c8 0%, #35e0ed 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 28px rgba(33, 214, 226, 0.42);
}

.button.small {
  min-width: 134px;
  min-height: 48px;
  padding: 0 18px;
  font-size: 16px;
}

.button:hover,
.button:focus-visible,
.download-button:hover,
.download-button:focus-visible {
  border-color: rgba(174, 231, 255, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(0, 69, 148, 0.34),
    0 0 30px rgba(58, 171, 255, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.button:active,
.download-button:active {
  transform: translateY(0) scale(0.985);
}

.product-icon,
.capability-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #5e45ff, #2f86ff);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(83, 94, 255, 0.45);
}

.product-icon {
  width: 72px;
  height: 72px;
}

.product-icon::before,
.capability-icon::before {
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.agent-icon::before {
  content: "◌";
}

.video-icon {
  background: linear-gradient(135deg, #15b9c7, #2ce7ec);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(42, 222, 232, 0.42);
}

.video-icon::before {
  content: "▶";
  font-size: 30px;
}

.ide-icon::before {
  content: "</>";
  font-size: 24px;
}

.console-products strong {
  font-size: 18px;
}

.console-products small {
  color: #99b7d8;
  font-size: 13px;
}

.console-dashboard {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 14px;
  margin-top: 18px;
}

.line-chart,
.bar-chart,
.progress-orbit {
  display: flex;
  align-items: flex-end;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(105, 195, 255, 0.24);
  border-radius: 10px;
  background: rgba(4, 21, 50, 0.66);
}

.line-chart,
.bar-chart {
  gap: 11px;
}

.line-chart span,
.bar-chart span {
  flex: 1;
  min-width: 8px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #59d6ff, #176cff);
  box-shadow: 0 0 14px rgba(66, 174, 255, 0.55);
}

.progress-orbit {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  aspect-ratio: 1;
  margin: auto;
  background:
    radial-gradient(circle at center, rgba(20, 44, 82, 0.92) 0 52%, transparent 53%),
    conic-gradient(#29d9e5 0 85%, rgba(91, 150, 210, 0.24) 85% 100%);
}

.progress-orbit strong {
  font-size: 25px;
}

.progress-orbit small {
  color: #91b4d3;
  font-size: 11px;
}

.section {
  padding: 44px clamp(22px, 4vw, 48px) 68px;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 26px;
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(84, 187, 255, 0.95), transparent);
}

.section-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 44px);
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(56, 168, 255, 0.4);
  text-wrap: balance;
}

.section-intro {
  max-width: 860px;
  margin: -10px auto 30px;
  color: #aecaeb;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
  gap: clamp(18px, 2vw, 28px);
  max-width: 1360px;
  margin: 0 auto;
}

.product-card,
.capability-grid article,
.download-card {
  position: relative;
  border: 1px solid rgba(138, 205, 255, 0.26);
  border-radius: var(--card-radius);
  background:
    linear-gradient(145deg, rgba(13, 43, 87, 0.78), rgba(4, 17, 42, 0.9)),
    radial-gradient(circle at 14% 0%, rgba(73, 116, 255, 0.18), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 46px rgba(65, 157, 255, 0.08),
    0 22px 54px var(--shadow-blue);
  overflow: hidden;
}

.product-card::before,
.capability-grid article::before,
.download-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      360px circle at var(--pointer-x, 22%) var(--pointer-y, 0%),
      rgba(125, 221, 255, 0.18),
      transparent 42%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.product-card:hover::before,
.capability-grid article:hover::before,
.download-card:hover::before {
  opacity: 1;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: clamp(22px, 2vw, 30px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.product-card:hover {
  border-color: rgba(150, 224, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 52px rgba(65, 157, 255, 0.1),
    0 28px 64px rgba(0, 42, 112, 0.42);
  transform: translateY(-3px);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.director-card {
  background:
    linear-gradient(145deg, rgba(7, 59, 84, 0.84), rgba(4, 22, 47, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(27, 205, 216, 0.2), transparent 34%);
}

.ide-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  grid-template-areas:
    "head copy"
    "preview depth"
    "preview features"
    "tags features"
    "actions platforms";
  gap: 18px clamp(22px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(9, 38, 82, 0.84), rgba(4, 17, 42, 0.91)),
    radial-gradient(circle at 88% 0%, rgba(99, 109, 255, 0.18), transparent 34%);
}

.ide-card .product-head {
  grid-area: head;
}

.ide-card .product-preview {
  grid-area: preview;
  height: clamp(280px, 28vw, 360px);
  margin: 0;
}

.ide-card .product-copy {
  grid-area: copy;
  align-self: end;
}

.ide-card .product-depth {
  grid-area: depth;
}

.ide-card .feature-list {
  grid-area: features;
}

.ide-card .scenario-tags {
  grid-area: tags;
  align-self: start;
}

.ide-card .product-actions {
  grid-area: actions;
}

.ide-card .platforms {
  grid-area: platforms;
  align-self: end;
  justify-self: end;
  margin-top: 0;
}

.product-head,
.download-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-head h3,
.download-head h3,
.capability-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2vw, 31px);
  font-family: var(--font-display);
  line-height: 1.2;
  text-wrap: balance;
}

.product-head p,
.download-head p {
  margin: 8px 0 0;
  color: #88b3dc;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-wrap: pretty;
}

.product-preview {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  height: 210px;
  margin: 24px 0 20px;
  padding: 12px;
  border: 1px solid rgba(127, 204, 255, 0.24);
  border-radius: 8px;
  background: rgba(4, 20, 49, 0.76);
  overflow: hidden;
}

.product-preview.image-preview {
  display: block;
  height: 230px;
  padding: 0;
  border-color: rgba(151, 218, 255, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(78, 192, 255, 0.18), transparent 58%),
    rgba(4, 20, 49, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(82, 184, 255, 0.1),
    0 16px 34px rgba(0, 38, 96, 0.25);
}

.product-preview.image-preview::after {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 50% 18%, transparent 0 36%, rgba(1, 10, 26, 0.28) 100%);
  content: "";
  pointer-events: none;
}

.product-preview.image-preview img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.01);
}

.product-copy {
  margin: 0 0 20px;
  color: #c1d4ea;
  font-size: 15px;
  line-height: 1.8;
  text-wrap: pretty;
}

.product-depth {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.product-layer {
  padding: 14px 15px;
  border: 1px solid rgba(133, 206, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 18, 45, 0.54);
  box-shadow: inset 0 0 20px rgba(64, 163, 255, 0.06);
}

.product-layer span {
  display: block;
  margin-bottom: 7px;
  color: #79dfff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.3;
}

.product-layer p {
  margin: 0;
  color: #c8d9ee;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: #d5e5f8;
  font-size: 14px;
  line-height: 1.66;
}

.feature-list.feature-list-deep {
  gap: 10px;
}

.feature-list li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b4cff, #2b94ff);
  color: #ffffff;
  font-size: 11px;
  content: "✓";
}

.director-card .feature-list li::before {
  background: linear-gradient(135deg, #15b9c7, #2ce7ec);
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.scenario-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(128, 204, 255, 0.2);
  border-radius: 6px;
  background: rgba(5, 28, 65, 0.6);
  color: #b9d8f3;
  font-size: 12px;
  font-weight: 800;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.platforms {
  margin: 14px 0 0;
  color: #8daed0;
  font-size: 14px;
  text-align: center;
}

.capability-section {
  padding-top: 12px;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr 0.92fr 1.08fr;
  gap: 18px;
  max-width: 1350px;
  margin: 0 auto;
}

.capability-grid article {
  min-height: 196px;
  padding: 24px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.capability-grid article:hover {
  border-color: rgba(150, 224, 255, 0.42);
  transform: translateY(-2px);
}

.capability-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}

.cube-icon::before {
  content: "◇";
}

.target-icon {
  background: linear-gradient(135deg, #12aab7, #2be2ef);
}

.target-icon::before {
  content: "◎";
}

.team-icon::before {
  content: "●●";
  font-size: 21px;
}

.rocket-icon::before {
  content: "↑";
}

.capability-grid p {
  margin: 12px 0 0;
  color: #b5cce8;
  font-size: 15px;
  line-height: 1.7;
  text-wrap: pretty;
}

.download-section {
  padding-bottom: 44px;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 18px;
  max-width: 1350px;
  margin: 0 auto;
}

.download-card {
  min-height: 218px;
  padding: 24px;
  transition:
    border-color 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.download-card:hover {
  border-color: rgba(150, 224, 255, 0.42);
  transform: translateY(-2px);
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.download-button {
  min-height: 46px;
  padding: 0 12px;
  font-size: 14px;
}

.download-button.is-pending {
  cursor: not-allowed;
  opacity: 0.58;
}

.download-note {
  margin: 24px 0 0;
  color: #8eaed0;
  font-size: 14px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(220px, 0.86fr) minmax(120px, 0.42fr) minmax(220px, 0.72fr);
  gap: 32px;
  padding: 42px clamp(22px, 4vw, 52px);
  border-top: 1px solid rgba(91, 174, 255, 0.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(57, 143, 255, 0.12), transparent 34%),
    rgba(2, 10, 26, 0.9);
}

.footer-logo {
  min-width: 0;
  margin-bottom: 18px;
}

.footer-brand h2,
.footer-contact h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 18px;
}

.footer-brand p,
.footer-contact p,
.release-panel small {
  margin: 0;
  color: #9cb6d7;
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  gap: 12px;
  color: #cfe6ff;
  font-size: 14px;
}

.footer-nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.release-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(129, 202, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 31, 71, 0.72), rgba(4, 18, 42, 0.68)),
    radial-gradient(circle at 0% 0%, rgba(81, 190, 255, 0.15), transparent 50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.release-panel span {
  color: #f5fbff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
}

.home-page .hero {
  min-height: calc(100dvh - 76px);
}

.home-page .site-shell {
  background: #030914;
}

.home-page .site-shell::before,
.home-page .site-shell::after {
  opacity: 0;
}

.home-page .site-header {
  position: absolute;
  right: 0;
  left: 0;
  min-height: 88px;
  padding: 18px clamp(28px, 4.8vw, 70px);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.82), rgba(2, 8, 18, 0));
  box-shadow: none;
  backdrop-filter: none;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.83fr) minmax(520px, 1.17fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  min-height: 100dvh;
  padding: clamp(112px, 12vh, 142px) clamp(28px, 5vw, 86px) clamp(24px, 4vh, 42px);
  border-bottom: 0;
  background:
    radial-gradient(circle at 78% 45%, rgba(45, 138, 255, 0.32), transparent 18rem),
    radial-gradient(circle at 56% 60%, rgba(28, 157, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 12% 30%, rgba(26, 102, 212, 0.16), transparent 22rem),
    linear-gradient(180deg, #020715 0%, #031128 54%, #020711 100%);
  text-align: left;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 89% 27%, rgba(45, 117, 255, 0.44) 0 1px, transparent 2px),
    radial-gradient(circle at 73% 18%, rgba(178, 219, 255, 0.46) 0 1px, transparent 1.8px),
    radial-gradient(circle at 54% 34%, rgba(114, 178, 255, 0.34) 0 1px, transparent 1.6px),
    radial-gradient(circle at 82% 70%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1.5px),
    linear-gradient(105deg, rgba(2, 8, 18, 0.96) 0%, rgba(2, 8, 18, 0.62) 34%, rgba(2, 9, 22, 0.14) 62%, rgba(2, 8, 18, 0.36) 100%);
  background-size:
    190px 190px,
    260px 260px,
    170px 170px,
    230px 230px,
    auto;
  content: "";
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 69% 66%, rgba(42, 144, 255, 0.28) 0 12%, transparent 38%),
    radial-gradient(ellipse at 68% 74%, rgba(47, 140, 255, 0.2) 0 10%, transparent 36%),
    linear-gradient(180deg, transparent 0 62%, rgba(13, 65, 140, 0.2) 64%, rgba(1, 6, 16, 0.78) 100%);
  content: "";
  pointer-events: none;
}

.home-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 90% 38%, rgba(42, 126, 255, 0.62), transparent 15rem),
    radial-gradient(circle at 78% 16%, rgba(45, 172, 255, 0.18), transparent 16rem),
    radial-gradient(ellipse at 78% 49%, transparent 0 18rem, rgba(31, 99, 207, 0.12) 18.2rem, transparent 18.7rem),
    radial-gradient(ellipse at 84% 43%, transparent 0 12rem, rgba(50, 154, 255, 0.16) 12.1rem, transparent 12.5rem);
  opacity: 0.9;
  pointer-events: none;
}

.home-horizon {
  position: absolute;
  right: -8%;
  bottom: 12%;
  left: 30%;
  z-index: 1;
  height: 190px;
  border-top: 1px solid rgba(88, 178, 255, 0.5);
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(75, 179, 255, 0.34), transparent 40%),
    linear-gradient(180deg, rgba(34, 99, 195, 0.2), transparent 58%);
  transform: perspective(680px) rotateX(58deg);
  transform-origin: bottom;
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.hero-capability-bar {
  position: relative;
  z-index: 2;
}

.hero-copy {
  align-self: center;
  max-width: 660px;
  padding-top: 2vh;
}

.company-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 28px;
  padding: 0 30px;
  border: 1px solid rgba(91, 169, 255, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(14, 42, 83, 0.72), rgba(8, 27, 58, 0.42)),
    rgba(8, 26, 55, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 30px rgba(0, 32, 84, 0.26);
  color: #dcecff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.home-hero h1 {
  display: grid;
  gap: 10px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(76px, 7vw, 116px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.32),
    0 0 48px rgba(47, 138, 255, 0.36);
}

.home-hero h1 span,
.home-hero h1 em {
  display: block;
  font-style: normal;
}

.home-hero h1 span {
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 42%, #94c7ff 82%, #f7fbff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero h1 em {
  background: linear-gradient(180deg, #58b8ff 0%, #1977ff 54%, #0654df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero .hero-tagline {
  margin: 26px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 2.25vw, 35px);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.32;
  text-shadow: 0 0 24px rgba(58, 151, 255, 0.24);
}

.home-hero .hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #bdcce0;
  font-size: clamp(16px, 1.12vw, 19px);
  font-weight: 600;
  line-height: 1.9;
}

.home-hero .hero-actions {
  justify-content: flex-start;
  gap: 22px;
  margin-top: 38px;
}

.hero-explore::before,
.hero-download::before {
  margin-right: 10px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 900;
}

.hero-explore::before {
  content: ">>";
}

.hero-download::before {
  content: "v";
}

.hero-visual {
  min-height: clamp(460px, 56vh, 650px);
  align-self: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(91, 171, 255, 0.42);
  border-radius: 50%;
  box-shadow:
    inset 0 0 30px rgba(78, 165, 255, 0.08),
    0 0 24px rgba(63, 152, 255, 0.18);
  opacity: 0.82;
  pointer-events: none;
}

.orbit-wide {
  top: 13%;
  right: 1%;
  width: min(720px, 78vw);
  height: min(390px, 42vw);
  transform: rotate(-7deg);
}

.orbit-high {
  top: 22%;
  right: 9%;
  width: min(560px, 58vw);
  height: min(310px, 34vw);
  transform: rotate(18deg);
  opacity: 0.46;
}

.orbit-node {
  position: absolute;
  z-index: 4;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7fdcff;
  box-shadow:
    0 0 0 4px rgba(42, 143, 255, 0.24),
    0 0 22px rgba(89, 205, 255, 0.95);
}

.node-a {
  top: 23%;
  left: 31%;
}

.node-b {
  top: 17%;
  right: 24%;
}

.node-c {
  top: 41%;
  right: 7%;
}

.product-orb {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "bubble name"
    "bubble desc";
  align-items: center;
  column-gap: 14px;
  color: #ffffff;
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.product-orb:hover,
.product-orb:focus-visible {
  outline: none;
  filter: brightness(1.1);
  transform: translateY(-3px) scale(1.02);
}

.orb-agent {
  top: 16%;
  left: 9%;
}

.orb-director {
  top: 17%;
  right: 4%;
}

.orb-ide {
  right: 1%;
  bottom: 25%;
}

.orb-bubble {
  position: relative;
  display: grid;
  grid-area: bubble;
  width: clamp(84px, 7.2vw, 114px);
  height: clamp(84px, 7.2vw, 114px);
  place-items: center;
  border: 1px solid rgba(155, 221, 255, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.46), transparent 18%),
    radial-gradient(circle at 50% 54%, rgba(52, 147, 255, 0.38), rgba(6, 27, 75, 0.82) 64%, rgba(5, 16, 46, 0.36) 100%);
  box-shadow:
    inset 0 0 24px rgba(152, 218, 255, 0.2),
    inset -10px -14px 32px rgba(1, 7, 26, 0.55),
    0 0 34px rgba(62, 156, 255, 0.48);
}

.orb-bubble::after {
  position: absolute;
  inset: 12px 16px auto;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.orb-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  color: #dff5ff;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
}

.agent-symbol::before {
  content: "AI";
  font-size: 20px;
}

.director-symbol::before {
  content: "▶";
}

.ide-symbol::before {
  content: "</>";
  font-size: 22px;
}

.product-orb strong {
  grid-area: name;
  align-self: end;
  color: #ffffff;
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 950;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(55, 146, 255, 0.52);
}

.product-orb small {
  grid-area: desc;
  align-self: start;
  margin-top: 5px;
  color: #afc9e8;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
}

.brand-core {
  position: absolute;
  right: 19%;
  bottom: 8%;
  z-index: 3;
  display: grid;
  width: min(470px, 45vw);
  height: min(370px, 37vw);
  place-items: center;
}

.core-beam {
  position: absolute;
  bottom: 19%;
  width: 46%;
  height: 56%;
  background: linear-gradient(180deg, rgba(115, 223, 255, 0), rgba(63, 171, 255, 0.64), rgba(255, 255, 255, 0.95));
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  opacity: 0.8;
}

.core-logo {
  position: absolute;
  top: 12%;
  display: grid;
  width: min(230px, 22vw);
  height: min(150px, 15vw);
  place-items: center;
  filter: drop-shadow(0 0 24px rgba(83, 192, 255, 0.86));
}

.core-logo::before {
  position: absolute;
  inset: -10%;
  background: url("./assets/stellar-leap-mark-light.png") center / contain no-repeat;
  content: "";
  opacity: 0.42;
  transform: perspective(520px) rotateX(8deg) rotateY(-12deg) scale(1.08);
}

.core-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.96;
  filter: brightness(1.35) saturate(1.28);
  transform: perspective(520px) rotateX(8deg) rotateY(-12deg);
}

.core-platform {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  height: 43%;
}

.core-platform span {
  position: absolute;
  display: block;
  border: 1px solid rgba(109, 191, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(82, 178, 255, 0.46), transparent 38%),
    linear-gradient(180deg, rgba(16, 70, 152, 0.72), rgba(2, 12, 34, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 34px rgba(68, 156, 255, 0.16),
    0 0 34px rgba(48, 143, 255, 0.36);
  transform: perspective(500px) rotateX(62deg);
}

.core-platform span:nth-child(1) {
  width: 100%;
  height: 62%;
  bottom: 0;
}

.core-platform span:nth-child(2) {
  width: 78%;
  height: 46%;
  bottom: 23%;
}

.core-platform span:nth-child(3) {
  width: 46%;
  height: 26%;
  bottom: 48%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.96), rgba(70, 201, 255, 0.68) 22%, transparent 58%),
    rgba(30, 126, 255, 0.44);
}

.hero-capability-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1360px);
  margin: clamp(6px, 2vh, 18px) auto 0;
  border: 1px solid rgba(114, 181, 255, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(14, 38, 78, 0.68), rgba(6, 18, 42, 0.76)),
    rgba(7, 24, 54, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 50px rgba(0, 28, 74, 0.3);
}

.hero-capability-bar article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 22px clamp(18px, 2vw, 34px);
}

.hero-capability-bar article + article {
  border-left: 1px solid rgba(117, 183, 255, 0.15);
}

.capability-mark {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(90, 178, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(55, 156, 255, 0.42), rgba(7, 33, 82, 0.82) 68%),
    rgba(6, 28, 68, 0.9);
  box-shadow:
    inset 0 0 22px rgba(96, 192, 255, 0.12),
    0 0 22px rgba(36, 128, 255, 0.34);
}

.capability-mark::before {
  color: #9ddfff;
  font-family: var(--font-mono);
  font-size: 25px;
  font-weight: 950;
  text-shadow: 0 0 14px rgba(96, 202, 255, 0.86);
}

.flash-mark::before {
  content: "↯";
}

.shield-mark::before {
  content: "◇";
}

.control-mark::before {
  content: "⌘";
}

.star-mark::before {
  content: "☆";
}

.hero-capability-bar strong {
  display: block;
  color: #ffffff;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 950;
  line-height: 1.22;
}

.hero-capability-bar small {
  display: block;
  margin-top: 8px;
  color: #a9bdd6;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 700;
  line-height: 1.45;
}

.detail-page .site-shell {
  overflow: clip;
}

.page-main {
  padding: clamp(34px, 4vw, 62px) clamp(20px, 4vw, 58px) 0;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  max-width: 1360px;
  min-height: min(720px, calc(100dvh - 150px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(138, 205, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 12%, rgba(78, 192, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 8% 92%, rgba(84, 105, 255, 0.14), transparent 25rem),
    linear-gradient(145deg, rgba(8, 31, 71, 0.76), rgba(2, 12, 30, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 56px rgba(65, 157, 255, 0.08),
    0 28px 70px rgba(0, 32, 84, 0.34);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(122, 218, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(122, 218, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.46;
  content: "";
  pointer-events: none;
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(1, 8, 21, 0.68));
  content: "";
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-kicker {
  margin: 0 0 14px;
  color: #8cd7ff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.cyan-text {
  color: #54edf1;
}

.page-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.3vw, 88px);
  font-weight: 950;
  line-height: 0.98;
  text-shadow:
    0 0 18px rgba(118, 220, 255, 0.34),
    0 0 48px rgba(58, 132, 255, 0.3);
  text-wrap: balance;
}

.page-subtitle {
  max-width: 720px;
  margin: 18px 0 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1.28;
  text-wrap: balance;
}

.page-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: #bdd2eb;
  font-size: clamp(16px, 1.28vw, 19px);
  font-weight: 600;
  line-height: 1.86;
  text-wrap: pretty;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-preview {
  position: relative;
  min-height: clamp(340px, 38vw, 520px);
  margin: 0;
  border: 1px solid rgba(151, 218, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(78, 192, 255, 0.18), transparent 58%),
    rgba(4, 20, 49, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 32px rgba(82, 184, 255, 0.1),
    0 22px 54px rgba(0, 38, 96, 0.32);
  overflow: hidden;
}

.page-preview img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
}

.detail-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(42px, 5vw, 76px) 0 0;
}

.detail-grid {
  display: grid;
  gap: 18px;
}

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

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

.detail-card,
.split-panel,
.page-cta-panel,
.download-status-panel {
  position: relative;
  border: 1px solid rgba(138, 205, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 43, 87, 0.72), rgba(4, 17, 42, 0.88)),
    radial-gradient(circle at 14% 0%, rgba(73, 116, 255, 0.16), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 54px rgba(0, 42, 108, 0.3);
}

.detail-card {
  min-height: 210px;
  padding: clamp(22px, 2.4vw, 32px);
}

.detail-card h3,
.split-panel h2,
.page-cta-panel h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 1.18;
  text-wrap: balance;
}

.detail-card h3 {
  margin-top: 16px;
  font-size: clamp(23px, 2vw, 30px);
}

.detail-card p,
.split-panel p,
.page-cta-panel p {
  margin: 14px 0 0;
  color: #bdd2eb;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.78;
  text-wrap: pretty;
}

.detail-index {
  display: inline-grid;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  place-items: center;
  border: 1px solid rgba(113, 205, 255, 0.38);
  border-radius: 6px;
  background: rgba(6, 31, 75, 0.74);
  color: #8cd7ff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
}

.cyan-index {
  border-color: rgba(74, 230, 237, 0.42);
  color: #54edf1;
}

.detail-capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
}

.split-panel::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 14%, rgba(67, 184, 255, 0.18), transparent 28rem),
    linear-gradient(90deg, transparent, rgba(87, 187, 255, 0.06));
  content: "";
  pointer-events: none;
}

.director-split-panel::before {
  background:
    radial-gradient(circle at 80% 14%, rgba(39, 227, 232, 0.18), transparent 28rem),
    linear-gradient(90deg, transparent, rgba(65, 232, 238, 0.06));
}

.split-panel > * {
  position: relative;
  z-index: 1;
}

.split-panel h2,
.page-cta-panel h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(128, 204, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 18, 45, 0.58);
  color: #d7e8f9;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.workflow-list span {
  color: #79dfff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
}

.page-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(42px, 5vw, 76px);
  padding: clamp(26px, 4vw, 46px);
}

.page-cta-panel > div {
  max-width: 780px;
}

.download-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  min-height: auto;
}

.download-status-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 260px;
  padding: 28px;
  text-align: center;
}

.download-status-panel span {
  color: #8cd7ff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
}

.download-status-panel strong {
  margin-top: 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(82px, 9vw, 128px);
  font-weight: 950;
  line-height: 0.9;
}

.download-status-panel p {
  max-width: 260px;
  margin: 16px 0 0;
  color: #aecaeb;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #9edcff;
  font-size: 14px;
  font-weight: 900;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.compact-footer {
  grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.42fr) minmax(220px, 0.72fr);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(126, 219, 255, 0.82);
  outline-offset: 4px;
}

.site-nav a:focus-visible,
.header-cta:focus-visible,
.button:focus-visible,
.download-button:focus-visible,
.footer-nav a:focus-visible {
  outline: 2px solid rgba(126, 219, 255, 0.82);
  outline-offset: 4px;
}

@keyframes code-rain-fall {
  0% {
    opacity: 0.34;
    transform: translateY(-18%);
  }

  18% {
    opacity: 0.82;
  }

  100% {
    opacity: 0.34;
    transform: translateY(28%);
  }
}

@keyframes hero-scan-pass {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(-16%);
  }

  48% {
    opacity: 0.62;
  }

  72% {
    transform: translateY(18%);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 22px;
  }

  .hero {
    min-height: auto;
  }

  .code-rain {
    grid-template-columns: repeat(7, minmax(100px, 1fr));
    inset: -18% -14%;
    opacity: 0.68;
  }

  .hero-product-dock {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .product-grid,
  .download-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    max-width: 720px;
  }

  .download-grid {
    max-width: 760px;
  }

  .product-card {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: relative;
    top: auto;
    flex-wrap: wrap;
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand-link {
    min-width: 0;
  }

  .brand-icon {
    width: 46px;
    height: 34px;
  }

  .brand-icon img {
    width: 44px;
    height: 30px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 18px;
    padding: 8px 0 0;
    overflow-x: auto;
    font-size: 13px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    min-width: 92px;
    min-height: 38px;
    margin-left: auto;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 42px 18px 34px;
  }

  .hero-code::before {
    background:
      radial-gradient(circle at 50% 40%, rgba(2, 10, 25, 0.08) 0 7rem, rgba(2, 10, 25, 0.72) 20rem, rgba(2, 8, 20, 0.9) 100%),
      linear-gradient(90deg, rgba(2, 10, 25, 0.82), transparent 30%, transparent 70%, rgba(2, 10, 25, 0.82));
  }

  .code-rain {
    inset: -16% -38%;
    grid-template-columns: repeat(5, minmax(112px, 1fr));
    gap: 22px;
    opacity: 0.5;
  }

  .hero h1 {
    gap: 6px;
    font-size: clamp(52px, 15.6vw, 68px);
    line-height: 0.98;
  }

  .hero h1 small {
    font-size: clamp(25px, 7.8vw, 34px);
  }

  .hero-logo-mark {
    width: 72px;
    height: 54px;
    margin-bottom: 14px;
  }

  .hero-tagline {
    margin-top: 16px;
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-product-dock {
    display: none;
  }

  .section {
    padding: 36px 22px 46px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .section-title span {
    width: 80px;
    margin: 0 auto;
  }

  .product-card,
  .download-card,
  .capability-grid article {
    padding: 18px;
  }

  .ide-card {
    display: flex;
    grid-column: auto;
  }

  .product-head,
  .download-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-preview {
    grid-template-columns: 46px 1fr;
    height: 152px;
    margin: 20px 0 18px;
  }

  .product-preview.image-preview {
    height: 176px;
  }

  .ide-card .product-preview {
    height: 176px;
    margin: 20px 0 18px;
  }

  .ide-card .platforms {
    align-self: auto;
    justify-self: auto;
    margin-top: 14px;
  }

  .product-copy,
  .product-layer p,
  .feature-list li {
    font-size: 14px;
  }

  .product-actions,
  .download-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .download-actions {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }
}

@media (max-width: 430px) {
  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .product-icon {
    width: 62px;
    height: 62px;
  }

  .product-icon::before {
    font-size: 29px;
  }

  .hero-product-dock span {
    font-size: 12px;
  }
}

@media (max-width: 1120px) {
  .home-page .hero {
    min-height: calc(100dvh - 76px);
  }

  .page-hero,
  .download-hero,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }

  .detail-grid.two-col,
  .detail-grid.three-col,
  .detail-capability-grid {
    grid-template-columns: 1fr;
  }

  .page-preview {
    min-height: 360px;
  }

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

@media (max-width: 760px) {
  .home-page .hero {
    min-height: calc(100dvh - 104px);
  }

  .page-main {
    padding: 22px 14px 0;
  }

  .page-hero {
    padding: 24px 18px;
  }

  .page-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  .page-subtitle {
    font-size: clamp(20px, 6vw, 27px);
  }

  .page-actions,
  .page-cta-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .page-preview {
    min-height: 232px;
  }

  .detail-section {
    padding-top: 42px;
  }

  .detail-card,
  .split-panel,
  .page-cta-panel,
  .download-status-panel {
    padding: 20px;
  }

  .workflow-list li {
    grid-template-columns: 44px 1fr;
  }

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

@media (max-width: 1180px) {
  .home-page .site-header {
    position: relative;
    background:
      linear-gradient(180deg, rgba(3, 10, 24, 0.94), rgba(3, 10, 24, 0.72)),
      rgba(3, 10, 24, 0.88);
  }

  .home-page .home-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding-top: clamp(42px, 5vw, 64px);
  }

  .home-hero .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 840px);
    min-height: 500px;
    margin: -16px auto 0;
  }

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

  .hero-capability-bar article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(117, 183, 255, 0.15);
  }

  .hero-capability-bar article:nth-child(4) {
    border-top: 1px solid rgba(117, 183, 255, 0.15);
  }
}

@media (min-width: 1181px) and (max-height: 800px) {
  .home-page .site-header {
    min-height: 76px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .home-hero {
    gap: 14px clamp(18px, 2.2vw, 36px);
    padding-top: 88px;
    padding-bottom: 20px;
  }

  .company-pill {
    min-height: 34px;
    margin-bottom: 16px;
    padding: 0 22px;
    font-size: 15px;
  }

  .home-hero h1 {
    gap: 4px;
    font-size: clamp(62px, 6.2vw, 92px);
    line-height: 0.92;
  }

  .home-hero .hero-tagline {
    margin-top: 17px;
    font-size: clamp(21px, 1.9vw, 28px);
  }

  .home-hero .hero-lead {
    max-width: 610px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.68;
  }

  .home-hero .hero-actions {
    gap: 16px;
    margin-top: 24px;
  }

  .home-hero .button {
    min-height: 50px;
    min-width: 170px;
    font-size: 16px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .brand-core {
    right: 18%;
    bottom: 3%;
    width: 390px;
    height: 300px;
  }

  .core-logo {
    width: 190px;
    height: 120px;
  }

  .orb-bubble {
    width: 82px;
    height: 82px;
  }

  .product-orb strong {
    font-size: 20px;
  }

  .product-orb small {
    font-size: 14px;
  }

  .hero-capability-bar article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    min-height: 88px;
    padding: 15px 16px;
  }

  .capability-mark {
    width: 46px;
    height: 46px;
  }

  .capability-mark::before {
    font-size: 20px;
  }

  .hero-capability-bar strong {
    font-size: 18px;
  }

  .hero-capability-bar small {
    margin-top: 4px;
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .home-page .site-header {
    position: relative;
  }

  .home-page .home-hero {
    min-height: auto;
    padding: 28px 18px 22px;
    gap: 22px;
  }

  .home-hero::before {
    background:
      radial-gradient(circle at 84% 28%, rgba(45, 117, 255, 0.42) 0 1px, transparent 2px),
      radial-gradient(circle at 72% 18%, rgba(178, 219, 255, 0.42) 0 1px, transparent 1.8px),
      linear-gradient(180deg, rgba(2, 8, 18, 0.48) 0%, rgba(2, 8, 18, 0.78) 52%, rgba(2, 8, 18, 0.92) 100%);
    background-size:
      160px 160px,
      230px 230px,
      auto;
  }

  .home-horizon {
    right: -52%;
    bottom: 23%;
    left: -12%;
    height: 130px;
  }

  .company-pill {
    min-height: 34px;
    margin-bottom: 20px;
    padding: 0 18px;
    font-size: 14px;
  }

  .home-hero h1 {
    gap: 5px;
    font-size: clamp(54px, 16vw, 70px);
  }

  .home-hero .hero-tagline {
    margin-top: 18px;
    font-size: clamp(20px, 5.5vw, 25px);
  }

  .home-hero .hero-lead {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.78;
  }

  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 24px;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 0;
  }

  .orbit-wide {
    top: 18%;
    right: -28%;
    width: 620px;
    height: 310px;
  }

  .orbit-high {
    top: 23%;
    right: -18%;
    width: 470px;
    height: 250px;
  }

  .brand-core {
    right: 8%;
    bottom: 0;
    width: 310px;
    height: 260px;
  }

  .core-logo {
    width: 150px;
    height: 96px;
  }

  .orb-bubble {
    width: 68px;
    height: 68px;
  }

  .orb-symbol {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .agent-symbol::before {
    font-size: 16px;
  }

  .ide-symbol::before {
    font-size: 17px;
  }

  .product-orb {
    column-gap: 9px;
  }

  .product-orb strong {
    font-size: 16px;
  }

  .product-orb small {
    font-size: 12px;
  }

  .orb-agent {
    top: 7%;
    left: 0;
  }

  .orb-director {
    top: 10%;
    right: 0;
  }

  .orb-ide {
    right: 2%;
    bottom: 23%;
  }

  .node-a {
    top: 25%;
    left: 24%;
  }

  .node-b {
    top: 20%;
    right: 24%;
  }

  .node-c {
    top: 46%;
    right: 4%;
  }

  .hero-capability-bar {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }

  .hero-capability-bar article {
    grid-template-columns: 52px 1fr;
    min-height: 88px;
    padding: 16px;
  }

  .hero-capability-bar article + article,
  .hero-capability-bar article:nth-child(3),
  .hero-capability-bar article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(117, 183, 255, 0.15);
  }

  .capability-mark {
    width: 46px;
    height: 46px;
  }

  .capability-mark::before {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rain-column,
  .hero-scan {
    animation: none;
  }
}
