:root {
  color-scheme: light;
  --black: #050608;
  --ink: #17181a;
  --muted: #666970;
  --soft: #f5f5f7;
  --white: #ffffff;
  --line: rgba(23, 24, 26, 0.13);
  --blue: #1677ff;
  --blue-dark: #0759c7;
  --amber: #ffb521;
  --green: #24a469;
  --red: #d93d46;
  --glass: rgba(249, 249, 251, 0.78);
  --dark-glass: rgba(17, 18, 21, 0.78);
  --content: 1180px;
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.1);
  --shadow-window: 0 30px 80px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

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

button {
  font: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}

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

.global-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 48px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(5, 6, 8, 0.46);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.global-header.scrolled {
  color: rgba(23, 24, 26, 0.94);
  background: var(--glass);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--content));
  height: 48px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  min-height: 38px;
  font-size: 14px;
  font-weight: 650;
}

.brand-link img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  background: #fff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  font-size: 12px;
}

.desktop-nav a,
.footer-links a {
  transition: opacity 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  opacity: 0.62;
}

.nav-download {
  justify-self: end;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 650;
  transition: transform 120ms ease, background 160ms ease;
}

.nav-download:hover {
  background: var(--blue-dark);
}

.nav-download:active,
.button:active,
.download-option:active,
.beta-dialog-close:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  height: min(88svh, 900px);
  overflow: hidden;
  color: #fff;
  background: #07080a;
  isolation: isolate;
}

.hero-visual,
.hero-visual img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual {
  z-index: -2;
}

.hero-visual img {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.76) brightness(0.54) contrast(1.12);
  transform: scale(1.015);
}

.hero-shade {
  z-index: -1;
  background: rgba(0, 0, 0, 0.34);
}

.hero-content {
  width: min(calc(100% - 48px), var(--content));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: 76px;
  line-height: 1.03;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 560;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 650;
  transition: transform 120ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
}

.button-primary:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.button-quiet {
  background: rgba(15, 16, 19, 0.34);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.button-quiet:hover {
  background: rgba(15, 16, 19, 0.62);
}

.hero-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.intro-band {
  padding: 116px 0 128px;
  overflow: hidden;
  background: var(--soft);
}

.intro-copy {
  max-width: 960px;
  text-align: center;
}

.section-kicker {
  color: var(--blue);
}

.intro-copy h2,
.section-heading h2,
.edge-copy h2,
.security-copy h2,
.download-layout h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 730;
  letter-spacing: 0;
}

.intro-copy > p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

.product-stage {
  width: min(calc(100% - 48px), 1320px);
  margin: 78px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #111216;
  box-shadow: var(--shadow-window);
}

.window-chrome {
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.58);
  background: #1d1e23;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-chrome > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6b6d74;
}

.window-chrome > span:first-child {
  background: #ff5f57;
}

.window-chrome > span:nth-child(2) {
  background: #febc2e;
}

.window-chrome > span:nth-child(3) {
  background: #28c840;
}

.window-chrome strong {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 550;
}

.product-stage-body {
  min-height: 640px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  color: rgba(255, 255, 255, 0.92);
}

.demo-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 24px 16px;
  background: #15161a;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.demo-sidebar img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.demo-sidebar i {
  width: 38px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.demo-sidebar i.active {
  background: var(--blue);
}

.demo-main {
  min-width: 0;
  padding: 26px;
  background: #0f1013;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.demo-toolbar div {
  display: grid;
  gap: 3px;
}

.demo-toolbar small,
.demo-metrics small,
.file-visual small,
.download-option small,
.footer-brand small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.demo-toolbar strong {
  font-size: 18px;
}

.demo-toolbar > span {
  padding: 7px 10px;
  border-radius: 7px;
  color: #8ed7b2;
  background: rgba(36, 164, 105, 0.13);
  border: 1px solid rgba(36, 164, 105, 0.3);
  font-size: 12px;
}

.demo-monitor {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border-radius: 7px;
  background: #25262b;
}

.demo-monitor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(7, 8, 10, 0.72);
  backdrop-filter: blur(12px);
  font-size: 11px;
}

.live-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.demo-metrics > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.demo-metrics strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.demo-progress {
  height: 5px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.demo-progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--green);
}

