:root {
  color-scheme: dark;
  --bg: #000000;
  --bg-soft: #020807;
  --panel: rgba(4, 18, 17, .88);
  --panel-solid: #051412;
  --panel-strong: #08221f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .72);
  --subtle: rgba(255, 255, 255, .48);
  --border: #123832;
  --border-strong: #1f5e52;
  --green: #00ff88;
  --green-soft: #b7ff26;
  --cyan: #00d4ff;
  --cyan-soft: #25f0ff;
  --ink: #000000;
  --shadow: 0 28px 90px rgba(0, 0, 0, .46);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-h: 74px;
  font-family: -apple-system, BlinkMacSystemFont, "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 255, 136, .035), transparent 320px),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 14px;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid rgba(0, 255, 136, .16);
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(20px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  min-width: max-content;
  flex: 0 0 auto;
  color: var(--text);
  text-decoration: none;
}

.logo__mark {
  display: block;
  width: 36px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, .14));
}

.logo__wordmark {
  display: block;
  width: clamp(142px, 13vw, 168px);
  height: auto;
  aspect-ratio: 310 / 64;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 255, 136, .16));
}

.logo__text {
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
}

.logo__text span {
  color: var(--green-soft);
}

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

.nav a {
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(0, 255, 136, .08);
  color: var(--text);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 255, 136, .34);
  border-radius: 14px;
  background: rgba(0, 255, 136, .08);
  cursor: pointer;
}

.theme-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 15px 34px rgba(0, 255, 136, .22);
}

.btn--primary:hover {
  background: var(--cyan);
  box-shadow: 0 16px 34px rgba(0, 212, 255, .2);
}

.btn--secondary {
  border-color: rgba(0, 255, 136, .52);
  background: rgba(0, 0, 0, .45);
  color: var(--green);
}

.btn--secondary:hover {
  background: rgba(0, 255, 136, .12);
}

.btn--small {
  min-height: 42px;
  padding: 8px 15px;
  font-size: .88rem;
}

.text-short {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--home {
  min-height: calc(100svh - var(--header-h) - 110px);
  display: grid;
  align-items: center;
  padding: clamp(42px, 6vh, 58px) 0;
  background: #000;
  isolation: isolate;
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .92) 35%, rgba(0, 0, 0, .62) 68%, rgba(0, 0, 0, .22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, .86) 100%);
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, .8), rgba(0, 212, 255, .62), transparent);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.18) contrast(1.08);
}

.hero__content {
  position: relative;
  min-width: 0;
  max-width: 760px;
}

.deck-mark {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.deck-mark span + span {
  color: var(--green-soft);
  letter-spacing: .08em;
}

.quantum-liner {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 212, 255, .34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(199, 255, 36, .18), transparent 34%),
    linear-gradient(90deg, rgba(0, 255, 136, .13), rgba(0, 212, 255, .11));
  box-shadow: 0 0 0 1px rgba(0, 255, 136, .06), 0 18px 48px rgba(0, 212, 255, .11);
  color: var(--text);
  line-height: 1;
}

.quantum-liner__orb {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(199, 255, 36, .1), 0 0 22px rgba(199, 255, 36, .7);
}

.quantum-liner strong {
  color: var(--green-soft);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.quantum-liner small {
  color: rgba(255, 255, 255, .74);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
  white-space: nowrap;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  hyphens: manual;
  overflow-wrap: normal;
}

h2 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
}

h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 690px;
  margin-top: 21px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
}

.small {
  color: var(--subtle);
  font-size: .86rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__proof span {
  padding: 8px 12px;
  border: 1px solid rgba(0, 255, 136, .36);
  border-radius: 999px;
  background: rgba(0, 255, 136, .08);
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trustbar {
  border-bottom: 1px solid var(--border);
  background: #000;
}

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

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 30px;
  border-right: 1px solid var(--border);
}

.trustbar__item:last-child {
  border-right: 0;
}

.trustbar__item img {
  width: 36px;
  height: 36px;
  filter: saturate(1.2);
}

.trustbar__item strong,
.trustbar__item span {
  display: block;
}

.trustbar__item strong {
  color: var(--text);
}

.trustbar__item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .88rem;
}

