:root {
  color-scheme: dark;
  --bg: #050705;
  --panel: rgba(9, 18, 12, .88);
  --panel-strong: rgba(12, 31, 17, .94);
  --text: #f0fff2;
  --muted: #a2b6a7;
  --dim: #607466;
  --line: rgba(137, 255, 151, .24);
  --green: #7cff64;
  --green-hot: #b5ff88;
  --cyan: #72d8ff;
  --amber: #ffd66e;
  --red: #ff6d74;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(124, 255, 100, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 255, 100, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, .16) 50%);
  background-size: 100% 4px;
  opacity: .32;
}

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

.siteHeader {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 6, 4, .78);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(124, 255, 100, .58));
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #c0d6c4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav a {
  opacity: .82;
}

nav a:hover {
  color: var(--green-hot);
  opacity: 1;
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: 92px;
}

.hero {
  position: relative;
  min-height: clamp(540px, calc(100svh - 150px), 760px);
  display: grid;
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 64px) clamp(56px, 7vw, 86px);
  isolation: isolate;
  border-bottom: 1px solid rgba(124, 255, 100, .28);
}

.heroArt {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.12) contrast(1.08);
}

.heroShade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 3, .96) 0%, rgba(2, 4, 3, .72) 34%, rgba(2, 4, 3, .35) 58%, rgba(2, 4, 3, .86) 100%),
    linear-gradient(180deg, rgba(2, 4, 3, .18) 0%, rgba(2, 4, 3, .52) 76%, rgba(2, 4, 3, .94) 100%);
}

.heroContent {
  width: min(720px, 100%);
  text-shadow: 0 3px 20px rgba(0, 0, 0, .62);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-hot);
  font: 900 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9.5vw, 124px);
  line-height: .84;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(124, 255, 100, .42), 0 4px 34px rgba(0, 0, 0, .76);
}

.lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: #d3e5d6;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(181, 255, 136, .42);
  border-radius: 6px;
  background: rgba(2, 8, 4, .72);
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(124, 255, 100, .08);
}

.button.primary {
  border-color: rgba(181, 255, 136, .86);
  background: linear-gradient(180deg, rgba(92, 190, 70, .9), rgba(19, 72, 25, .96));
  box-shadow: 0 0 22px rgba(124, 255, 100, .34), inset 0 0 18px rgba(255, 255, 255, .12);
}

.marketTape {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 36px));
  margin: -30px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(181, 255, 136, .42);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 12, 7, .88);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .36), 0 0 28px rgba(124, 255, 100, .16);
  backdrop-filter: blur(12px);
}

.marketTape span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 16px;
  border-right: 1px solid rgba(181, 255, 136, .16);
  color: #bfd0c1;
  font: 800 12px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.marketTape span:last-child {
  border-right: 0;
}

.marketTape b {
  color: var(--green-hot);
  font-size: 11px;
}

.trustStrip,
.automationSection,
.progressSection,
.controlSection,
.showcase,
.screenGrid,
.licenseBand,
.planSection,
footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.trustStrip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trustStrip div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(14, 31, 18, .96), rgba(5, 10, 6, .96));
}

.trustStrip strong {
  color: var(--amber);
  font-size: 17px;
}

.trustStrip span {
  color: #c2d3c6;
  line-height: 1.45;
}

.automationSection {
  padding: clamp(58px, 8vw, 96px) 0 18px;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.featureCard,
.controlPanel {
  min-height: 176px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(12, 28, 16, .92), rgba(4, 8, 5, .96));
}

.featureMark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(181, 255, 136, .42);
  border-radius: 8px;
  color: var(--green-hot);
  background: rgba(124, 255, 100, .08);
  font: 900 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
}

.featureCard h3,
.controlPanel h3,
.neverPanel h3 {
  margin: 0;
  color: #f6fff7;
  font-size: 16px;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0;
}

.featureCard p {
  margin: 10px 0 0;
  color: #bfd1c3;
  font-size: 14px;
  line-height: 1.48;
}

.progressSection {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 5vw, 52px) 0;
}

.progressCopy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  text-transform: uppercase;
}

.progressCopy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #c5d8ca;
  font-size: 17px;
  line-height: 1.52;
}

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