.demo-spools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.demo-spools span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-spools i {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.spool-white {
  background: #f1f1ed;
}

.spool-black {
  background: #202124;
}

.spool-blue {
  background: #2e7ae6;
}

.spool-red {
  background: #d5434d;
}

.feature-band {
  padding: 124px 0;
  background: #fff;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-item {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 36px;
  border-radius: 8px;
}

.feature-orders {
  grid-column: span 7;
  background: #edf5ff;
}

.feature-files {
  grid-column: span 5;
  color: #fff;
  background: #15171b;
}

.feature-shipping {
  grid-column: span 12;
  min-height: 370px;
  color: #1d1b17;
  background: #fff2d2;
}

.feature-copy {
  max-width: 560px;
}

.feature-index {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 720;
}

.feature-files .feature-index {
  color: #74adff;
}

.feature-shipping .feature-index {
  color: #9a6400;
}

.feature-copy h3,
.capability h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
}

.feature-copy p,
.capability p,
.edge-copy p,
.security-copy p,
.download-layout > div > p:last-child {
  margin: 16px 0 0;
  color: rgba(23, 24, 26, 0.64);
  font-size: 17px;
  line-height: 1.65;
}

.feature-files .feature-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.order-visual {
  display: grid;
  gap: 8px;
  margin-top: 42px;
}

.order-line {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(32, 77, 132, 0.06);
}

.order-line b,
.order-line span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-line span {
  color: #697381;
  font-size: 13px;
}

.order-line small {
  color: var(--blue-dark);
  font-weight: 650;
}

.order-line.urgent {
  color: #fff;
  background: #7c1821;
  border-color: #7c1821;
}

.order-line.urgent span,
.order-line.urgent small {
  color: rgba(255, 255, 255, 0.78);
}

.file-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin-top: 42px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.file-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 24px;
  font-weight: 760;
}

.file-visual > div:last-child {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.file-visual strong,
.file-visual small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shipping-visual {
  display: grid;
  grid-template-columns: auto minmax(48px, 1fr) auto minmax(48px, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 54px;
}

.shipping-visual span {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 12px 22px;
  border: 1px solid rgba(85, 55, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 680;
  text-align: center;
}

.shipping-visual i {
  height: 2px;
  background: rgba(87, 60, 12, 0.28);
}

.edge-band {
  padding: 130px 0;
  color: #fff;
  background: #08090c;
}

.edge-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: 80px;
}

.edge-copy h2,
.security-copy h2,
.download-layout h2 {
  font-size: 50px;
}

.edge-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.edge-diagram {
  display: grid;
  grid-template-columns: minmax(128px, 1fr) 90px minmax(164px, 1.16fr) 90px minmax(150px, 1fr);
  align-items: center;
  min-height: 310px;
}

.diagram-node {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.diagram-node > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.diagram-node > strong {
  text-align: center;
  font-size: 15px;
}

.edge-node {
  border-color: rgba(22, 119, 255, 0.44);
  background: rgba(22, 119, 255, 0.12);
}

.edge-node img {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  border-radius: 8px;
}

.diagram-link {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
}

.diagram-link i {
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
}

.diagram-link small {
  font-size: 10px;
}

.printer-cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(42px, 1fr));
  gap: 8px;
}

.printer-unit {
  position: relative;
  aspect-ratio: 0.72;
  padding: 8px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: #191a1e;
}

.printer-unit span {
  display: block;
  width: 100%;
  height: 70%;
  border-radius: 3px;
  background: #292b31;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.printer-unit i {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.package-suite {
  margin-top: 84px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.package-suite-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  column-gap: 72px;
  align-items: end;
}

.package-suite-heading .section-kicker {
  grid-column: 1 / -1;
}

.package-suite-heading h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 720;
}

.package-suite-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.65;
}

.package-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.package-entry {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 22px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.package-entry:first-child {
  border-left: 0;
}

.package-entry span {
  color: #78b0ff;
  font-size: 11px;
  font-weight: 720;
}

.package-entry strong {
  overflow: hidden;
  font-size: 19px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-entry small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.node-package span {
  color: #69d69d;
}

.install-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.install-path li {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.install-path li:first-child {
  padding-left: 0;
  border-left: 0;
}

.install-path li > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  border-radius: 50%;
  color: #9dc7ff;
  background: rgba(22, 119, 255, 0.18);
  font-size: 10px;
  font-weight: 750;
}

.install-path strong {
  font-size: 13px;
}

.install-path small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  line-height: 1.45;
}

.package-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 40px;
  color: #78b0ff;
  font-size: 14px;
  font-weight: 650;
}

.package-doc-link span {
  font-size: 22px;
  line-height: 1;
  transition: transform 160ms ease;
}

.package-doc-link:hover span {
  transform: translateX(3px);
}

.capability-band {
  padding: 110px 0;
  background: #fff;
}

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

.capability {
  min-width: 0;
  padding: 20px 40px 20px 0;
}