.section {
  padding: 102px 0;
  position: relative;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(0, 255, 136, .035), rgba(0, 212, 255, .025)),
    var(--bg-soft);
  border-block: 1px solid rgba(0, 255, 136, .1);
}

.section--grid::before,
.section--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(0, 255, 136, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, .16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

.section > .container {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.section-heading {
  min-width: 0;
  max-width: 660px;
}

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

.section-heading p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.problem-stack {
  display: grid;
  gap: 16px;
}

.line-card,
.signal-card,
.product-card,
.roi-card,
.roi-results article,
.channel-card,
.buyer-card,
.price-card,
.onboarding-card,
.metric,
.card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(8, 34, 31, .9), rgba(3, 13, 12, .92));
  box-shadow: var(--shadow);
}

.line-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.line-card > span,
.signal-card__icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(0, 255, 136, .44);
  border-radius: 50%;
  background: rgba(0, 255, 136, .08);
  color: var(--green);
  font-size: .8rem;
  font-weight: 900;
}

.line-card h3,
.signal-card h3,
.channel-card h3 {
  margin-bottom: 9px;
}

.line-card p,
.signal-card p,
.channel-card p,
.card p {
  color: var(--muted);
}

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

.signal-card {
  min-height: 245px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.signal-card__icon {
  margin-bottom: 28px;
}

.section--buy {
  border-block: 1px solid rgba(0, 255, 136, .12);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 255, 136, .12), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(0, 224, 255, .08), transparent 34%),
    #000;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 275px;
  padding: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, .18), transparent 68%);
  pointer-events: none;
}

.product-card > span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(0, 255, 136, .44);
  border-radius: 50%;
  background: rgba(0, 255, 136, .08);
  color: var(--green);
  font-size: .8rem;
  font-weight: 900;
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-card p {
  color: var(--muted);
}

.product-card--strong {
  border-color: rgba(0, 255, 136, .72);
  background: linear-gradient(145deg, rgba(0, 255, 136, .18), rgba(3, 13, 12, .96));
  box-shadow: 0 0 0 1px rgba(0, 255, 136, .08), 0 28px 80px rgba(0, 255, 136, .14);
}

.roi-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.roi-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

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

.roi-fields label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.roi-fields input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid rgba(0, 255, 136, .34);
  border-radius: 12px;
  background: rgba(0, 0, 0, .36);
  color: var(--text);
  font-weight: 850;
}

.roi-fields input:focus {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

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

.roi-results article {
  min-height: 142px;
  padding: 22px;
  border-radius: var(--radius-md);
}

.roi-results strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.roi-results span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .88rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.split__copy,
.split__visual {
  min-width: 0;
}

.split--solution {
  grid-template-columns: 1.04fr .96fr;
}

.visual-frame {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--panel-solid);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-frame img {
  display: block;
  width: 100%;
}

.visual-frame--glow {
  box-shadow: 0 0 0 1px rgba(0, 255, 136, .06), 0 32px 90px rgba(0, 255, 136, .08);
}

.step-list {
  list-style: none;
  counter-reset: steps;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-top: 1px solid var(--border);
}

.step-list li::before {
  content: counter(steps);
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 900;
}

.step-list strong,
.step-list span {
  display: block;
  grid-column: 2;
}

.step-list strong {
  color: var(--text);
}

.step-list span {
  margin-top: 2px;
  color: var(--muted);
}

.visual-note {
  margin-top: 18px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.remote-panel {
  display: grid;
  gap: 18px;
}

.visual-frame--wide {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.visual-frame--wide img {
  width: 100%;
  min-height: 0;
  object-fit: contain;
}

.remote-panel__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(0, 255, 136, .38);
  border-radius: var(--radius-md);
  background: rgba(0, 255, 136, .06);
}

.remote-panel__copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  max-width: 780px;
}

.remote-panel__footer strong {
  color: var(--green);
}

.remote-panel__footer span {
  color: var(--muted);
}

.remote-panel__footer .btn {
  flex: 0 0 auto;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .96fr) minmax(0, .82fr);
  gap: 18px;
  align-items: stretch;
}