.blendPath span {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(181, 255, 136, .24);
  border-radius: 8px;
  background: rgba(2, 7, 4, .72);
  color: #aebfb2;
  font: 800 12px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blendPath b {
  color: var(--green-hot);
  font-size: 13px;
}

.controlSection {
  padding: 24px 0 clamp(34px, 6vw, 64px);
}

.controlGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.controlPanel {
  min-height: 214px;
}

.controlPanel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.controlPanel li {
  color: #bfd1c3;
  font-size: 14px;
  line-height: 1.42;
}

.controlPanel li::before {
  content: "/";
  margin-right: 8px;
  color: var(--green-hot);
}

.neverPanel {
  margin-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 109, 116, .38);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(32, 8, 10, .8), rgba(5, 8, 6, .94));
}

.neverPanel h3 {
  margin-right: 6px;
  color: #ffd1d4;
}

.neverPanel span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 109, 116, .24);
  border-radius: 6px;
  color: #e3c5c8;
  background: rgba(0, 0, 0, .18);
  font-size: 13px;
}

.showcase {
  padding: clamp(56px, 8vw, 96px) 0 26px;
}

.sectionIntro {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 28px;
}

.sectionIntro h2,
.licenseBand h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: .95;
  text-transform: uppercase;
}

.sectionIntro p:not(.eyebrow),
.licenseBand p {
  margin: 0;
  color: #c5d8ca;
  font-size: 18px;
  line-height: 1.55;
}

.screenFrame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34), 0 0 28px rgba(124, 255, 100, .1);
}

.screenFrame.large {
  border-color: rgba(181, 255, 136, .44);
}

.screenZoom {
  width: 100%;
  display: block;
  position: relative;
  padding: 0;
  border: 0;
  background: #020402;
  color: inherit;
  cursor: zoom-in;
}

.screenZoom::after {
  content: "+";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 255, 136, .58);
  border-radius: 50%;
  background: rgba(3, 7, 4, .8);
  color: var(--green-hot);
  font: 900 22px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  box-shadow: 0 0 18px rgba(124, 255, 100, .22);
}

.screenZoom:hover img {
  filter: saturate(1.08) brightness(1.06);
}

.screenZoom:focus-visible,
.lightboxClose:focus-visible,
.lightboxBackdrop:focus-visible {
  outline: 2px solid var(--green-hot);
  outline-offset: 4px;
}

.screenFrame img,
.lightboxDialog img {
  display: block;
  width: 100%;
}

.screenFrame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.screenFrame figcaption {
  min-height: 60px;
  padding: 16px 18px;
  color: #c3d8c8;
  border-top: 1px solid rgba(181, 255, 136, .16);
  background: rgba(4, 8, 5, .78);
}

.screenGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(58px, 8vw, 100px);
}

.licenseBand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(12, 35, 17, .92), rgba(5, 8, 6, .96));
}

.licenseStats {
  display: grid;
  gap: 12px;
}

.licenseStats span {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(181, 255, 136, .2);
  border-radius: 6px;
  background: rgba(0, 0, 0, .22);
  color: #bfd0c4;
  font: 800 13px/1.35 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.licenseStats b {
  color: var(--green-hot);
  font-size: 12px;
}

.planSection {
  padding: 18px 0 70px;
}

.checkoutCodePanel {
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(181, 255, 136, .24);
  border-radius: 8px;
  background: rgba(3, 10, 5, .72);
}

.checkoutCodePanel label {
  display: grid;
  gap: 8px;
  color: var(--green-hot);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkoutCodePanel input {
  min-width: 0;
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(181, 255, 136, .28);
  border-radius: 6px;
  background: rgba(0, 0, 0, .24);
  color: #f3fff4;
  font: 800 13px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.planGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.planCard {
  min-height: 286px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(181, 255, 136, .24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 23, 14, .94), rgba(4, 8, 5, .96));
}

.planCard span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 255, 136, .45);
  border-radius: 8px;
  color: var(--green-hot);
  background: rgba(124, 255, 100, .08);
  font: 900 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.planCard h3 {
  margin: 0;
  color: #f6fff7;
  font-size: 17px;
  line-height: 1.18;
  text-transform: uppercase;
}

.planCard p {
  margin: 0;
  color: #c2d5c7;
  font-size: 14px;
  line-height: 1.5;
}

.planPrice {
  color: white;
  font-size: 34px;
  line-height: 1;
}

.planActions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
}

