:root {
  color-scheme: dark;
  --bg: #030b07;
  --bg-2: #07150d;
  --ink: #f4ffe8;
  --muted: #a8c8a7;
  --soft: #dff7cf;
  --green: #4dff83;
  --green-2: #9cff45;
  --gold: #d8bd72;
  --line: rgba(119, 255, 144, .27);
  --panel: rgba(5, 20, 12, .78);
  --panel-2: rgba(10, 36, 21, .82);
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(0, 0, 0, .5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 8%, rgba(77, 255, 131, .16), transparent 25rem),
    radial-gradient(circle at 90% 18%, rgba(216, 189, 114, .12), transparent 22rem),
    linear-gradient(180deg, #020604 0%, #06120b 48%, #020604 100%);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(77, 255, 131, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 189, 114, .035) 1px, transparent 1px);
  background-size: 22px 22px, 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .65), transparent 72%);
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

h1 {
  font-size: clamp(38px, 5.6vw, 76px);
}

.wrap {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(1, 7, 4, .88);
  backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(156, 255, 69, .42);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(77, 255, 131, .25);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  color: #f7ffe8;
  font-size: 18px;
  line-height: 1;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(15, 49, 27, .85);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
}

.main-nav a {
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #d2ecc8;
  font-size: 14px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fbffe8;
  border-color: rgba(156, 255, 69, .43);
  background: rgba(77, 255, 131, .1);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(119, 255, 144, .18);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 4, .92) 0%, rgba(3, 10, 5, .68) 38%, rgba(3, 8, 5, .22) 70%),
    linear-gradient(180deg, rgba(2, 5, 3, .1), #020604 98%);
  z-index: -1;
}

.hero-stage img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 640px);
  gap: 26px;
}

.signal {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-weight: 700;
}

.signal::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.hero-copy {
  padding: 28px 0 0;
}

.lead {
  max-width: 620px;
  margin-top: 18px;
  color: #ddf4d1;
  font-size: 18px;
}

.hero-rack {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.rack-cell {
  min-height: 86px;
  padding: 13px;
  border: 1px solid rgba(156, 255, 69, .25);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 34, 19, .82), rgba(2, 10, 5, .72));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.rack-cell strong {
  display: block;
  color: var(--soft);
  font-size: 22px;
}

.rack-cell span {
  color: var(--muted);
  font-size: 13px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(156, 255, 69, .45);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #41dd6e, #11883c);
  color: #021207;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(38, 213, 95, .18);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 255, 232, .75);
  box-shadow: 0 22px 45px rgba(38, 213, 95, .28);
}

.btn.ghost {
  color: #e9fce1;
  background: rgba(10, 39, 22, .78);
  box-shadow: none;
}

.ticker {
  transform: translateY(50%);
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(2, 10, 5, .92);
  box-shadow: var(--shadow);
}

.ticker div {
  min-height: 76px;
  padding: 13px 16px;
  border-right: 1px solid rgba(119, 255, 144, .16);
}

.ticker div:last-child {
  border-right: 0;
}

.ticker b {
  display: block;
  color: var(--green-2);
  font-size: 20px;
}

.ticker span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 76px 0;
}

.section.tight {
  padding-top: 110px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.section-head p {
  margin-top: 12px;
  font-size: 17px;
}

.split-lab {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #06120b;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-frame.tall img {
  aspect-ratio: 9 / 15;
  max-height: 780px;
  object-position: top center;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 32, 18, .84), rgba(3, 12, 7, .8));
  box-shadow: var(--shadow);
}

.pad {
  padding: 24px;
}

.checkline {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkline li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
}

.checkline b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #041509;
  background: radial-gradient(circle at 35% 25%, #e8ffd5, var(--green));
}

.checkline strong {
  display: block;
  color: #f2ffe6;
}

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

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

.rail-item {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(119, 255, 144, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(13, 48, 26, .82), rgba(3, 12, 7, .86));
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.rail-item::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 10%;
  height: 80px;
  background: radial-gradient(circle, rgba(77, 255, 131, .24), transparent 68%);
}

.rail-item:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 255, 69, .62);
  background:
    linear-gradient(180deg, rgba(19, 67, 36, .9), rgba(4, 14, 8, .92));
}

.rail-item h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.rail-item p:last-child {
  margin-bottom: 0;
}

.number-table {
  width: 100%;
  border-collapse: collapse;
}

.number-table th,
.number-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(119, 255, 144, .15);
  text-align: left;
}

.number-table th {
  color: var(--green-2);
  background: rgba(77, 255, 131, .07);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(156, 255, 69, .34);
  border-radius: 99px;
  color: #ecffe3;
  background: rgba(77, 255, 131, .1);
  font-weight: 700;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(119, 255, 144, .24);
  border-radius: var(--radius);
  background: rgba(4, 17, 10, .82);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  color: #f2ffe6;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-button::after {
  content: "+";
  color: var(--green);
  font-size: 22px;
}

.faq-item.open .faq-button::after {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.open .faq-panel {
  display: block;
}

.page-hero {
  padding: 54px 0 28px;
}

.page-banner {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  align-items: end;
  background: #06120b;
  box-shadow: var(--shadow);
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 4, .86), rgba(2, 8, 4, .28));
  z-index: 1;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner .page-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 32px;
}

.page-banner h1 {
  font-size: clamp(34px, 5vw, 62px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.content-flow h2 {
  margin: 28px 0 12px;
  font-size: 30px;
}

.content-flow h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.content-flow ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
}

.content-flow li {
  margin: 8px 0;
}

.side-sticky {
  position: sticky;
  top: 96px;
}

.side-sticky img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #f2ffe6;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(119, 255, 144, .28);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(1, 8, 4, .86);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(77, 255, 131, .25);
  border-color: rgba(77, 255, 131, .7);
}

.footer {
  border-top: 1px solid rgba(119, 255, 144, .2);
  background: rgba(1, 7, 4, .88);
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}

.footer .brand-mark {
  margin-bottom: 12px;
}

.footer h2,
.footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 7px 0;
  color: var(--muted);
  transition: color .2s ease;
}

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

.small-print {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 28px;
  border-top: 1px solid rgba(119, 255, 144, .14);
  color: #7fa47e;
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(1, 8, 4, .96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    padding: 12px;
  }

  .split-lab,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .side-sticky {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-inner,
  .container,
  .hero-content,
  .ticker,
  .footer-grid,
  .small-print {
    width: min(100% - 24px, var(--max));
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .hero-stage {
    min-height: 680px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-rack,
  .ticker,
  .rail-grid {
    grid-template-columns: 1fr;
  }

  .ticker {
    transform: none;
    margin-top: -32px;
  }

  .section.tight {
    padding-top: 58px;
  }

  .pad,
  .page-banner .page-copy {
    padding: 18px;
  }

  .page-banner {
    min-height: 420px;
  }

  .actions .btn {
    width: 100%;
  }

  .number-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