.platform-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.platform-list article {
  min-height: 132px;
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(5, 20, 18, .84);
}

.platform-list strong,
.platform-list span {
  display: block;
}

.platform-list strong {
  color: var(--green);
}

.platform-list span {
  margin-top: 9px;
  color: var(--muted);
  font-size: .93rem;
}

.platform-visual {
  display: block;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.platform-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 424px;
  object-fit: cover;
}

.platform-visual--center {
  position: relative;
  border-color: rgba(0, 255, 136, .42);
}

.platform-visual--center::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 36%, rgba(0, 0, 0, .28) 100%),
    linear-gradient(90deg, rgba(0, 255, 136, .16), transparent 28%, transparent 72%, rgba(0, 212, 255, .14));
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.buyer-card {
  min-height: 210px;
  padding: 22px;
  border-radius: var(--radius-md);
}

.buyer-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.buyer-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
}

.buyer-card p {
  color: var(--muted);
  font-size: .92rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.channel-card {
  min-height: 235px;
  padding: 26px;
  border-radius: var(--radius-md);
}

.channel-card--primary {
  border-color: rgba(0, 255, 136, .72);
  background: linear-gradient(145deg, rgba(0, 255, 136, .14), rgba(5, 20, 18, .94));
}

.channel-card img {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
}

.onboarding-layout,
.price-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}

.price-card {
  padding: 36px;
  border-color: rgba(0, 255, 136, .58);
  border-radius: var(--radius-lg);
}

.motion-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.price-card__action {
  margin-top: 28px;
}

.onboarding-card {
  padding: 30px;
  border-color: rgba(0, 212, 255, .34);
  border-radius: var(--radius-lg);
}

.onboarding-form__header {
  margin-bottom: 22px;
}

.onboarding-form__header h3 {
  margin-bottom: 8px;
}

.onboarding-form__header p,
.onboarding-note,
.form-status {
  color: var(--muted);
}

.onboarding-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.onboarding-fields label,
.checkbox-row {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.onboarding-fields label {
  display: grid;
  gap: 9px;
}

.onboarding-fields .field--wide {
  grid-column: 1 / -1;
}

.onboarding-fields input,
.onboarding-fields select,
.onboarding-fields textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid rgba(0, 255, 136, .34);
  border-radius: 12px;
  background: rgba(0, 0, 0, .36);
  color: var(--text);
  font: inherit;
  font-weight: 760;
}

.onboarding-fields textarea {
  min-height: 118px;
  resize: vertical;
}

.onboarding-fields input:focus,
.onboarding-fields select:focus,
.onboarding-fields textarea:focus {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.onboarding-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.form-status {
  margin-top: 12px;
  font-size: .86rem;
}

.onboarding-note {
  margin-top: 18px;
  font-size: .9rem;
}

.motion-steps div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.motion-steps strong {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.motion-steps span {
  color: var(--muted);
  text-align: right;
}

.comparison {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  color: var(--subtle);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td:first-child {
  color: var(--text);
  font-weight: 800;
}

td.highlight {
  color: var(--green);
  font-weight: 900;
}

.faq {
  max-width: 900px;
}

details {
  border-bottom: 1px solid var(--border);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--muted);
}

.section--cta {
  padding-top: 82px;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(0, 255, 136, .46);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 255, 136, .14), rgba(0, 212, 255, .06)),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 15ch;
}

.cta p {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
}

.cta__actions {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.contact-link {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--green);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 58px 0 28px;
  background: #000;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
}

.footer__brand .logo {
  margin-bottom: 18px;
}

.footer__brand .logo__wordmark {
  width: 172px;
  max-width: 100%;
}

.footer__brand .logo__mark {
  width: 40px;
  height: 44px;
}

.footer__brand p {
  max-width: 430px;
  margin-top: 0;
  color: var(--muted);
}

.footer__links {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--green);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--subtle);
  font-size: .84rem;
}

.hero--subpage {
  min-height: auto;
  padding: 110px 0 65px;
}

.hero--subpage .container {
  max-width: 900px;
}

.prose {
  max-width: 860px;
}

