:root {
  --bg: #050806;
  --bg-soft: #09100c;
  --panel: #0c120f;
  --text: #f4f7f3;
  --muted: #a9b3ab;
  --muted-strong: #c9d0ca;
  --line: rgba(255, 255, 255, 0.11);
  --line-green: rgba(0, 245, 114, 0.32);
  --green: #00ed55;
  --green-bright: #00ff73;
  --black: #020403;
  --max: 1180px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  text-wrap: balance;
}

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

.nav {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 max(22px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 8, 6, 0.8);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 126px;
  height: auto;
}

.nav-action {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.2s ease;
}

.nav-action:hover,
.nav-action:focus-visible {
  border-color: var(--line-green);
  color: var(--green-bright);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 150px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(0, 245, 114, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 114, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, #000 45%, transparent 94%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 70px;
  right: -170px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(0, 245, 114, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 150px rgba(0, 245, 114, 0.09),
    0 0 150px rgba(0, 245, 114, 0.035);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
  min-height: 510px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-bright);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 16px var(--green-bright);
}

.hero h1 {
  max-width: 770px;
  margin: 24px 0 24px;
  font-size: clamp(54px, 6.5vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero h1 em,
.ecosystem h2 em {
  display: block;
  color: var(--green-bright);
  font-style: normal;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 22px;
  border: 0;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button-primary {
  color: #031006;
  background: linear-gradient(100deg, #00df1b, var(--green-bright));
  box-shadow: 0 16px 42px rgba(0, 245, 114, 0.17);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 50px rgba(0, 245, 114, 0.25);
}

.button-outline {
  border: 1px solid var(--line-green);
  color: var(--green-bright);
  background: rgba(0, 245, 114, 0.04);
}

.button-dark {
  color: #fff;
  background: #050806;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.text-link {
  border-bottom: 1px solid rgba(0, 245, 114, 0.36);
  color: #d7ded8;
  font-size: 15px;
  font-weight: 750;
}

.hero-copy > small {
  display: block;
  margin-top: 18px;
  color: #7f8a82;
  font-size: 14px;
}

.license-signal {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(0, 245, 114, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(
      160deg,
      rgba(0, 245, 114, 0.08),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(7, 12, 9, 0.92);
  box-shadow: var(--shadow);
}

.license-signal::before,
.license-signal::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.license-signal::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--green-bright);
  border-left: 2px solid var(--green-bright);
  border-radius: 24px 0 0;
}

.license-signal::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--green-bright);
  border-bottom: 2px solid var(--green-bright);
  border-radius: 0 0 24px;
}

.license-signal > span {
  color: #859189;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.license-signal h2 {
  margin: 20px 0 28px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.market-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.market-line b {
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #ced6d0;
  font-size: 14px;
}

.signal-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.signal-bottom div {
  display: grid;
  gap: 4px;
}

.signal-bottom small {
  color: #738078;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.signal-bottom strong {
  font-size: 16px;
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.trust-strip > div {
  display: grid;
  gap: 5px;
  padding: 23px 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-strip > div:first-child {
  padding-left: 0;
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: 26px;
  letter-spacing: -0.035em;
}

.trust-strip span {
  color: #8b968e;
  font-size: 14px;
}

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

.split-heading,
.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: clamp(45px, 8vw, 112px);
  align-items: end;
}

.section-heading h2,
.path-heading h2,
.objections h2 {
  margin: 18px 0 0;
  font-size: clamp(43px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading > p,
.path-heading > p,
.offer-heading p,
.objections-layout > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.ecosystem {
  padding: 102px 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(0, 245, 114, 0.07), transparent 25rem),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.market-card {
  min-height: 300px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.market-card-accent {
  background: linear-gradient(145deg, rgba(0, 245, 114, 0.11), rgba(255, 255, 255, 0.015));
}

.market-card > span {
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.market-card h3 {
  margin: 72px 0 13px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.market-card p {
  margin: 0;
  color: #98a39b;
  font-size: 15px;
  line-height: 1.62;
}

.path {
  padding: 102px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}

.path-heading > p {
  max-width: 500px;
  margin: 22px 0 30px;
}

.path-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.path-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.path-steps b {
  color: var(--green-bright);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.path-steps strong {
  display: block;
  font-size: 21px;
}

.path-steps p {
  margin: 5px 0 0;
  color: #8e9991;
  font-size: 15px;
}

.proof {
  padding: 102px 0;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

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

.proof-card {
  position: relative;
  min-height: 450px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #070a08;
}

.proof-card.featured {
  border-color: var(--line-green);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.proof-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(3, 7, 4, 0.97));
  pointer-events: none;
}

.proof-card figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 24px;
}

.proof-card figcaption span {
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.proof-card figcaption strong {
  font-size: 24px;
  line-height: 1.1;
}

.proof-card figcaption small {
  color: #aab5ad;
  font-size: 13px;
}

.proof-disclaimer {
  max-width: 760px;
  margin: 20px auto 0;
  color: #758078;
  font-size: 13px;
  text-align: center;
}

.offer {
  padding: 105px 0;
  background: var(--bg);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

.offer-heading {
  position: sticky;
  top: 116px;
}

.offer-heading h2 {
  margin: 18px 0 18px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.offer-heading p {
  max-width: 430px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.offer-details {
  padding: 42px;
  border: 1px solid var(--line-green);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(0, 245, 114, 0.1),
      transparent 22rem
    ),
    var(--panel);
}

.offer-badge {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.offer-details ul {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.offer-details li {
  position: relative;
  display: grid;
  gap: 3px;
  padding-left: 28px;
  color: #dce3dd;
  font-size: 16px;
}

.offer-details li b {
  font-size: 17px;
}

.offer-details li span {
  color: #89958c;
  font-size: 14px;
}

.offer-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 900;
}

.offer-details .button {
  width: 100%;
}

.legal-copy {
  display: block;
  margin-top: 18px;
  color: #7d8980;
  font-size: 13px;
  line-height: 1.55;
}

.objections {
  padding: 92px 0;
  border-top: 1px solid var(--line);
  background: #070b08;
}

.objections-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1.25fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  font-size: 17px;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 5px;
  color: var(--green-bright);
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 680px;
  margin: -4px 45px 22px 0;
  color: #909b93;
  font-size: 15px;
  line-height: 1.65;
}

.closing {
  padding: 78px 0;
  color: #021006;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(100deg, #00de1b, var(--green-bright));
}

.closing .section-label {
  color: rgba(1, 16, 5, 0.68);
}

.closing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: center;
}

.closing h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.closing p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.55;
}

footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #030504;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-layout img {
  width: 104px;
}

.footer-layout p,
.footer-layout > span {
  margin: 0;
  color: #768178;
  font-size: 12px;
  line-height: 1.5;
}

.footer-layout p {
  max-width: 750px;
}

.mobile-cta {
  display: none;
}

.lead-dialog {
  width: min(660px, calc(100% - 28px));
  max-height: min(780px, calc(100dvh - 28px));
  padding: 38px;
  overflow: auto;
  border: 1px solid var(--line-green);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(0, 245, 114, 0.1),
      transparent 19rem
    ),
    #0a0e0c;
  color: var(--text);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75);
}

.lead-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.dialog-close-form {
  position: absolute;
  top: 18px;
  right: 18px;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: #d6ddd7;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.dialog-copy h2 {
  max-width: 510px;
  margin: 14px 0 12px;
  font-size: clamp(38px, 6vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.dialog-copy p {
  max-width: 520px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field-grid label {
  display: grid;
  gap: 7px;
}

.field-grid label > span {
  color: #cdd5cf;
  font-size: 14px;
  font-weight: 750;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  font-size: 16px;
}

select option {
  background: #0b0f0c;
}

input:focus,
select:focus {
  border-color: rgba(0, 245, 114, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 245, 114, 0.08);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: #99a49c;
  font-size: 13px;
  line-height: 1.5;
}

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

.form-error {
  min-height: 22px;
  margin: 12px 0 8px;
  color: #ff8e8e;
  font-size: 14px;
}

.submit-button {
  width: 100%;
}

#leadForm > small {
  display: block;
  margin-top: 12px;
  color: #768178;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding-top: 125px;
  }

  .hero-layout,
  .path-layout,
  .offer-layout,
  .objections-layout,
  .closing-layout {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .proof-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-layout {
    gap: 44px;
  }

  .license-signal {
    max-width: 620px;
  }

  .trust-strip {
    margin-top: 62px;
  }

  .path-layout,
  .offer-layout {
    gap: 50px;
  }

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

  .offer-heading {
    position: static;
  }

  .objections-layout,
  .closing-layout {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 26px, var(--max));
  }

  .nav {
    min-height: 64px;
    padding-inline: 14px;
  }

  .brand img {
    width: 112px;
  }

  .nav-action {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-glow {
    top: 120px;
    right: -300px;
    width: 520px;
    height: 520px;
  }

  .hero-layout {
    gap: 38px;
  }

  .hero h1 {
    margin-block: 20px;
    font-size: clamp(48px, 15.2vw, 64px);
    line-height: 0.96;
  }

  .hero-copy > p {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .button,
  .path .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .license-signal {
    padding: 26px;
    border-radius: 21px;
  }

  .license-signal h2 {
    font-size: 42px;
  }

  .signal-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .trust-strip > div,
  .trust-strip > div:first-child {
    grid-template-columns: 110px 1fr;
    align-items: center;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .trust-strip strong {
    font-size: 21px;
  }

  .ecosystem,
  .path,
  .proof,
  .offer,
  .objections {
    padding: 76px 0;
  }

  .section-heading h2,
  .path-heading h2,
  .objections h2,
  .offer-heading h2 {
    font-size: 45px;
  }

  .section-heading > p,
  .path-heading > p,
  .offer-heading p {
    font-size: 16px;
  }

  .market-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .market-card {
    min-height: 0;
    padding: 23px;
  }

  .market-card h3 {
    margin-top: 36px;
  }

  .path-steps li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .proof-card,
  .proof-card img {
    min-height: 440px;
    height: 440px;
  }

  .proof-card.featured {
    transform: none;
  }

  .offer-details {
    padding: 26px;
    border-radius: 21px;
  }

  .faq-list summary {
    padding-right: 38px;
  }

  .closing {
    padding: 62px 0;
  }

  .closing h2 {
    font-size: 43px;
  }

  .closing .button {
    width: 100%;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 13px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 8, 6, 0.88);
    backdrop-filter: blur(16px);
    transform: translateY(120%);
    transition: transform 0.25s ease;
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-cta .button {
    width: 100%;
  }

  body.mobile-cta-visible {
    padding-bottom: 75px;
  }

  .lead-dialog {
    width: min(100% - 18px, 660px);
    max-height: calc(100dvh - 18px);
    padding: 27px 20px 23px;
    border-radius: 20px;
  }

  .dialog-close-form {
    top: 12px;
    right: 12px;
  }

  .dialog-copy {
    padding-right: 35px;
  }

  .dialog-copy h2 {
    font-size: 39px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

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

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