:root {
  --black: #050605;
  --ink: #0a0c0a;
  --panel: #111411;
  --panel-2: #191d19;
  --white: #f6f8f4;
  --muted: #aeb7aa;
  --soft: #687064;
  --line: rgba(246, 248, 244, 0.13);
  --green: #9cff00;
  --green-2: #74d600;
  --green-dark: #1d3309;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(156, 255, 0, 0.13), transparent 24rem),
    linear-gradient(180deg, #050605 0%, #0a0c0a 48%, #050605 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(246, 248, 244, 0.08);
  background: rgba(5, 6, 5, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand img {
  height: 2rem;
  width: auto;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: drop-shadow(0 0 0.8rem rgba(156, 255, 0, 0.45));
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--green);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 8rem clamp(1.2rem, 5vw, 5rem) 4rem;
  overflow: hidden;
}

.hero-copy {
  max-width: 44rem;
  animation: rise 720ms ease both;
}

.hero-logo {
  width: min(28rem, 78vw);
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

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

h1 {
  margin-bottom: 1.1rem;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.8rem, 11vw, 9.5rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

.hero p {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: #d6dfd2;
  font-size: clamp(1.12rem, 1.65vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.45rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(156, 255, 0, 0.38);
  background: var(--green);
  color: #071000;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.secondary {
  background: rgba(156, 255, 0, 0.08);
  color: var(--white);
  border-color: rgba(246, 248, 244, 0.18);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -4rem;
  width: 3rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: skewX(-20deg);
  transition: left 420ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  left: calc(100% + 4rem);
}

.hero-visual {
  position: relative;
  min-height: min(34rem, 74svh);
  display: grid;
  place-items: center;
  animation: fade-in 880ms 160ms ease both;
}

.phone-shell {
  width: min(23rem, 68vw);
  aspect-ratio: 0.48;
  border: 1px solid rgba(246, 248, 244, 0.16);
  border-radius: 2.4rem;
  background: linear-gradient(180deg, #151815, #050605);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.44), 0 0 5rem rgba(156, 255, 0, 0.12);
  padding: 1.1rem;
  transform: rotate(-4deg);
}

.phone-screen {
  height: 100%;
  border-radius: 1.7rem;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(156, 255, 0, 0.18), transparent 32%),
    #090b09;
  border: 1px solid rgba(246, 248, 244, 0.12);
  padding: 1.2rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.metric {
  min-height: 5.4rem;
  padding: 0.85rem;
  border: 1px solid rgba(246, 248, 244, 0.11);
  border-radius: 0.7rem;
  background: rgba(246, 248, 244, 0.05);
}

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

.metric span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bolt {
  position: absolute;
  width: min(26rem, 74vw);
  height: 0.18rem;
  background: var(--green);
  box-shadow: 0 0 2rem rgba(156, 255, 0, 0.9);
  transform: rotate(-46deg);
}

.bolt.one {
  top: 21%;
  right: -12%;
}

.bolt.two {
  bottom: 17%;
  left: -10%;
  width: min(18rem, 54vw);
  transform: rotate(-34deg);
}

.band {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.band.light {
  background: #f7f9f3;
  color: #070907;
}

.band.light p,
.band.light li {
  color: #4e5849;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-top: 1.2rem;
  border-top: 1px solid currentColor;
}

.legal-shell {
  max-width: 58rem;
  margin: 0 auto;
  padding: 8.5rem clamp(1.2rem, 4vw, 2rem) 5rem;
}

.legal-shell h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

.legal-shell h2 {
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}

.legal-shell ul {
  padding-left: 1.25rem;
}

.doc-meta {
  margin-bottom: 3rem;
  color: var(--green);
  font-weight: 800;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: var(--green);
  color: #071000;
}

.contact-strip p {
  margin: 0;
  color: #213600;
  font-weight: 700;
}

.contact-strip .button {
  background: #071000;
  color: var(--white);
  border-color: #071000;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem clamp(1.2rem, 5vw, 5rem);
  border-top: 1px solid rgba(246, 248, 244, 0.1);
  color: var(--soft);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.reveal {
  animation: reveal 640ms ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .brand img:not(.brand-mark) {
    max-width: 7.8rem;
  }

  .nav {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }

  .hero-visual {
    min-height: 24rem;
    order: -1;
  }

  .phone-shell {
    width: min(18rem, 76vw);
    transform: rotate(-2deg);
  }

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

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero-logo {
    width: min(18rem, 84vw);
  }

  .button {
    width: 100%;
  }
}