.prose h2 {
  margin-top: 58px;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 32px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose p {
  margin-top: 16px;
}

.prose li {
  margin: 8px 0;
}

.notice {
  padding: 16px 20px;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--panel-solid);
  color: var(--muted);
}

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

.card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 255, 136, .1);
}

.usecases,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.usecase,
.partner {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel-solid);
}

.usecase__meta {
  color: var(--green);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.usecase h3 {
  margin: 20px 0 12px;
}

.usecase p,
.usecase ul,
.partner p {
  color: var(--muted);
}

.metric {
  padding: 24px;
  border-radius: var(--radius-md);
}

.metric strong {
  display: block;
  color: var(--green);
  font-size: 2rem;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.team-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel-solid);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}

.team-card p {
  margin-top: 10px;
  color: var(--muted);
}

.team-card a {
  color: var(--green);
}

.reveal,
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1180px) {
  .nav a {
    padding-inline: 8px;
    font-size: .85rem;
  }
}

@media (max-width: 1040px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, .96);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 0;
    font-size: 1.05rem;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .header .btn--small {
    display: none;
  }

  .section-grid,
  .split,
  .split--solution,
  .roi-layout,
  .platform-layout,
  .onboarding-layout,
  .price-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .product-grid,
  .buyer-grid,
  .channel-grid,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-visual img {
    min-height: 360px;
  }

  .hero--home::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .9) 58%, rgba(0, 0, 0, .6) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .18) 40%, rgba(0, 0, 0, .9) 100%);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .logo {
    gap: 8px;
  }

  .logo__mark {
    width: 30px;
    height: 34px;
  }

  .logo__wordmark {
    width: 140px;
  }

  .logo__text {
    font-size: 1.03rem;
  }

  .hero--home {
    min-height: calc(100svh - var(--header-h) - 48px);
    padding: 48px 0 44px;
  }

  .hero--home::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .9) 68%, rgba(0, 0, 0, .7) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .32) 0%, rgba(0, 0, 0, .24) 40%, rgba(0, 0, 0, .92) 100%);
  }

  .hero__media img {
    object-position: 67% center;
  }

  .deck-mark {
    gap: 10px;
    margin-bottom: 13px;
    font-size: .66rem;
    letter-spacing: .18em;
  }

  .quantum-liner {
    gap: 8px;
    margin-bottom: 17px;
    padding: 8px 10px;
  }

  .quantum-liner strong,
  .quantum-liner small {
    font-size: .64rem;
    letter-spacing: .09em;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

  .lead {
    margin-top: 19px;
    font-size: 1rem;
  }

  .hero__actions {
    margin-top: 26px;
  }

  .hero__proof {
    margin-top: 20px;
  }

  .trustbar__grid,
  .signal-grid,
  .product-grid,
  .roi-fields,
  .roi-results,
  .onboarding-fields,
  .buyer-grid,
  .channel-grid,
  .platform-list,
  .cards,
  .usecases,
  .partner-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .trustbar__item {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .section {
    padding: 78px 0;
  }

  .section-heading--wide {
    margin-bottom: 34px;
  }

  .line-card {
    grid-template-columns: 44px 1fr;
    padding: 20px;
  }

  .signal-card,
  .product-card,
  .buyer-card,
  .channel-card {
    min-height: auto;
  }

  .visual-frame--wide img {
    width: 760px;
    max-width: none;
  }

  .remote-panel__footer {
    align-items: start;
    flex-direction: column;
  }

  .platform-visual img {
    min-height: 260px;
  }

  .price-card,
  .cta,
  .card,
  .usecase,
  .partner {
    padding: 24px;
  }

  .motion-steps div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .motion-steps span {
    text-align: left;
  }

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

  .footer__bottom {
    flex-direction: column;
  }

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

  .team-card img {
    max-width: 240px;
  }
}

@media (max-width: 390px) {
  .hero--home {
    min-height: auto;
    padding: 40px 0 38px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.4rem);
  }

  .lead {
    font-size: .96rem;
    line-height: 1.46;
  }

  .hero__proof {
    display: none;
  }

  .text-full {
    display: none;
  }

  .text-short {
    display: inline;
  }
}
