:root {
  color-scheme: dark;
  --page: #080a0b;
  --surface: #101516;
  --surface-raised: #151b1c;
  --text: #f4f6f3;
  --muted: #9ca5a2;
  --faint: #68716f;
  --line: #293130;
  --line-strong: #394341;
  --accent: #66e5c4;
  --accent-strong: #35c9a7;
  --accent-ink: #06120f;
  --amber: #e2b454;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 11, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.wordmark img {
  display: block;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 30px;
}

.main-nav a {
  color: #c4cac8;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.nav-mobile-action {
  display: none;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid rgba(102, 229, 196, 0.45);
  border-radius: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  border-color: var(--accent);
  background: rgba(102, 229, 196, 0.08);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface-raised);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: var(--text);
  transition: transform 160ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  background: #090b0c;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  background: linear-gradient(90deg, rgba(8, 10, 11, 0.98) 0%, rgba(8, 10, 11, 0.82) 34%, rgba(8, 10, 11, 0.08) 70%);
}

.hero::after {
  background: linear-gradient(0deg, rgba(8, 10, 11, 0.74) 0%, rgba(8, 10, 11, 0) 36%);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-inner {
  padding-top: 108px;
  padding-bottom: 78px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  gap: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(102, 229, 196, 0.1);
}

.hero h1 {
  margin: 0;
  color: #f7f8f5;
  font-size: 88px;
  font-weight: 840;
  line-height: 0.94;
}

.hero-slogan {
  margin: 23px 0 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.2;
}

.hero-lead {
  max-width: 570px;
  margin: 20px 0 0;
  color: #adb5b2;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  gap: 22px;
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #7aebcf;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(12, 15, 16, 0.66);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #5b6663;
  background: rgba(21, 27, 28, 0.9);
}

.hero-status {
  display: flex;
  align-items: center;
  margin: 25px 0 0;
  gap: 8px;
  color: #87908d;
  font-size: 12px;
}

.hero-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c1011;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid > div {
  min-height: 116px;
  padding: 27px 32px;
  border-right: 1px solid var(--line);
}

.signal-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  margin-bottom: 7px;
  font-size: 15px;
}

.signal-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 108px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 90px;
}

.section-heading {
  max-width: 520px;
}

.section-heading .eyebrow {
  margin-bottom: 17px;
}

.section-heading h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 750;
  line-height: 1.12;
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-heading-wide {
  max-width: 680px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding: 27px 0 29px;
  border-top: 1px solid var(--line);
}

.feature-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.feature-list h3,
.platform-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.feature-list p,
.platform-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.platforms-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c1011;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 240px;
  padding: 30px 28px;
  gap: 19px;
  border-right: 1px solid var(--line);
}

.platform-item:last-child {
  border-right: 0;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(102, 229, 196, 0.4);
  border-radius: 6px;
  background: rgba(102, 229, 196, 0.09);
  color: var(--accent);
  font-size: 17px;
  font-weight: 800;
}

.platform-icon-windows {
  border-color: rgba(101, 170, 221, 0.42);
  background: rgba(101, 170, 221, 0.09);
  color: #7fc1ee;
}

.platform-item-neutral .platform-icon {
  border-color: var(--line-strong);
  background: var(--surface-raised);
  color: #c4cbc8;
}

.platform-state {
  margin: 1px 0 11px !important;
  color: var(--accent) !important;
  font-size: 11px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-item-neutral .platform-state {
  color: #aeb5b2 !important;
}

.launch-section {
  padding: 112px 0;
  background: #111617;
}

.launch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.launch-list {
  border-top: 1px solid var(--line-strong);
}

.launch-list > div {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 72px;
  gap: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.launch-list strong {
  font-size: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #515a58;
}

.status-ready {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(102, 229, 196, 0.08);
}

.status-progress {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(226, 180, 84, 0.08);
}

.status-label {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--page);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 104px;
  gap: 24px;
}

.wordmark-footer {
  justify-self: start;
  font-size: 15px;
}

.footer-inner p {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
}

.footer-inner p:last-child {
  justify-self: end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 450ms ease, transform 450ms ease;
}

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

@media (max-width: 980px) {
  .split-layout,
  .launch-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .section-heading {
    max-width: 680px;
  }

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

  .platform-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .site-header {
    height: 68px;
  }

  .header-inner {
    gap: 14px;
  }

  .header-action,
  .main-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    display: flex;
    margin-left: auto;
  }

  .main-nav.is-open {
    position: fixed;
    display: flex;
    align-items: stretch;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    margin: 0;
    padding: 28px 18px;
    gap: 0;
    background: rgba(8, 10, 11, 0.98);
  }

  .main-nav.is-open a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 10px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .main-nav.is-open .nav-mobile-action {
    justify-content: center;
    min-height: 50px;
    margin-top: 24px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 14px;
  }

  .hero {
    align-items: flex-end;
    min-height: 88svh;
    padding-top: 286px;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(8, 10, 11, 1) 0%, rgba(8, 10, 11, 0.94) 50%, rgba(8, 10, 11, 0.12) 84%);
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(8, 10, 11, 0.08), rgba(8, 10, 11, 0));
  }

  .hero-media {
    height: 340px;
    bottom: auto;
    object-position: 70% center;
  }

  .hero-inner {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-slogan {
    margin-top: 16px;
    font-size: 23px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .hero-status {
    margin-top: 20px;
  }

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

  .signal-grid > div,
  .signal-grid > div:first-child {
    min-height: 86px;
    padding: 20px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .section,
  .launch-section {
    padding: 76px 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .feature-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .platform-grid {
    margin-top: 38px;
  }

  .platform-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 25px 0;
    gap: 16px;
  }

  .platform-icon {
    width: 42px;
    height: 42px;
  }

  .launch-list > div {
    grid-template-columns: 12px minmax(0, 1fr);
    padding: 14px 0;
  }

  .status-label {
    grid-column: 2;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    min-height: 116px;
  }

  .footer-inner > p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 260px;
  }

  .hero-media {
    height: 312px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-slogan {
    font-size: 21px;
  }
}

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

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

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