:root {
  --ink: #0a0b09;
  --ink-soft: #151711;
  --paper: #f2f0e8;
  --paper-deep: #e3e0d4;
  --lime: #d8ff3e;
  --lime-bright: #e7ff76;
  --acid: #b9f20e;
  --muted: #777a6c;
  --line: rgba(10, 11, 9, 0.18);
  --display: "Bricolage Grotesque", sans-serif;
  --mono: "Azeret Mono", monospace;
  --shell: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.checkout-open,
body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.signal-bar {
  position: relative;
  z-index: 20;
  height: 31px;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border-bottom: 1px solid var(--ink);
  font: 500 10px/30px var(--mono);
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.signal-bar__track {
  width: max-content;
  display: flex;
  gap: 42px;
  animation: ticker 32s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.site-header {
  width: var(--shell);
  height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

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

.brand__tile {
  position: relative;
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.brand__tile strong {
  font: 700 27px/1 var(--display);
}

.brand__number,
.brand__mass {
  position: absolute;
  font: 500 6px/1 var(--mono);
}

.brand__number { top: 5px; left: 5px; }
.brand__mass { right: 4px; bottom: 4px; }

.brand__name {
  font-size: 15px;
  line-height: 0.85;
  font-weight: 750;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a {
  position: relative;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-buy {
  height: 43px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav-buy:hover {
  color: var(--ink);
  background: var(--lime);
}

.menu-toggle {
  display: none;
}

.hero {
  width: var(--shell);
  min-height: 710px;
  margin: 0 auto;
  padding: 72px 0 82px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 4vw;
}

.eyebrow,
.section-kicker {
  font: 500 10px/1.4 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.25);
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6eb300;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid #6eb300;
  border-radius: 50%;
  animation: ping 1.8s ease-out infinite;
}

@keyframes ping {
  70%, 100% { opacity: 0; transform: scale(1.8); }
}

.hero h1 {
  margin: 0;
  font-size: clamp(70px, 8.4vw, 125px);
  line-height: 0.76;
  letter-spacing: -0.09em;
  font-weight: 800;
}

.word-shift {
  position: relative;
  display: inline-block;
  margin-left: 9%;
  color: var(--lime);
  text-shadow:
    -2px -2px 0 var(--ink),
    2px -2px 0 var(--ink),
    -2px 2px 0 var(--ink),
    2px 2px 0 var(--ink),
    7px 7px 0 var(--ink);
  transform: skew(-7deg);
}

.hero__lede {
  max-width: 530px;
  margin: 42px 0 0;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: #35372f;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-button {
  min-width: 286px;
  height: 62px;
  padding: 0 7px 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 0 var(--lime);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button strong {
  height: 46px;
  min-width: 80px;
  padding: 0 13px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-weight: 600;
}

.primary-button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0 var(--lime);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero__trust {
  margin-top: 40px;
  padding-top: 17px;
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__trust div {
  flex: 1;
}

.hero__trust span {
  display: block;
  margin-bottom: 7px;
  color: #9b9d91;
}

.hero__visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: -4;
  width: 78%;
  aspect-ratio: 1;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(10,11,9,.13) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(10,11,9,.13) 50%, transparent 50.3%),
    var(--lime);
  background-size: 38px 38px;
  border-radius: 50%;
  filter: drop-shadow(17px 18px 0 var(--ink));
}

.orbit {
  position: absolute;
  z-index: -3;
  border: 1px dashed rgba(10,11,9,.42);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 10%;
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-radius: 50%;
}

.orbit--one { width: 90%; aspect-ratio: 1; }
.orbit--two { width: 65%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 18s; }

@keyframes spin { to { transform: rotate(360deg); } }

.element-card {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: 1%;
  width: 140px;
  aspect-ratio: 1;
  padding: 12px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(7deg);
}

.element-card__atomic,
.element-card__mass {
  position: absolute;
  font: 500 9px/1 var(--mono);
}

.element-card__atomic { top: 12px; left: 12px; }
.element-card__mass { right: 10px; bottom: 10px; }
.element-card__symbol { font-size: 67px; font-weight: 800; letter-spacing: -0.1em; }
.element-card__name { position: absolute; bottom: 27px; left: 12px; font: 500 8px/1 var(--mono); text-transform: uppercase; }

.product-window {
  position: relative;
  z-index: 2;
  width: min(560px, 88%);
  min-height: 392px;
  overflow: hidden;
  color: var(--paper);
  background: #0e100d;
  border: 2px solid var(--ink);
  box-shadow: 15px 17px 0 rgba(10, 11, 9, 0.88);
  transform: rotate(-2.5deg);
}

.product-window__topbar {
  height: 43px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #1c1f18;
  border-bottom: 1px solid #41443c;
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.12em;
}

.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border: 1px solid #777b6f; border-radius: 50%; }
.window-dots i:first-child { background: var(--lime); border-color: var(--lime); }
.build-tag { justify-self: end; padding: 5px 7px; color: var(--ink); background: var(--lime); }

.product-window__body { min-height: 349px; display: grid; grid-template-columns: 54px 1fr; }

.product-sidebar {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #131510;
  border-right: 1px solid #32352e;
}

.sidebar-logo {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.product-sidebar i {
  width: 14px;
  height: 14px;
  border: 1px solid #55594e;
}

.product-sidebar i.is-active { background: #55594e; box-shadow: inset 0 0 0 3px #131510; }

.product-panel { padding: 26px 28px 20px; }

.product-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.micro-label { font: 500 7px/1 var(--mono); letter-spacing: 0.18em; color: #7f8475; }
.product-panel h2 { margin: 7px 0 0; font-size: 27px; letter-spacing: -0.05em; }
.status-pill { display: flex; align-items: center; gap: 7px; padding: 7px 9px; border: 1px solid #3e4238; font: 500 7px/1 var(--mono); text-transform: uppercase; }
.status-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 11px var(--lime); }

.metric-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #35382f; }
.metric-grid > div { min-height: 78px; padding: 10px; display: flex; flex-direction: column; border-right: 1px solid #35382f; }
.metric-grid > div:last-child { border-right: 0; }
.metric-grid span { font: 500 6px/1 var(--mono); letter-spacing: .12em; color: #75796d; }
.metric-grid strong { margin-top: auto; font-size: 22px; color: var(--lime); }
.metric-grid small { font: 400 7px/1 var(--mono); color: #9da194; }

.code-panel {
  position: relative;
  margin-top: 15px;
  padding: 14px 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #080907;
  border-left: 2px solid var(--lime);
  font: 400 8px/1 var(--mono);
  color: #9fa397;
}

.code-panel em { margin-right: 15px; color: #44483f; font-style: normal; }
.code-panel b { color: #ecffad; font-weight: 500; }
.code-panel q { color: var(--lime); }
.cursor { display: inline-block; position: absolute; left: 205px; bottom: 13px; width: 5px; height: 9px; background: var(--lime); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.client-footer { margin-top: 17px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; font: 500 6px/1 var(--mono); color: #888c7e; }
.progress { height: 3px; background: #30332d; }
.progress i { display: block; width: 100%; height: 100%; background: var(--lime); box-shadow: 0 0 8px rgba(216,255,62,.6); }
.client-footer strong { color: var(--lime); font-size: 7px; }

.float-note {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  font: 600 8px/1 var(--mono);
  letter-spacing: .12em;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.float-note--top { top: 19%; left: 2%; transform: rotate(-7deg); }
.float-note--bottom { right: 7%; bottom: 14%; transform: rotate(4deg); background: var(--lime); }

.facts-strip {
  width: 100%;
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.facts-strip article {
  padding: 31px 5vw 31px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid #363a31;
}

.facts-strip article:last-child { border-right: 0; }
.facts-strip__index { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; color: var(--ink); background: var(--lime); font: 600 9px/1 var(--mono); }
.facts-strip div { display: flex; flex-direction: column; gap: 7px; }
.facts-strip small { font: 500 7px/1 var(--mono); letter-spacing: .14em; color: #787d70; text-transform: uppercase; }
.facts-strip strong { font-size: 20px; letter-spacing: -.04em; }
.facts-strip .accent-text { color: var(--lime); }

.section-shell { width: var(--shell); margin-inline: auto; }

.features { padding: 145px 0 155px; }

.section-heading { display: grid; grid-template-columns: 1fr 1.6fr 1fr; align-items: end; gap: 40px; margin-bottom: 67px; }
.section-kicker { align-self: start; color: #74776a; }
.section-heading h2 { margin: 0; font-size: clamp(48px, 5.3vw, 76px); line-height: .95; letter-spacing: -.065em; }
.section-heading h2 em { color: #969a8c; font-weight: 400; }
.section-heading > p { margin: 0; font-size: 15px; line-height: 1.6; color: #575a50; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.feature-card { position: relative; min-height: 370px; padding: 25px; display: flex; flex-direction: column; overflow: hidden; background: var(--paper); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.feature-card--wide { grid-column: span 2; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--ink); font: 600 18px/1 var(--mono); }
.feature-icon--infinity { font-size: 25px; }
.card-number { position: absolute; right: 25px; top: 25px; font: 500 8px/1 var(--mono); color: #8c8f81; }
.feature-card > div:nth-of-type(2) { margin-top: auto; }
.feature-card h3 { margin: 0 0 12px; font-size: 25px; letter-spacing: -.045em; }
.feature-card p { max-width: 410px; margin: 0; font-size: 14px; line-height: 1.55; color: #595c51; }

.card-diagram--timeline { margin-top: 32px; display: flex; align-items: center; gap: 8px; font: 500 7px/1 var(--mono); letter-spacing: .12em; }
.card-diagram--timeline i { flex: 1; height: 1px; background: var(--ink); }
.card-diagram--timeline span { padding: 8px; border: 1px solid var(--ink); }
.card-diagram--timeline .forever { color: var(--ink); background: var(--lime); font-size: 15px; }

.delivery-pulse { height: 75px; margin-top: 30px; display: flex; align-items: end; gap: 7px; }
.delivery-pulse i { flex: 1; height: 15%; background: var(--lime); border: 1px solid var(--ink); animation: bars 1.8s ease-in-out infinite alternate; }
.delivery-pulse i:nth-child(2) { height: 45%; animation-delay: .2s; }
.delivery-pulse i:nth-child(3) { height: 100%; animation-delay: .4s; }
.delivery-pulse i:nth-child(4) { height: 70%; animation-delay: .6s; }
@keyframes bars { to { height: 90%; } }

.feature-card--dark { color: var(--paper); background: var(--ink); }
.feature-card--dark .feature-icon { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.feature-card--dark p { color: #9b9f92; }
.feature-card--dark .card-number { color: #72776a; }
.os-chip { margin-top: 31px; padding: 14px; display: flex; align-items: center; gap: 9px; color: var(--lime); border: 1px solid #3b3f36; font: 500 8px/1 var(--mono); letter-spacing: .12em; }
.os-chip span { font-size: 17px; }

.feature-card--lime { background: var(--lime); }
.feature-card--lime p { color: #343628; }
.feature-card--lime .support-link { margin-top: 27px; padding: 12px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font: 600 8px/1 var(--mono); letter-spacing: .12em; }

.feature-card--compat { display: grid; grid-template-columns: auto 1fr 1.1fr; grid-template-rows: auto 1fr; column-gap: 28px; }
.feature-card--compat .card-number { position: static; justify-self: end; }
.feature-card--compat > div:nth-of-type(2) { align-self: end; }
.compat-meter { grid-column: 3; grid-row: 1 / span 2; align-self: end; }
.compat-meter__labels { display: flex; justify-content: space-between; font: 500 7px/1 var(--mono); }
.compat-meter__bar { height: 36px; margin-top: 8px; padding: 4px; border: 1px solid var(--ink); }
.compat-meter__bar i { display: block; width: 96%; height: 100%; background: repeating-linear-gradient(135deg, var(--lime) 0 8px, #b6e51d 8px 16px); }
.compat-meter small { display: block; margin-top: 10px; color: #717467; font: 400 7px/1.4 var(--mono); }

.process { color: var(--paper); background: var(--ink); }
.process__inner { padding: 145px 0; }
.section-heading--light { grid-template-columns: 1fr 2.6fr; }
.section-heading--light .section-kicker { color: #777c6f; }
.section-heading--light h2 em { color: var(--lime); }

.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #3e4238; }
.process-list li { min-height: 152px; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 30px; border-bottom: 1px solid #3e4238; }
.process-number { font: 500 10px/1 var(--mono); color: var(--lime); }
.process-list h3 { margin: 0 0 9px; font-size: 31px; letter-spacing: -.045em; }
.process-list p { margin: 0; color: #898e80; }
.process-glyph { width: 52px; height: 52px; display: grid; place-items: center; color: var(--ink); background: var(--lime); font: 500 22px/1 var(--mono); transition: transform 200ms ease; }
.process-list li:hover .process-glyph { transform: rotate(9deg) scale(1.08); }

.pricing { padding: 145px 0; }
.pricing-card { position: relative; max-width: 950px; margin: 0 auto; padding: 42px; background: #eeece3; border: 1px solid var(--ink); box-shadow: 13px 13px 0 var(--ink); }
.pricing-card::before { content: "K"; position: absolute; z-index: -1; right: -100px; top: -120px; color: var(--lime); font-size: 440px; line-height: 1; font-weight: 800; letter-spacing: -.14em; transform: rotate(8deg); -webkit-text-stroke: 1px var(--ink); }
.pricing-card__top { padding-bottom: 27px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ink); }
.stock-badge { padding: 8px 10px; display: flex; align-items: center; gap: 7px; border: 1px solid var(--ink); font: 600 8px/1 var(--mono); }
.stock-badge i { width: 7px; height: 7px; border-radius: 50%; background: #64a600; }
.pricing-card__main { padding: 45px 0; display: grid; grid-template-columns: 1.6fr .7fr; gap: 50px; align-items: end; }
.pricing-card__eyebrow { margin: 0 0 8px; font: 500 8px/1 var(--mono); color: #73766a; letter-spacing: .13em; }
.pricing-card h2 { margin: 0; font-size: 64px; letter-spacing: -.07em; }
.pricing-card__description { max-width: 500px; margin: 20px 0 0; line-height: 1.55; color: #56594e; }
.pricing-card__price { padding-left: 30px; display: grid; border-left: 1px solid var(--ink); }
.pricing-card__price span, .pricing-card__price small { font: 500 8px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.pricing-card__price strong { margin: 8px 0 7px; font-size: 55px; letter-spacing: -.07em; }
.pricing-list { margin: 0 0 35px; padding: 25px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font: 500 10px/1.3 var(--mono); }
.pricing-list span { color: #6fa400; margin-right: 7px; }
.pricing-button { width: 100%; min-height: 72px; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; color: var(--ink); background: var(--lime); border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); font: 600 10px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease; }
.pricing-button:hover { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }
.pricing-note { margin: 17px 0 0; text-align: center; font: 400 7px/1.5 var(--mono); color: #7a7d70; }

.faq { padding: 60px 0 145px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.faq__intro h2 { margin: 20px 0 26px; font-size: 65px; line-height: .9; letter-spacing: -.065em; }
.faq__intro h2 em { color: #9a9d91; font-weight: 400; }
.faq__intro p { max-width: 320px; margin: 0 0 27px; color: #5e6156; line-height: 1.55; }
.accordion { border-top: 1px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--ink); }
.accordion summary { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 25px; list-style: none; cursor: pointer; font-size: 20px; font-weight: 600; letter-spacing: -.025em; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 31px; height: 31px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--ink); font: 400 15px/1 var(--mono); transition: background 180ms ease; }
.accordion summary:hover span, .accordion details[open] summary span { background: var(--lime); }
.accordion details p { max-width: 660px; margin: -2px 60px 27px 0; color: #575a50; line-height: 1.62; }

.disclosure { margin-bottom: 145px; padding: 32px; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 25px; border: 1px solid var(--ink); background: #e9e6dc; }
.disclosure__mark { width: 45px; height: 45px; display: grid; place-items: center; background: var(--lime); border: 1px solid var(--ink); font: 700 22px/1 var(--mono); }
.disclosure h2 { margin: 0 0 10px; font-size: 20px; }
.disclosure p { margin: 0; max-width: 970px; color: #5e6157; font-size: 13px; line-height: 1.65; }

.final-cta { position: relative; min-height: 580px; display: grid; place-items: center; overflow: hidden; color: var(--paper); background: var(--ink); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 65%; height: 1px; background: #34382f; }
.final-cta::before { transform: rotate(35deg); }
.final-cta::after { transform: rotate(-35deg); }
.final-cta__symbol { position: absolute; right: -2vw; bottom: -22%; color: transparent; font-size: min(58vw, 750px); font-weight: 800; line-height: 1; letter-spacing: -.15em; -webkit-text-stroke: 1px #34382f; }
.final-cta__content { position: relative; z-index: 2; text-align: center; }
.final-cta__content > span { font: 500 9px/1 var(--mono); letter-spacing: .18em; color: var(--lime); }
.final-cta h2 { margin: 22px 0 37px; font-size: clamp(60px, 7vw, 105px); line-height: .82; letter-spacing: -.075em; }
.primary-button--light { margin: 0 auto; color: var(--ink); background: var(--paper); }
.primary-button--light:hover { box-shadow: 7px 7px 0 var(--lime); }

.site-footer { min-height: 190px; padding: 50px max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: 1fr auto; align-items: center; color: #999d90; background: var(--ink); border-top: 1px solid #32362e; }
.brand--footer { color: var(--paper); }
.brand--footer .brand__tile { color: var(--ink); }
.footer-links { display: flex; gap: 25px; font: 500 8px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.footer-links a:hover { color: var(--lime); }
.site-footer > p { grid-column: 1 / -1; margin: 30px 0 0; padding-top: 20px; border-top: 1px solid #32362e; font: 400 7px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }

.checkout-backdrop { position: fixed; z-index: 199; inset: 0; background: rgba(10, 11, 9, .7); backdrop-filter: blur(7px); }
.checkout-panel { position: fixed; z-index: 200; top: 0; right: 0; width: min(480px, 100%); height: 100dvh; padding: 37px; color: var(--ink); background: var(--paper); border-left: 1px solid var(--ink); box-shadow: -15px 0 45px rgba(0,0,0,.28); overflow-y: auto; transform: translateX(105%); transition: transform 350ms cubic-bezier(.68,0,.22,1); }
.checkout-panel.is-open { transform: translateX(0); }
.checkout-panel__head { padding-bottom: 26px; display: flex; align-items: start; justify-content: space-between; border-bottom: 1px solid var(--ink); }
.checkout-panel__head h2 { margin: 7px 0 0; font-size: 40px; letter-spacing: -.06em; }
.checkout-close { width: 40px; height: 40px; display: grid; place-items: center; background: transparent; border: 1px solid var(--ink); font: 300 25px/1 var(--mono); cursor: pointer; }
.checkout-close:hover { background: var(--lime); }
.checkout-product { padding: 27px 0; display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: center; border-bottom: 1px solid var(--line); }
.checkout-product__icon { position: relative; width: 58px; height: 58px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border: 1px solid var(--ink); font-size: 28px; font-weight: 800; }
.checkout-product__icon small { position: absolute; left: 4px; top: 4px; font: 500 6px/1 var(--mono); }
.checkout-product > div:nth-child(2) { display: flex; flex-direction: column; gap: 7px; }
.checkout-product > div:nth-child(2) strong { font-size: 15px; }
.checkout-product > div:nth-child(2) span { color: #73766a; font: 400 7px/1 var(--mono); text-transform: uppercase; }
.checkout-product > strong { font: 600 12px/1 var(--mono); }
.checkout-total { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 16px; }
.checkout-total strong { font-size: 23px; }
.checkout-form { margin-top: 8px; }
.checkout-form > label:first-child { display: flex; flex-direction: column; gap: 9px; font: 500 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.checkout-form input[type="email"] { width: 100%; height: 55px; padding: 0 15px; color: var(--ink); background: #faf9f4; border: 1px solid var(--ink); border-radius: 0; outline: none; }
.checkout-form input[type="email"]:focus { box-shadow: inset 0 -4px 0 var(--lime); }
.check-row { margin: 20px 0 23px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: #676a5e; font: 400 8px/1.5 var(--mono); }
.check-row input { width: 16px; height: 16px; accent-color: var(--lime); }
.checkout-submit { width: 100%; min-width: 0; }
.checkout-hint { margin: 14px 0 0; text-align: center; color: #7b7e72; font: 400 7px/1.5 var(--mono); }
.checkout-assurance { margin-top: 35px; padding-top: 23px; display: flex; justify-content: space-between; color: #787b70; border-top: 1px solid var(--line); font: 500 7px/1 var(--mono); }

.toast { position: fixed; z-index: 250; left: 50%; bottom: 25px; max-width: min(500px, calc(100% - 30px)); padding: 16px 19px; color: var(--ink); background: var(--lime); border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); font: 500 9px/1.5 var(--mono); text-align: center; opacity: 0; transform: translate(-50%, 18px); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.legal-body { min-height: 100vh; background: var(--paper); }
.legal-header { width: var(--shell); min-height: 112px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ink); }
.legal-back { padding-bottom: 5px; border-bottom: 1px solid var(--ink); font: 500 9px/1 var(--mono); letter-spacing: .1em; }
.legal-page { width: var(--shell); margin: 0 auto; padding: 90px 0 120px; display: grid; grid-template-columns: .65fr 1.35fr; gap: 9vw; }
.legal-index { position: sticky; top: 35px; height: fit-content; }
.legal-index > span { font: 500 9px/1 var(--mono); letter-spacing: .15em; color: #787b6f; }
.legal-index h1 { margin: 22px 0 30px; font-size: clamp(63px, 7vw, 103px); line-height: .78; letter-spacing: -.075em; }
.legal-index p { margin: 0; font: 500 8px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.legal-content { border-top: 1px solid var(--ink); }
.legal-notice { margin: 28px 0; padding: 23px; color: var(--ink); background: var(--lime); border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.legal-notice strong { font-size: 18px; }
.legal-notice p { margin: 7px 0 0; font-size: 13px; line-height: 1.55; }
.legal-content section { padding: 35px 0; display: grid; grid-template-columns: 55px 1fr; gap: 25px; border-bottom: 1px solid var(--line); }
.legal-content section > span { padding-top: 4px; font: 500 8px/1 var(--mono); color: #8a8d80; }
.legal-content h2 { margin: 0 0 12px; font-size: 27px; letter-spacing: -.04em; }
.legal-content section p { margin: 0; max-width: 680px; color: #55584e; font-size: 15px; line-height: 1.68; }
.legal-footer { min-height: 110px; padding: 0 max(24px, calc((100vw - 1240px) / 2)); display: flex; align-items: center; justify-content: space-between; color: var(--paper); background: var(--ink); font: 500 8px/1 var(--mono); letter-spacing: .1em; }
.legal-footer a { color: var(--lime); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1); }
.reveal--delay { transition-delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 36px, 920px); }
  .hero { min-height: auto; padding-top: 55px; grid-template-columns: 1fr; }
  .hero__copy { max-width: 700px; }
  .hero h1 { font-size: clamp(80px, 14vw, 125px); }
  .hero__visual { min-height: 650px; }
  .section-heading { grid-template-columns: .7fr 1.7fr; }
  .section-heading > p { grid-column: 2; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-strip { grid-template-columns: repeat(2, 1fr); }
  .facts-strip article:nth-child(2) { border-right: 0; }
  .facts-strip article:nth-child(-n+2) { border-bottom: 1px solid #363a31; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 28px); }
  .signal-bar { height: 27px; line-height: 26px; }
  .site-header { height: 88px; }
  .brand__tile { width: 47px; }
  .site-header > .brand { position: relative; z-index: 32; }
  .menu-toggle { position: relative; z-index: 32; width: 45px; height: 45px; display: grid; place-content: center; gap: 7px; background: transparent; border: 1px solid var(--ink); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 21px; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  body.menu-open .site-header > .brand .brand__name { color: var(--paper); }
  body.menu-open .menu-toggle { border-color: #5f6357; }
  body.menu-open .menu-toggle span:not(.sr-only) { background: var(--paper); }
  .site-nav { position: fixed; z-index: 31; inset: 27px 0 0; padding: 120px 28px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 0; color: var(--paper); background: var(--ink); transform: translateX(105%); transition: transform 300ms ease; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a { padding: 22px 0; border-bottom: 1px solid #3a3e35; font-size: 14px; }
  .nav-buy { margin-top: 30px; height: 58px; color: var(--ink); background: var(--lime); justify-content: space-between; }
  .hero { padding: 52px 0 72px; gap: 25px; }
  .hero h1 { font-size: clamp(61px, 22vw, 95px); line-height: .8; }
  .word-shift { margin-left: 4%; }
  .hero__lede { margin-top: 34px; font-size: 16px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .primary-button { width: 100%; min-width: 0; }
  .text-link { width: fit-content; }
  .hero__trust { flex-wrap: wrap; }
  .hero__trust div { flex-basis: 30%; }
  .hero__visual { min-height: 490px; }
  .hero__visual::before { width: 88%; }
  .product-window { width: 95%; min-height: 340px; }
  .product-window__body { min-height: 300px; grid-template-columns: 42px 1fr; }
  .product-panel { padding: 19px 16px 15px; }
  .product-panel h2 { font-size: 20px; }
  .metric-grid > div { min-height: 68px; }
  .code-panel { font-size: 6px; }
  .element-card { width: 92px; top: 2%; }
  .element-card__symbol { font-size: 42px; }
  .element-card__name { bottom: 20px; font-size: 5px; }
  .element-card__mass, .element-card__atomic { font-size: 5px; }
  .float-note--bottom { bottom: 6%; }
  .float-note--top { top: 10%; }
  .facts-strip { grid-template-columns: 1fr; }
  .facts-strip article { min-height: 100px; border-right: 0; border-bottom: 1px solid #363a31; }
  .features, .process__inner, .pricing { padding: 100px 0; }
  .section-heading { display: block; margin-bottom: 47px; }
  .section-heading h2 { margin-top: 18px; font-size: 48px; }
  .section-heading > p { margin-top: 25px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card--wide { grid-column: auto; min-height: 340px; }
  .feature-card--compat { display: flex; }
  .compat-meter { width: 100%; margin-top: 30px; }
  .process-list li { min-height: 170px; grid-template-columns: 45px 1fr; gap: 15px; }
  .process-glyph { display: none; }
  .process-list h3 { font-size: 24px; }
  .pricing-card { padding: 27px 20px; box-shadow: 8px 8px 0 var(--ink); }
  .pricing-card::before { display: none; }
  .pricing-card__main { padding: 35px 0; grid-template-columns: 1fr; gap: 35px; }
  .pricing-card h2 { font-size: 50px; }
  .pricing-card__price { padding: 22px 0 0; border-left: 0; border-top: 1px solid var(--ink); }
  .pricing-list { grid-template-columns: 1fr; }
  .pricing-button { min-height: 67px; gap: 20px; text-align: left; }
  .pricing-button span:last-child { text-align: right; }
  .faq { padding: 25px 0 100px; grid-template-columns: 1fr; gap: 60px; }
  .faq__intro h2 { font-size: 50px; }
  .accordion summary { min-height: 80px; font-size: 17px; }
  .disclosure { margin-bottom: 100px; padding: 24px 20px; grid-template-columns: 1fr; }
  .final-cta { min-height: 520px; padding: 80px 20px; }
  .final-cta h2 { font-size: 58px; }
  .site-footer { padding: 50px 20px; grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; }
  .checkout-panel { padding: 28px 20px; }
  .checkout-assurance { gap: 20px; }
  .legal-header { min-height: 90px; }
  .legal-header .brand__tile { width: 47px; }
  .legal-header .brand__name { display: none; }
  .legal-page { padding: 70px 0 90px; grid-template-columns: 1fr; gap: 60px; }
  .legal-index { position: static; }
  .legal-index h1 { font-size: 66px; }
  .legal-content section { grid-template-columns: 30px 1fr; gap: 10px; }
  .legal-content h2 { font-size: 23px; }
  .legal-footer { min-height: 130px; padding: 35px 20px; align-items: flex-start; flex-direction: column; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Dark executor theme ----------------------------------------------------- */
:root {
  --lime: #caff00;
  --lime-bright: #e1ff61;
  --acid: #a8e600;
  --night: #050705;
  --night-deep: #020302;
  --panel: #0b0f0a;
  --panel-raised: #11160f;
  --panel-soft: #171d14;
  --text: #f0f3e8;
  --text-muted: #939b89;
  --dark-line: rgba(218, 255, 99, 0.17);
}

body,
.legal-body {
  color: var(--text);
  background:
    radial-gradient(circle at 78% 5%, rgba(202, 255, 0, 0.09), transparent 26%),
    linear-gradient(rgba(202, 255, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 255, 0, 0.025) 1px, transparent 1px),
    var(--night);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.noise {
  opacity: 0.08;
  mix-blend-mode: screen;
}

.signal-bar {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
}

.site-header,
.legal-header {
  border-color: var(--dark-line);
}

.brand__tile {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 3px 3px 0 rgba(202, 255, 0, 0.24);
}

.brand__name {
  color: var(--text);
}

.brand__name small {
  display: block;
  margin-top: 7px;
  color: var(--lime);
  font: 500 5px/1 var(--mono);
  letter-spacing: 0.16em;
}

.site-nav > a::after {
  background: var(--lime);
}

.nav-buy {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
}

.nav-buy:hover {
  color: var(--lime);
  background: transparent;
}

.menu-toggle {
  border-color: #4b5146;
}

.menu-toggle span:not(.sr-only) {
  background: var(--text);
}

.eyebrow {
  color: #c6ceba;
  background: rgba(12, 16, 10, 0.75);
  border-color: #343b31;
  box-shadow: inset 0 0 18px rgba(202, 255, 0, 0.03);
}

.live-dot {
  background: var(--lime);
  box-shadow: 0 0 13px var(--lime);
}

.live-dot::after {
  border-color: var(--lime);
}

.hero h1,
.section-heading h2,
.faq__intro h2,
.pricing-card h2,
.legal-index h1 {
  color: var(--text);
}

.word-shift {
  color: var(--lime);
  text-shadow:
    -1px -1px 0 #394329,
    1px -1px 0 #394329,
    -1px 1px 0 #394329,
    1px 1px 0 #394329,
    8px 8px 0 rgba(202, 255, 0, 0.16),
    0 0 35px rgba(202, 255, 0, 0.19);
}

.hero__lede,
.section-heading > p,
.feature-card p,
.faq__intro p,
.accordion details p,
.disclosure p,
.legal-content section p {
  color: var(--text-muted);
}

.primary-button {
  color: var(--text);
  background: var(--panel-raised);
  border-color: #3c4437;
}

.primary-button strong {
  color: var(--night);
  background: var(--lime);
}

.primary-button:hover {
  box-shadow: 7px 7px 0 rgba(202, 255, 0, 0.36), 0 0 25px rgba(202, 255, 0, 0.12);
}

.text-link,
.hero__trust,
.pricing-card__top,
.pricing-list,
.accordion,
.accordion details {
  border-color: var(--dark-line);
}

.text-link:hover {
  color: var(--lime);
}

.hero__trust {
  color: #c2c9b6;
}

.hero__trust span,
.section-kicker,
.card-number,
.pricing-card__eyebrow,
.legal-index > span {
  color: #737c6b;
}

.hero__visual::before {
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(202, 255, 0, 0.12) 50%, transparent 50.4%),
    linear-gradient(transparent 49.6%, rgba(202, 255, 0, 0.12) 50%, transparent 50.4%),
    radial-gradient(circle, rgba(202, 255, 0, 0.15), rgba(8, 12, 7, 0.96) 67%);
  background-size: 32px 32px, 32px 32px, auto;
  border: 1px solid rgba(202, 255, 0, 0.26);
  filter: drop-shadow(17px 18px 0 #010201);
  box-shadow: inset 0 0 70px rgba(202, 255, 0, 0.08), 0 0 60px rgba(202, 255, 0, 0.05);
}

.orbit {
  border-color: rgba(202, 255, 0, 0.33);
}

.orbit::before {
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.element-card {
  color: var(--text);
  background: #090c08;
  border-color: var(--lime);
  box-shadow: 9px 9px 0 rgba(202, 255, 0, 0.18), 0 0 22px rgba(202, 255, 0, 0.08);
}

.element-card__symbol {
  color: var(--lime);
  text-shadow: 0 0 16px rgba(202, 255, 0, 0.3);
}

.voxel-cluster {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 9%;
  width: 185px;
  height: 150px;
  transform: rotate(-8deg) skewY(-4deg);
}

.voxel-cluster i {
  position: absolute;
  width: 51px;
  height: 51px;
  background: #141a11;
  border: 1px solid rgba(202, 255, 0, 0.45);
  box-shadow: inset -9px -9px 0 #080b07, 8px 8px 0 rgba(0, 0, 0, 0.58);
}

.voxel-cluster i:nth-child(1) { left: 0; bottom: 0; }
.voxel-cluster i:nth-child(2) { left: 53px; bottom: 0; background: var(--lime); box-shadow: inset -9px -9px 0 #93b900, 8px 8px 0 rgba(0,0,0,.58); }
.voxel-cluster i:nth-child(3) { left: 106px; bottom: 0; }
.voxel-cluster i:nth-child(4) { left: 53px; bottom: 53px; }
.voxel-cluster i:nth-child(5) { left: 106px; bottom: 53px; background: #25351a; }
.voxel-cluster i:nth-child(6) { left: 106px; bottom: 106px; width: 31px; height: 31px; background: var(--lime); box-shadow: inset -6px -6px 0 #93b900; }

.product-window {
  color: var(--text);
  background: #050705;
  border-color: #5b6c3e;
  box-shadow: 15px 17px 0 rgba(0, 0, 0, 0.88), 0 0 40px rgba(202, 255, 0, 0.1);
}

.product-window__topbar,
.product-sidebar {
  background: #0b0e09;
  border-color: #2b3128;
}

.build-tag,
.sidebar-logo {
  color: var(--night);
  background: var(--lime);
}

.product-panel h2 {
  color: var(--text);
}

.metric-grid,
.metric-grid > div,
.status-pill {
  border-color: #30372d;
}

.metric-grid strong,
.status-pill span,
.client-footer strong {
  color: var(--lime);
}

.code-panel {
  border-color: var(--lime);
  box-shadow: inset 0 0 30px rgba(202, 255, 0, 0.03);
}

.code-panel b,
.code-panel q {
  color: var(--lime-bright);
}

.float-note {
  color: #dce3d3;
  background: #0c100a;
  border-color: #4e5942;
  box-shadow: 4px 4px 0 #010201;
}

.float-note--bottom {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
}

.facts-strip {
  color: var(--text);
  background: var(--night-deep);
  border-color: #252c22;
}

.facts-strip article,
.facts-strip article:nth-child(-n+2) {
  border-color: #252c22;
}

.facts-strip__index {
  color: var(--night);
  background: var(--lime);
}

.facts-strip small {
  color: #697161;
}

.executor-band {
  position: relative;
  width: var(--shell);
  min-height: 88px;
  margin: 34px auto 0;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 140px 1fr 210px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(202, 255, 0, 0.035) 1px, transparent 1px),
    #080b07;
  background-size: 26px 100%;
  border: 1px solid #2d3528;
  box-shadow: inset 0 0 35px rgba(202, 255, 0, 0.025);
}

.executor-band__label {
  color: #737d6a;
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.14em;
}

.executor-band__command {
  font: 500 11px/1.4 var(--mono);
  color: #b8c0ae;
}

.executor-band__command > span,
.executor-band__command q {
  color: var(--lime);
}

.executor-band__command i {
  margin-left: 20px;
  padding: 6px 8px;
  color: var(--night);
  background: var(--lime);
  font-style: normal;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.executor-band__world {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  transform: skewY(-6deg);
}

.executor-band__world span {
  width: 31px;
  height: 31px;
  background: #192116;
  border: 1px solid #566447;
  box-shadow: 5px 5px 0 #020302;
}

.executor-band__world span:nth-child(2),
.executor-band__world span:nth-child(4) {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: inset -6px -6px 0 #8fb500, 5px 5px 0 #020302;
}

.features {
  padding-top: 120px;
}

.feature-grid {
  border-color: #30372d;
}

.feature-card,
.feature-card--dark {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(202, 255, 0, 0.025), transparent 45%),
    var(--panel);
  border-color: #30372d;
}

.feature-card--dark {
  background: var(--night-deep);
}

.feature-icon {
  color: var(--lime);
  border-color: #536044;
  background: rgba(202, 255, 0, 0.025);
}

.feature-card--dark .feature-icon {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
}

.card-diagram--timeline i,
.delivery-pulse i {
  background: var(--lime);
}

.card-diagram--timeline span,
.delivery-pulse i,
.os-chip,
.compat-meter__bar {
  border-color: #4f5a43;
}

.card-diagram--timeline .forever {
  color: var(--night);
  background: var(--lime);
}

.feature-card--lime {
  color: var(--night);
  background:
    linear-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.07) 1px, transparent 1px),
    var(--lime);
  background-size: 22px 22px;
}

.feature-card--lime h3,
.feature-card--lime p,
.feature-card--lime .card-number {
  color: var(--night);
}

.feature-card--lime .feature-icon,
.feature-card--lime .support-link {
  color: var(--night);
  border-color: var(--night);
}

.compat-meter__bar i {
  background: repeating-linear-gradient(135deg, var(--lime) 0 8px, #7ca000 8px 16px);
}

.compat-meter small {
  color: #70796a;
}

.process,
.final-cta,
.site-footer {
  color: var(--text);
  background: var(--night-deep);
}

.process {
  border-top: 1px solid #20271e;
  border-bottom: 1px solid #20271e;
}

.process-list,
.process-list li,
.site-footer,
.site-footer > p {
  border-color: #252d22;
}

.process-list p {
  color: #818a7a;
}

.process-glyph {
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 0 18px rgba(202, 255, 0, 0.1);
}

.pricing-card {
  color: var(--text);
  background:
    linear-gradient(rgba(202, 255, 0, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 255, 0, 0.022) 1px, transparent 1px),
    #0c100b;
  background-size: 30px 30px;
  border-color: #546044;
  box-shadow: 13px 13px 0 #010201, 0 0 45px rgba(202, 255, 0, 0.06);
}

.pricing-card::before {
  color: rgba(202, 255, 0, 0.18);
  -webkit-text-stroke-color: rgba(202, 255, 0, 0.48);
}

.pricing-card__description,
.pricing-note {
  color: var(--text-muted);
}

.stock-badge,
.pricing-card__price {
  border-color: #4b5541;
}

.stock-badge {
  color: var(--lime);
}

.stock-badge i {
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.pricing-button {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 5px 5px 0 rgba(202, 255, 0, 0.2);
}

.accordion summary {
  color: var(--text);
}

.accordion summary span {
  color: var(--lime);
  border-color: #4b5542;
}

.accordion summary:hover span,
.accordion details[open] summary span {
  color: var(--night);
  background: var(--lime);
}

.disclosure {
  color: var(--text);
  background: #0a0d09;
  border-color: #3f4938;
}

.disclosure__mark {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
}

.final-cta::before,
.final-cta::after {
  background: #242d20;
}

.final-cta__symbol {
  -webkit-text-stroke-color: #26311f;
}

.primary-button--light {
  color: var(--text);
  background: #11160f;
}

.checkout-panel {
  color: var(--text);
  background: #080b07;
  border-color: #3a4234;
}

/* Payment sandbox */
.demo-banner {
  min-height: 38px;
  padding: 8px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--lime);
  background: #151a12;
  border-bottom: 1px solid #35402e;
  font: 500 8px/1.35 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.demo-banner strong {
  color: var(--text);
  font-weight: 500;
}

.sandbox-alert {
  margin: 22px 0 18px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  background: rgba(202, 255, 0, .035);
  border: 1px solid #46533c;
  font: 400 8px/1.5 var(--mono);
}

.sandbox-alert span {
  padding: 7px 9px;
  color: var(--night);
  background: var(--lime);
  font-weight: 600;
  letter-spacing: .08em;
}

.sandbox-alert p { margin: 0; }

.sandbox-progress {
  padding: 0 0 19px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  color: #596151;
  border-bottom: 1px solid #30382c;
  font: 500 7px/1 var(--mono);
  letter-spacing: .08em;
}

.sandbox-progress i { height: 1px; background: #30382c; }
.sandbox-progress span.is-current { color: var(--lime); }
.sandbox-progress span.is-complete { color: var(--text); }

.checkout-step { animation: sandboxIn 240ms ease both; }
@keyframes sandboxIn { from { opacity: 0; transform: translateX(14px); } }

.sandbox-processor { padding-top: 23px; }
.sandbox-processor__head {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 600 9px/1 var(--mono);
}

.sandbox-processor__head > div { display: flex; align-items: center; gap: 9px; }
.sandbox-processor__head > div span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--lime);
  font: 800 17px/1 var(--display);
}

.sandbox-processor__head em {
  padding: 7px 9px;
  color: var(--lime);
  border: 1px solid #48553e;
  font-style: normal;
  letter-spacing: .08em;
}

.sandbox-card {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--night);
  background:
    linear-gradient(115deg, transparent 45%, rgba(255,255,255,.22) 46%, transparent 48%),
    var(--lime);
  border: 1px solid var(--lime);
  box-shadow: 8px 8px 0 #1b2417;
  transform: rotate(-1.5deg);
  font-family: var(--mono);
}

.sandbox-card > span { font-size: 7px; letter-spacing: .17em; }
.sandbox-card > strong { font-size: clamp(15px, 4.2vw, 20px); letter-spacing: .06em; }
.sandbox-card > div { display: flex; justify-content: space-between; }
.sandbox-card small { font-size: 7px; }

.sandbox-fields { margin-top: 24px; display: grid; gap: 13px; }
.sandbox-fields label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font: 500 7px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sandbox-fields > div { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.sandbox-fields input {
  width: 100%;
  height: 47px;
  padding: 0 12px;
  color: #aeb8a3;
  background: #0c100b;
  border: 1px solid #35402f;
  outline: 0;
  font: 500 10px/1 var(--mono);
}

.sandbox-charge {
  margin: 18px 0;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #30382c;
  border-bottom: 1px solid #30382c;
  font: 500 8px/1 var(--mono);
}
.sandbox-charge strong { color: var(--lime); font-size: 17px; }

.sandbox-back {
  width: 100%;
  margin-top: 14px;
  padding: 8px;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: 500 8px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sandbox-back:hover { color: var(--lime); }

.sandbox-processing {
  min-height: 430px;
  padding: 70px 0 20px;
  text-align: center;
}
.sandbox-spinner {
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
  padding: 8px;
  border: 1px dashed var(--lime);
  animation: sandboxSpin 1.8s linear infinite;
}
.sandbox-spinner span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--lime);
  font-size: 33px;
  font-weight: 800;
}
@keyframes sandboxSpin { to { transform: rotate(360deg); } }
.sandbox-processing > strong { color: var(--lime); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.sandbox-terminal {
  max-width: 330px;
  margin: 30px auto 0;
  padding: 16px;
  display: grid;
  gap: 12px;
  color: #838e7b;
  background: #050705;
  border: 1px solid #30382c;
  text-align: left;
  font: 400 8px/1.4 var(--mono);
}
.sandbox-terminal span { animation: terminalPulse 900ms ease infinite alternate; }
.sandbox-terminal span:nth-child(2) { animation-delay: 220ms; }
.sandbox-terminal span:nth-child(3) { animation-delay: 440ms; }
@keyframes terminalPulse { to { color: var(--lime); } }

.sandbox-success { padding-top: 30px; text-align: center; }
.sandbox-success__mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--lime);
  box-shadow: 8px 8px 0 #1c2418;
  font: 700 34px/1 var(--mono);
}
.sandbox-success h3 { margin: 10px 0; font-size: 34px; letter-spacing: -.045em; }
.sandbox-success > p { margin: 0 auto 22px; max-width: 360px; color: var(--text-muted); font: 400 9px/1.6 var(--mono); }
.sandbox-receipt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #35402f;
}
.sandbox-receipt > div { padding: 14px; display: grid; gap: 7px; text-align: left; }
.sandbox-receipt > div + div { border-left: 1px solid #35402f; }
.sandbox-receipt span,
.sandbox-key > span { color: var(--text-muted); font: 500 7px/1 var(--mono); letter-spacing: .09em; }
.sandbox-receipt strong { font: 500 9px/1 var(--mono); }
.sandbox-key {
  margin-top: 17px;
  padding: 18px;
  display: grid;
  gap: 13px;
  color: var(--lime);
  background: rgba(202,255,0,.035);
  border: 1px dashed #59684e;
}
.sandbox-key code { font: 500 11px/1.4 var(--mono); word-break: break-all; }
.sandbox-key button {
  padding: 10px;
  color: var(--night);
  background: var(--lime);
  border: 0;
  cursor: pointer;
  font: 600 8px/1 var(--mono);
  letter-spacing: .08em;
}
.sandbox-success__actions { margin-top: 20px; }

@media (max-width: 760px) {
  .demo-banner { justify-content: center; text-align: center; }
  .demo-banner > span { display: none; }
  .sandbox-alert { grid-template-columns: 1fr; }
  .sandbox-progress { gap: 6px; font-size: 6px; }
  .sandbox-card { min-height: 135px; }
}

.checkout-panel__head,
.checkout-product,
.checkout-assurance,
.checkout-form input[type="email"] {
  border-color: #384133;
}

.checkout-close {
  color: var(--text);
  border-color: #4b5542;
}

.checkout-close:hover {
  color: var(--night);
  background: var(--lime);
}

.checkout-product__icon {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
}

.checkout-product > div:nth-child(2) span,
.checkout-hint,
.checkout-assurance,
.check-row {
  color: var(--text-muted);
}

.checkout-form input[type="email"] {
  color: var(--text);
  background: #0d110c;
}

.toast {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 5px 5px 0 rgba(202, 255, 0, 0.2);
}

.legal-back {
  border-color: var(--lime);
}

.legal-content {
  border-color: var(--dark-line);
}

.legal-notice {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 5px 5px 0 rgba(202, 255, 0, 0.18);
}

.legal-content section {
  border-color: var(--dark-line);
}

.legal-footer {
  color: var(--text);
  background: var(--night-deep);
  border-top: 1px solid #232a20;
}

@media (max-width: 760px) {
  .site-nav {
    color: var(--text);
    background:
      linear-gradient(rgba(202, 255, 0, 0.03) 1px, transparent 1px),
      var(--night-deep);
    background-size: 100% 28px;
  }

  .site-nav > a {
    border-color: #30382c;
  }

  .hero h1 {
    font-size: clamp(53px, 17.5vw, 75px);
  }

  .hero .word-shift {
    margin-left: 2%;
    font-size: 0.64em;
    letter-spacing: -0.075em;
  }

  .hero__visual {
    min-height: 520px;
  }

  .voxel-cluster {
    left: -6px;
    bottom: 2%;
    transform: scale(0.72) rotate(-8deg) skewY(-4deg);
    transform-origin: left bottom;
  }

  .executor-band {
    min-height: 150px;
    padding: 25px 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .executor-band__command {
    font-size: 9px;
    overflow-wrap: anywhere;
  }

  .executor-band__command i {
    display: inline-block;
    margin: 10px 0 0;
  }

  .executor-band__world {
    position: absolute;
    right: 17px;
    top: 16px;
    height: auto;
    opacity: 0.42;
  }

  .executor-band__world span {
    width: 18px;
    height: 18px;
  }

  .pricing-card {
    box-shadow: 8px 8px 0 #010201;
  }
}