.planActions button,
.quoteActions button {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(181, 255, 136, .38);
  border-radius: 6px;
  background: rgba(2, 8, 4, .72);
  color: var(--green-hot);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.planActions button:hover,
.quoteActions button:hover {
  border-color: rgba(181, 255, 136, .8);
  background: rgba(124, 255, 100, .1);
}

.planCard.featured {
  border-color: rgba(255, 214, 110, .44);
}

.planCard.featured span {
  border-color: rgba(255, 214, 110, .58);
  color: var(--amber);
  background: rgba(255, 214, 110, .08);
}

.planCard.locked {
  border-color: rgba(114, 216, 255, .34);
}

.planCard.locked span {
  border-color: rgba(114, 216, 255, .5);
  color: var(--cyan);
  background: rgba(114, 216, 255, .08);
}

.checkoutPanel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(181, 255, 136, .34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(10, 28, 14, .96), rgba(4, 8, 5, .98));
}

.checkoutSummary h3 {
  margin: 0;
  color: white;
  font-size: clamp(26px, 4vw, 42px);
  line-height: .98;
  text-transform: uppercase;
}

.checkoutSummary p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #c2d5c7;
  line-height: 1.5;
}

.quoteTimer {
  width: max-content;
  margin-top: 18px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 214, 110, .34);
  border-radius: 8px;
  background: rgba(255, 214, 110, .08);
}

.quoteTimer span {
  color: #d9d1b5;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quoteTimer strong {
  color: var(--amber);
  font: 900 26px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.quoteGrid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.quoteGrid img {
  width: 220px;
  height: 220px;
  padding: 10px;
  border: 1px solid rgba(181, 255, 136, .28);
  border-radius: 8px;
  background: white;
}

.quoteFields {
  display: grid;
  gap: 10px;
}

.quoteFields label {
  display: grid;
  gap: 6px;
  color: var(--green-hot);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quoteFields input {
  min-width: 0;
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(181, 255, 136, .26);
  border-radius: 6px;
  background: rgba(0, 0, 0, .24);
  color: #f3fff4;
  font: 800 13px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.quoteActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.lightboxOpen {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease;
}

.lightbox.isOpen {
  opacity: 1;
  pointer-events: auto;
}

.lightboxBackdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, .86);
  cursor: zoom-out;
}

.lightboxDialog {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  overflow: hidden;
  border: 1px solid rgba(181, 255, 136, .5);
  border-radius: 8px;
  background: rgba(4, 9, 5, .98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .74), 0 0 36px rgba(124, 255, 100, .18);
}

.lightboxDialog img {
  max-height: calc(100svh - 112px);
  object-fit: contain;
  background: #020402;
}

.lightboxClose {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(181, 255, 136, .5);
  border-radius: 50%;
  background: rgba(3, 7, 4, .88);
  color: var(--green-hot);
  font-weight: 900;
  cursor: pointer;
}

.lightboxDialog p {
  min-height: 54px;
  margin: 0;
  padding: 16px 18px;
  color: #c3d8c8;
  border-top: 1px solid rgba(181, 255, 136, .16);
  background: rgba(4, 8, 5, .9);
}

footer {
  padding: 24px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .siteHeader,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .heroShade {
    background:
      linear-gradient(180deg, rgba(2, 4, 3, .62), rgba(2, 4, 3, .84) 42%, rgba(2, 4, 3, .96) 100%);
  }

  .marketTape,
  .trustStrip,
  .progressSection,
  .controlGrid,
  .screenGrid,
  .licenseBand,
  .checkoutPanel {
    grid-template-columns: 1fr;
  }

  .featureGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .progressSection {
    gap: 18px;
  }

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

  .marketTape {
    margin-top: -18px;
  }

  .marketTape span {
    border-right: 0;
    border-bottom: 1px solid rgba(181, 255, 136, .16);
  }

  .marketTape span:last-child {
    border-bottom: 0;
  }

  .trustStrip {
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .siteHeader {
    padding-inline: 14px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .hero {
    padding-inline: 16px;
  }

  .heroActions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trustStrip,
  .automationSection,
  .progressSection,
  .controlSection,
  .showcase,
  .screenGrid,
  .licenseBand,
  .planSection,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .screenFrame figcaption {
    font-size: 14px;
  }

  .featureGrid,
  .blendPath,
  .planGrid {
    grid-template-columns: 1fr;
  }

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

  .quoteGrid img {
    width: min(220px, 100%);
    height: auto;
  }

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

  .featureCard,
  .controlPanel {
    min-height: auto;
  }

  .lightbox {
    padding: 12px;
  }

  .lightboxDialog {
    width: calc(100vw - 24px);
  }

  .lightboxDialog img {
    max-height: calc(100svh - 126px);
  }
}