.capability + .capability {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.capability-mark {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 720;
}

.mark-blue {
  color: var(--blue);
}

.mark-amber {
  color: #9a6400;
}

.mark-green {
  color: #147348;
}

.capability h3 {
  font-size: 28px;
}

.capability p {
  font-size: 15px;
}

.security-band {
  padding: 128px 0;
  background: #eaf3ef;
}

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

.security-copy .section-kicker {
  color: #147348;
}

.security-points {
  display: grid;
  border-top: 1px solid rgba(23, 24, 26, 0.18);
}

.security-points > div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(23, 24, 26, 0.18);
}

.security-points span {
  color: #147348;
  font-size: 12px;
  font-weight: 720;
}

.security-points strong {
  font-size: 17px;
}

.download-band {
  padding: 128px 0;
  color: #fff;
  background: #101115;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 100px;
}

.download-mark {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 8px;
}

.download-layout > div > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.download-options {
  display: grid;
  gap: 10px;
}

.beta-invitation {
  min-width: 0;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.beta-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 5px rgba(52, 199, 89, 0.13);
}

.beta-invitation > div {
  min-width: 0;
}

.beta-invitation strong {
  display: block;
  font-size: 18px;
  font-weight: 680;
}

.beta-invitation p {
  max-width: 530px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.beta-apply-button {
  gap: 8px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.beta-apply-button:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
}

.beta-apply-button span {
  font-size: 24px;
  line-height: 0;
  transform: translateY(-1px);
}

.beta-dialog {
  position: relative;
  width: min(calc(100% - 32px), 580px);
  max-height: min(820px, calc(100svh - 32px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(249, 249, 251, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(38px) saturate(180%);
  -webkit-backdrop-filter: blur(38px) saturate(180%);
}

.beta-dialog[open] {
  animation: beta-materialize 300ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.beta-dialog::backdrop {
  background: rgba(4, 5, 8, 0.46);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.beta-dialog-shell {
  position: relative;
  width: 100%;
  max-height: min(820px, calc(100svh - 32px));
  box-sizing: border-box;
  padding: 34px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 60, 67, 0.3) transparent;
  -webkit-overflow-scrolling: touch;
}

.beta-dialog-shell::-webkit-scrollbar {
  width: 10px;
}

.beta-dialog-shell::-webkit-scrollbar-track {
  background: transparent;
}

.beta-dialog-shell::-webkit-scrollbar-thumb {
  min-height: 42px;
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(60, 60, 67, 0.3);
  background-clip: content-box;
}

.beta-dialog-shell::-webkit-scrollbar-thumb:hover {
  background-color: rgba(60, 60, 67, 0.46);
}

.beta-dialog::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 16px;
  background: linear-gradient(to bottom, rgba(249, 249, 251, 0), rgba(249, 249, 251, 0.82));
  content: "";
  pointer-events: none;
}

.beta-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  color: #555861;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  font-size: 21px;
  line-height: 1;
  transition: transform 120ms ease, background 160ms ease;
}

.beta-dialog-close:hover {
  background: rgba(0, 0, 0, 0.11);
}

.beta-dialog-heading {
  padding-right: 34px;
}

.beta-dialog-heading img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 10px;
}

.beta-dialog-heading .section-kicker {
  margin-bottom: 7px;
  font-size: 13px;
}

.beta-dialog-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 730;
}

.beta-dialog-heading > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.beta-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.beta-segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  margin: 0;
  padding: 3px;
  border: 0;
  border-radius: 9px;
  background: rgba(118, 118, 128, 0.14);
}

.beta-segment label {
  position: relative;
  min-width: 0;
}

.beta-segment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.beta-segment span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #5d6067;
  font-size: 14px;
  font-weight: 620;
  transition: color 160ms ease, background 180ms ease, box-shadow 180ms ease, transform 120ms ease;
}

.beta-segment input:checked + span {
  color: #111216;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.beta-segment label:active span {
  transform: scale(0.985);
}

.beta-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.beta-field > span:not(.visually-hidden) {
  color: #4f5259;
  font-size: 13px;
  font-weight: 620;
}

.beta-field input,
.beta-field select,
.beta-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0 13px;
  color: #17181a;
  border: 1px solid rgba(23, 24, 26, 0.15);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025);
  font: inherit;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.beta-field input,
.beta-field select {
  height: 46px;
}

.beta-field textarea {
  min-height: 122px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
  line-height: 1.55;
}

.beta-field input:focus,
.beta-field select:focus,
.beta-field textarea:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.15);
}

.beta-contact-row {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  align-items: end;
  gap: 10px;
}

.beta-scale-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.beta-expectations-field {
  position: relative;
}

