:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #0d1118;
  --surface: rgba(18, 23, 32, 0.76);
  --surface-solid: #121720;
  --surface-light: #171d28;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f5f7;
  --text-soft: #b6becb;
  --text-dim: #7d8796;
  --accent: #ff5b4d;
  --accent-bright: #ff786d;
  --accent-soft: rgba(255, 91, 77, 0.13);
  --cool: #80bfff;
  --cool-soft: rgba(128, 191, 255, 0.12);
  --max-width: 1180px;
  --header-height: 78px;
  --radius-large: 30px;
  --radius-medium: 20px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 84% 4%, rgba(255, 91, 77, 0.09), transparent 28rem),
    radial-gradient(circle at 12% 40%, rgba(128, 191, 255, 0.06), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 40px), var(--max-width));
  height: var(--header-height);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 32%, #ffd4cf 0 2px, transparent 3px),
    radial-gradient(circle at 48% 52%, var(--accent-bright), #bd2e28 56%, #631b1c 100%);
  box-shadow: 0 0 32px rgba(255, 91, 77, 0.27);
}

.brand-mark::before {
  position: absolute;
  top: 14px;
  left: -5px;
  width: 42px;
  height: 8px;
  transform: rotate(-16deg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  content: "";
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

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

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  outline: none;
}

.nav-links .language-link {
  margin-left: 6px;
  border: 1px solid var(--line);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.menu-button span {
  margin: 4px 0;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-5px) rotate(-45deg);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  padding: 78px 0 90px;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(40px, 8vw, 110px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7.8vw, 102px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 .accent-word {
  color: var(--accent);
}

.hero-subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-legal-name {
  margin: 16px 0 0;
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #170b0a;
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
}

.button-arrow {
  font-size: 17px;
  line-height: 1;
}

.orbit-visual {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit-visual::before {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.orbit-visual::after {
  position: absolute;
  inset: 17%;
  transform: rotate(-28deg);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.orbit {
  position: absolute;
  inset: 7% -5%;
  transform: rotate(34deg);
  border: 1px solid rgba(255, 91, 77, 0.35);
  border-radius: 50%;
}

.orbit-secondary {
  inset: 20% 2%;
  transform: rotate(-52deg);
  border-color: rgba(128, 191, 255, 0.22);
}

.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 67% 30%, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 35%, #ff8e83, #c53c35 48%, #451319 100%);
  box-shadow:
    0 0 80px rgba(255, 91, 77, 0.18),
    inset -24px -28px 45px rgba(0, 0, 0, 0.38);
}

.planet::after {
  position: absolute;
  inset: 45% -32%;
  transform: rotate(-11deg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  content: "";
}

.signal {
  position: absolute;
  right: 3%;
  bottom: 17%;
  display: grid;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11, 14, 20, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.signal span {
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal strong {
  margin-top: 2px;
  font-size: 13px;
}

.section {
  padding: 116px 0;
}

.section-bordered {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  margin-bottom: 56px;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
}

.section-heading h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(35px, 4.8vw, 64px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading p {
  max-width: 660px;
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fact-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.fact-card .fact-index {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fact-card h3 {
  margin: 44px 0 8px;
  font-size: 21px;
  font-weight: 650;
}

.fact-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.product-card {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 85% 20%, rgba(128, 191, 255, 0.15), transparent 31%),
    linear-gradient(145deg, #141a24, #0d1016);
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.product-card::after {
  position: absolute;
  width: 390px;
  height: 390px;
  right: -80px;
  bottom: -190px;
  border: 1px solid rgba(255, 91, 77, 0.25);
  border-radius: 50%;
  content: "";
}

.status-pill {
  display: inline-flex;
  padding: 7px 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(128, 191, 255, 0.25);
  border-radius: 999px;
  background: var(--cool-soft);
  color: #b8d9ff;
  font-size: 12px;
  font-weight: 700;
}

.status-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cool);
  box-shadow: 0 0 12px var(--cool);
  content: "";
}

.product-card h3 {
  margin: 24px 0 14px;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.product-card-copy > p {
  max-width: 610px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.product-card .hero-actions {
  margin-top: 30px;
}

.media-stack {
  position: relative;
  min-height: 320px;
}

.media-panel {
  position: absolute;
  width: 72%;
  aspect-ratio: 0.72;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, #222a38, #10141c);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.media-panel:nth-child(1) {
  top: 0;
  left: 1%;
  transform: rotate(-8deg);
}

.media-panel:nth-child(2) {
  top: 8%;
  right: 2%;
  transform: rotate(8deg);
}

.media-panel:nth-child(3) {
  top: 19%;
  left: 14%;
  transform: rotate(-1deg);
}

.media-panel::before {
  display: block;
  width: 100%;
  height: 72%;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(128, 191, 255, 0.28), transparent 55%),
    linear-gradient(35deg, #202a3a, #6f3139);
  content: "";
}

.media-panel::after {
  display: block;
  width: 63%;
  height: 8px;
  margin-top: 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 0 rgba(255, 255, 255, 0.08);
  content: "";
}

.contact-panel {
  display: grid;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(255, 91, 77, 0.24);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 91, 77, 0.15), transparent 35%),
    var(--surface);
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-panel p {
  margin: 22px 0 0;
  color: var(--text-soft);
}

.contact-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(0, 0, 0, 0.18);
}

.contact-state span {
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-state strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(18px, 2vw, 24px);
}

.contact-state p {
  margin: 0;
  font-size: 13px;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: grid;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  align-items: flex-end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
}

.footer-name {
  display: grid;
}

.footer-name strong {
  font-size: 14px;
}

.footer-name span {
  margin-top: 6px;
}

.footer-name span,
.footer-meta,
.site-filings {
  color: var(--text-dim);
  font-size: 12px;
}

.footer-details {
  display: grid;
  grid-column: 2;
  gap: 0;
  justify-items: end;
  text-align: right;
}

.site-filings {
  display: grid;
  gap: 0;
  justify-items: end;
  text-align: right;
  white-space: nowrap;
}

.site-filings a {
  color: inherit;
  text-decoration: none;
}

.site-filings a:hover {
  color: var(--text);
}

.public-security-filing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.public-security-filing img {
  width: 16px;
  height: 18px;
  flex: none;
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  text-align: center;
}

.not-found-code {
  margin: 0;
  color: var(--accent);
  font-size: clamp(90px, 20vw, 210px);
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found h1 {
  margin: 28px 0 0;
  font-size: clamp(32px, 5vw, 56px);
}

.not-found p {
  margin: 12px auto 28px;
  color: var(--text-soft);
}

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

  .menu-button {
      display: grid;
    }

  .nav-links {
      position: absolute;
      top: calc(var(--header-height) - 1px);
      right: 20px;
      left: 20px;
      display: none;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(13, 17, 24, 0.97);
      box-shadow: var(--shadow);
    }

  .nav-links.is-open {
      display: grid;
    }

  .nav-links a {
      padding: 12px 14px;
    }

  .nav-links .language-link {
      margin: 4px 0 0;
    }

  .hero {
      min-height: auto;
      padding: 88px 0;
      grid-template-columns: 1fr;
    }

  .orbit-visual {
      width: min(80vw, 480px);
      justify-self: center;
    }

  .section-heading,
  .contact-panel {
      grid-template-columns: 1fr;
      gap: 28px;
    }

  .product-card {
      grid-template-columns: 1fr;
    }

  .media-stack {
      width: min(100%, 440px);
      margin: 20px auto 0;
    }
}

@media (max-width: 680px) {
  .nav-shell,
  .shell,
  .footer-shell {
      width: min(calc(100% - 28px), var(--max-width));
    }

  .brand-copy span {
      display: none;
    }

  .hero {
      padding: 68px 0 74px;
    }

  .hero h1 {
      font-size: clamp(48px, 15vw, 68px);
    }

  .orbit-visual {
      width: 94%;
    }

  .signal {
      right: -2%;
    }

  .section {
      padding: 82px 0;
    }

  .section-heading {
      margin-bottom: 38px;
    }

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

  .fact-card {
      min-height: 180px;
    }

  .fact-card h3 {
      margin-top: 30px;
    }

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

  .media-stack {
      min-height: 290px;
    }

  .contact-panel {
      padding: 30px 24px;
    }

  .footer-shell {
      align-items: flex-start;
      grid-template-columns: 1fr;
    }

  .footer-details {
      grid-column: 1;
      justify-self: end;
      text-align: right;
    }

  .site-filings {
      justify-items: end;
      text-align: right;
    }
}

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

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