:root {
  color-scheme: dark;
  --bg: #070907;
  --bg-2: #0c100d;
  --panel: #111711;
  --panel-2: #171e17;
  --text: #f4f6ef;
  --muted: #b5bdae;
  --soft: #7f8d7a;
  --line: #2c382d;
  --line-strong: #46563f;
  --green: #9bd331;
  --green-2: #5e8e23;
  --yellow: #f2c84b;
  --danger: #ff684e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(8, 12, 8, 0.96), rgba(7, 9, 7, 1) 42%),
    repeating-linear-gradient(90deg, rgba(155, 211, 49, 0.05) 0, rgba(155, 211, 49, 0.05) 1px, transparent 1px, transparent 52px),
    var(--bg);
  letter-spacing: 0;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

.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;
}

.is-hidden {
  display: none !important;
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  background: #0d140c;
  font-size: 0.78rem;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy span:first-child {
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 92px 18px 38px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(155, 211, 49, 0.12), transparent 42%),
    linear-gradient(0deg, rgba(7, 9, 7, 1), rgba(7, 9, 7, 0) 34%);
  pointer-events: none;
}

.hero-inner,
.section-inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  gap: 28px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  max-width: 12ch;
  font-size: 2.55rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.22;
}

.hero-subhead {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.email-form {
  display: grid;
  gap: 9px;
  width: 100%;
}

.hero-action {
  max-width: 560px;
}

.email-row {
  display: grid;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  background: rgba(11, 16, 11, 0.9);
  padding: 0 15px;
  outline: 0;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--green) 50%) calc(100% - 20px) 50% / 8px 8px no-repeat,
    linear-gradient(135deg, var(--green) 50%, transparent 50%) calc(100% - 15px) 50% / 8px 8px no-repeat,
    rgba(11, 16, 11, 0.9);
}

textarea {
  min-height: 112px;
  padding: 14px 15px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--soft);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(155, 211, 49, 0.16);
}

.email-row button,
.wide-button {
  min-height: 54px;
  border-radius: 8px;
  color: #071007;
  background: var(--green);
  padding: 0 18px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.email-row button:hover,
.wide-button:hover {
  background: #b3eb41;
  transform: translateY(-1px);
}

.email-row button:disabled,
.wide-button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.form-status[data-tone="error"] {
  color: #ffb5a8;
}

.form-status[data-tone="success"] {
  color: #cdf58b;
}

.consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #dce6d2;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.42;
}

.consent-check input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--green);
}

.trust-line {
  margin: 0;
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.42;
}

.video-placeholder {
  width: min(100%, 230px);
  margin: 0 auto;
}

.video-shell {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(155, 211, 49, 0.45);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0.055) 1px, transparent 1px, transparent 8px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.54));
  pointer-events: none;
}

.video-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-topline,
.video-caption {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-topline {
  top: 14px;
}

.video-topline span:first-child::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--danger);
}

.video-caption {
  bottom: 14px;
  align-items: end;
  color: #eaf2dd;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--text);
  transform: translate(-42%, -50%);
}

.qualification,
.benefits,
.use-cases,
.final-cta,
.thanks {
  padding: 54px 18px;
}

.qualification {
  background:
    linear-gradient(180deg, rgba(155, 211, 49, 0.08), rgba(155, 211, 49, 0.02)),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.section-heading h2 {
  max-width: 14ch;
}

.qualification-form {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field label,
.field legend {
  color: #e8edde;
  font-size: 0.94rem;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 20, 14, 0.9);
  padding: 12px;
  color: var(--muted);
  font-weight: 750;
}

.choice input {
  width: 18px;
  flex: 0 0 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--green);
}

.choice:has(input:checked) {
  border-color: var(--green);
  color: var(--text);
  background: rgba(155, 211, 49, 0.11);
}

.benefits {
  background: var(--bg);
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 23, 17, 0.76);
  padding: 18px;
}

.benefit-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

.use-cases {
  background: #0a0d0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.use-case-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-case-list li {
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px 16px;
  color: #ecf3e4;
  font-weight: 850;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(155, 211, 49, 0.11), transparent 56%),
    #0d120d;
}

.cta-inner {
  display: grid;
  gap: 22px;
}

.site-footer {
  padding: 24px 18px 34px;
  color: var(--soft);
  background: #070907;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 750;
}

.thanks {
  background: var(--bg);
  text-align: center;
}

.thanks h2 {
  margin-bottom: 8px;
}

.thanks p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (min-width: 520px) {
  .email-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .email-row button {
    min-width: 188px;
  }

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

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

@media (min-width: 760px) {
  .site-header {
    padding: 26px 36px;
  }

  .hero {
    display: grid;
    align-items: center;
    padding: 88px 36px 36px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 52px;
  }

  .hero-action {
    grid-column: 1;
    grid-row: 2;
  }

  .video-placeholder {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 320px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-subhead {
    font-size: 1.12rem;
  }

  .qualification,
  .benefits,
  .use-cases,
  .final-cta,
  .thanks {
    padding: 78px 36px;
  }

  .section-inner {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 48px;
    align-items: start;
  }

  .section-heading {
    margin-bottom: 0;
  }

  .benefit-list,
  .use-case-list {
    grid-column: 2;
  }

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

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

  .benefit {
    min-height: 235px;
  }

  .cta-inner {
    align-items: center;
  }

  .cta-inner .email-form {
    align-self: center;
  }

  .thanks .section-inner {
    display: block;
  }
}

@media (min-width: 1040px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .video-placeholder {
    width: 340px;
  }
}