.beta-expectations-field textarea {
  padding-bottom: 30px;
}

.beta-expectations-field small {
  position: absolute;
  right: 11px;
  bottom: 9px;
  color: #858890;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

.beta-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.beta-form-status {
  min-height: 20px;
  margin: -2px 0 -4px;
  color: var(--red);
  font-size: 13px;
}

.beta-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 2px;
}

.beta-form-actions .button,
.beta-success .button {
  min-width: 112px;
}

.beta-cancel-button {
  color: #3e4148;
  border-color: rgba(23, 24, 26, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

.beta-submit-button {
  color: #fff;
}

.beta-form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.beta-success {
  padding: 54px 10px 20px;
  text-align: center;
}

.beta-success > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #fff;
  background: #28a95f;
  font-size: 28px;
  font-weight: 720;
}

.beta-success h3 {
  margin: 0;
  font-size: 27px;
}

.beta-success p {
  max-width: 390px;
  margin: 10px auto 24px;
  color: var(--muted);
}

.beta-success .button {
  color: #fff;
}

@keyframes beta-materialize {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.download-option {
  min-width: 0;
  min-height: 84px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 120ms ease, border-color 180ms ease, background 180ms ease;
}

.download-option:hover,
.download-option.recommended {
  border-color: rgba(22, 119, 255, 0.68);
  background: rgba(22, 119, 255, 0.12);
}

.platform-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #111216;
  background: #fff;
  font-size: 23px;
  font-weight: 720;
}

.windows-symbol {
  color: #fff;
  background: var(--blue);
}

.download-option > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.download-option strong,
.download-option small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-option b {
  color: #78b0ff;
  font-size: 13px;
}

.download-hint {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.site-footer {
  padding: 36px 0 max(28px, env(safe-area-inset-bottom));
  color: #5e6167;
  background: var(--soft);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

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

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.footer-brand > div {
  display: grid;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 13px;
}

.footer-brand small {
  color: #777a81;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #34363a;
  font-size: 12px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  font-size: 11px;
}

.icp-link {
  margin-left: 8px;
  text-decoration: underline;
  text-decoration-color: rgba(94, 97, 103, 0.42);
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1024px) {
  .nav-shell {
    grid-template-columns: 170px minmax(0, 1fr) 150px;
  }

  .desktop-nav {
    gap: 22px;
  }

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

  .hero-lead {
    font-size: 26px;
  }

  .intro-copy h2,
  .section-heading h2 {
    font-size: 46px;
  }

  .product-stage-body {
    min-height: 560px;
  }

  .edge-layout,
  .security-layout,
  .download-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .edge-diagram {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .package-suite-heading {
    column-gap: 42px;
  }

  .install-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .install-path li:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .download-options {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 48px;
  }

  .global-header {
    height: 48px;
  }

  .nav-shell {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .desktop-nav,
  .nav-download {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: currentColor;
    background: transparent;
  }

  .menu-toggle span {
    position: absolute;
    left: 10px;
    width: 18px;
    height: 1.5px;
    border-radius: 1px;
    background: currentColor;
    transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1), top 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .menu-toggle span:first-child {
    top: 14px;
  }

  .menu-toggle span:last-child {
    top: 22px;
  }

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

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

  .mobile-menu {
    position: fixed;
    inset: 48px 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    color: var(--ink);
    background: rgba(249, 249, 251, 0.94);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-12px);
    transition: max-height 420ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 220ms ease, transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .mobile-menu.open {
    max-height: calc(100svh - 48px);
    padding: 10px 22px 28px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 22px;
    font-weight: 630;
  }

  .hero {
    min-height: 620px;
    height: 84svh;
  }

  .hero-visual img {
    object-position: 62% center;
    filter: saturate(0.72) brightness(0.48) contrast(1.12);
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.48);
  }

  .hero-content,
  .section-inner,
  .footer-inner {
    width: calc(100% - 36px);
  }

  .hero-content {
    justify-content: flex-end;
    padding: 0 0 58px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.05;
  }

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

  .hero-actions {
    width: 100%;
    margin-top: 24px;
  }

  .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 10px;
  }

  .hero-note {
    font-size: 12px;
    line-height: 1.5;
  }

  .intro-band,
  .feature-band,
  .edge-band,
  .security-band,
  .download-band {
    padding: 82px 0;
  }

  .intro-copy {
    text-align: left;
  }

  .intro-copy h2,
  .section-heading h2,
  .edge-copy h2,
  .security-copy h2,
  .download-layout h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  .intro-copy > p:last-child {
    margin-top: 18px;
    font-size: 17px;
  }

  .product-stage {
    width: calc(100% - 20px);
    margin-top: 48px;
  }

  .window-chrome {
    height: 36px;
  }

  .product-stage-body {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .demo-sidebar {
    gap: 17px;
    padding: 16px 8px;
  }

  .demo-sidebar img {
    width: 32px;
    height: 32px;
  }

  .demo-sidebar i {
    width: 24px;
    height: 5px;
  }

  .demo-main {
    padding: 14px;
  }

  .demo-toolbar {
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .demo-toolbar strong {
    font-size: 14px;
  }

  .demo-toolbar > span {
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .demo-monitor {
    aspect-ratio: 4 / 3;
  }

  .demo-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
  }

  .demo-metrics strong {
    font-size: 13px;
  }

  .demo-spools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
  }

  .demo-spools span {
    padding: 8px;
  }

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

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

  .feature-orders,
  .feature-files,
  .feature-shipping {
    grid-column: auto;
  }

  .feature-item {
    min-height: 390px;
    padding: 26px;
  }

  .feature-copy h3,
  .capability h3 {
    font-size: 28px;
  }

  .feature-copy p {
    font-size: 15px;
  }

  .order-line {
    grid-template-columns: minmax(72px, 0.75fr) minmax(0, 1.25fr);
    min-height: 62px;
  }

  .order-line small {
    grid-column: 1 / -1;
  }

  .shipping-visual {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 34px;
  }

  .shipping-visual i {
    width: 2px;
    height: 20px;
    margin: 0 auto;
  }

  .edge-layout,
  .security-layout,
  .download-layout {
    gap: 44px;
  }

  .edge-diagram {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .diagram-link {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
  }

  .diagram-link::before,
  .diagram-link::after {
    content: "";
    height: 2px;
    background: rgba(255, 255, 255, 0.24);
  }

  .diagram-link i {
    display: none;
  }

  .printer-cluster {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }

  .package-suite {
    margin-top: 62px;
    padding-top: 56px;
  }

  .package-suite-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .package-suite-heading h3 {
    font-size: 30px;
  }

  .package-strip {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .package-entry,
  .package-entry:first-child {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .package-entry:first-child {
    border-top: 0;
  }

  .package-entry {
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .package-entry strong {
    font-size: 16px;
  }

  .package-entry small {
    text-align: right;
  }

  .install-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
    margin-top: 38px;
  }

  .install-path li,
  .install-path li:nth-child(4) {
    padding: 0 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .install-path li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .install-path li:nth-child(even) {
    padding-right: 0;
  }

  .capability-band {
    padding: 76px 0;
  }

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

  .capability,
  .capability + .capability {
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability:last-child {
    border-bottom: 0;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .security-points > div {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .download-layout {
    grid-template-columns: 1fr;
  }

  .beta-invitation {
    grid-template-columns: 12px minmax(0, 1fr);
    padding: 22px;
  }

  .beta-apply-button {
    grid-column: 2;
    justify-self: start;
  }

  .download-option {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 82px;
  }

  .download-option b {
    grid-column: 2;
  }

  .footer-meta {
    flex-direction: column;
    gap: 6px;
  }

  .beta-dialog-shell {
    padding: 28px 22px 24px;
  }

  .beta-dialog-heading h2 {
    font-size: 28px;
  }

  .beta-contact-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .beta-contact-value {
    margin-top: -4px;
  }

  .beta-form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beta-form-actions .button {
    min-width: 0;
    padding-inline: 8px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .intro-copy h2,
  .section-heading h2,
  .edge-copy h2,
  .security-copy h2,
  .download-layout h2 {
    font-size: 34px;
  }

  .feature-item {
    padding: 22px;
  }

  .file-visual {
    align-items: flex-start;
    padding: 14px;
  }

  .beta-invitation {
    grid-template-columns: 1fr;
  }

  .beta-pulse {
    margin-bottom: 2px;
  }

  .beta-apply-button {
    grid-column: 1;
    width: 100%;
  }
}

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

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

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

@media (prefers-contrast: more) {
  .global-header,
  .mobile-menu {
    background: #fff;
    color: #000;
    backdrop-filter: none;
  }

  .button-quiet {
    background: #111;
  }

  .feature-item,
  .download-option,
  .diagram-node,
  .beta-invitation,
  .beta-dialog {
    border-width: 2px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .beta-dialog {
    background: #f9f9fb;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .beta-dialog::backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .global-header {
    background: rgba(5, 6, 8, 0.92);
  }

  .global-header.scrolled,
  .mobile-menu {
    background: rgba(249, 249, 251, 0.98);
  }
}
