:root {
  --black: #030403;
  --charcoal: #0b0f0d;
  --charcoal-2: #111712;
  --glass: rgba(16, 22, 18, .62);
  --glass-strong: rgba(13, 18, 15, .86);
  --line: rgba(255, 255, 255, .1);
  --line-green: rgba(166, 214, 58, .34);
  --text: #f4f6ef;
  --muted: rgba(244, 246, 239, .68);
  --soft: rgba(244, 246, 239, .44);
  --green: #a6d63a;
  --green-bright: #d7ff55;
  --olive: #667a33;
  --gold: #cfa75a;
  --blue: #7cd8ff;
  --danger: #ff695f;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .48);
  --hero-image: url("assets/hero-banner-optimized.webp");
  --camo-image: url("assets/bg-camo-dark-optimized.webp");
  --topo-image: url("assets/bg-topographic-dark-optimized.webp");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -12%, rgba(166, 214, 58, .18), transparent 27%),
    radial-gradient(circle at 82% 18%, rgba(124, 216, 255, .08), transparent 22%),
    var(--topo-image) center top / 980px auto repeat,
    linear-gradient(180deg, #050705 0%, #020302 48%, #070907 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

body.scrolled .site-header {
  height: 68px;
  background: rgba(4, 6, 4, .82);
  border-bottom-color: rgba(255, 255, 255, .08);
}

body.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(166, 214, 58, .16), transparent 28%),
    var(--topo-image) center top / 980px auto repeat,
    linear-gradient(180deg, #050705 0%, #020302 100%);
}

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 22px;
  align-content: center;
  background: #020302;
  transition: opacity .55s ease, visibility .55s ease;
}

.loader-mark {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7em;
  text-indent: .7em;
}

.loader-line {
  width: min(320px, 70vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.loader-line span {
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: loadLine 1.1s ease-in-out infinite;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

.fog {
  position: absolute;
  width: 70vw;
  height: 34vh;
  filter: blur(52px);
  opacity: .12;
  background: radial-gradient(ellipse, rgba(180, 220, 150, .6), transparent 68%);
  animation: drift 18s ease-in-out infinite alternate;
}

.fog-one {
  left: -22vw;
  top: 18vh;
}

.fog-two {
  right: -28vw;
  bottom: 20vh;
  animation-duration: 22s;
}

.scanline {
  position: absolute;
  inset: 0;
  opacity: .06;
  background: repeating-linear-gradient(180deg, transparent 0 9px, rgba(255,255,255,.22) 10px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .1));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: .28s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 15vw, 205px);
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(166,214,58,.34));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer a {
  transition: color .2s ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--green);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-green);
  border-radius: 4px;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.language-switch button {
  min-width: 34px;
  height: 28px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: rgba(255,255,255,.62);
  cursor: pointer;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .2s ease;
}

.language-switch button:hover,
.language-switch button.active {
  background: rgba(166,214,58,.16);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(166,214,58,.24);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: .25s ease;
}

.menu-open .menu-btn span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-btn span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  left: 14px;
  right: 14px;
  z-index: 39;
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  background: rgba(4, 6, 4, .96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: .24s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav a {
  padding: 16px;
  color: rgba(255,255,255,.78);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  background: rgba(166,214,58,.09);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42)),
    var(--hero-image) center / cover no-repeat,
    radial-gradient(circle at 50% 10%, rgba(166, 214, 58, .2), transparent 28%),
    linear-gradient(135deg, #192015, #020302 56%, #081008);
  transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(1.06);
  transition: transform .18s ease-out;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,.08), rgba(0,0,0,.72) 74%),
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.18) 34%, rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.1) 36%, #030403 100%);
}

.hero-water {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -10%;
  z-index: -2;
  height: 42vh;
  opacity: .48;
  background:
    repeating-linear-gradient(176deg, rgba(255,255,255,.11) 0 1px, transparent 1px 18px),
    radial-gradient(ellipse at center, rgba(166,214,58,.18), transparent 64%);
  filter: blur(.2px);
  transform: perspective(700px) rotateX(60deg);
  animation: waterShift 8s linear infinite;
}

.hero-content {
  width: min(1060px, calc(100% - 34px));
  padding: 132px 0 96px;
  text-align: center;
}

.hero-logo {
  width: min(520px, 78vw);
  height: auto;
  display: block;
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 28px rgba(166,214,58,.38));
}

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

h1 {
  margin: 0 auto 24px;
  max-width: 1120px;
  font-size: clamp(48px, 7.4vw, 112px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 20px 60px rgba(0,0,0,.78);
}

.hero-sub {
  max-width: 710px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2.2vw, 27px);
  line-height: 1.42;
}

.hero-actions,
.final-cta div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.built-line {
  margin: 22px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 46px;
  display: grid;
  place-items: start center;
  padding: 8px 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  animation: scrollDot 1.5s ease-in-out infinite;
}

.section {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) 0;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.eyebrow,
.card-code {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.section-head h2,
.app-copy h2,
.creator-panel h2,
.fund-copy h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .96;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-head p,
.app-copy p,
.creator-panel p,
.fund-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.glass-card,
.video-card,
.fund-panel,
.final-cta,
.timeline,
.proof-grid {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.glass-card::before,
.video-card::before,
.timeline::before,
.proof-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 24%, transparent 72%, rgba(166,214,58,.1));
  opacity: .5;
}

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

.feature-card {
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 0%, rgba(166,214,58,.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(9, 14, 10, .62);
  border-color: rgba(166,214,58,.16);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 42%),
    var(--camo-image) center / cover;
  opacity: .16;
  mix-blend-mode: screen;
}

.feature-card > img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  margin-bottom: 28px;
  padding: 8px;
  border: 1px solid rgba(166,214,58,.22);
  border-radius: 8px;
  background: rgba(0,0,0,.26);
  filter: drop-shadow(0 0 22px rgba(166,214,58,.28));
}

.feature-card h3,
.video-card h3,
.unlock-card h3,
.price-card h3,
.timeline h3 {
  margin: 18px 0 12px;
  color: white;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.feature-card p,
.video-card p,
.unlock-card p,
.timeline p {
  color: rgba(244, 246, 239, .72);
  line-height: 1.56;
}

.feature-card:hover,
.badge-card:hover,
.price-card:hover,
.video-card:hover {
  border-color: var(--line-green);
  transform: translateY(-5px);
}

.badge-card.active {
  border-color: var(--green);
  background:
    radial-gradient(circle at 50% 0%, rgba(166,214,58,.18), transparent 58%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: 0 0 34px rgba(166,214,58,.14);
}

.app-preview {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.phone-stage {
  position: relative;
  min-height: 620px;
  transform: translate3d(calc(var(--mx, 0) * -.18), calc(var(--my, 0) * -.18), 0);
  transition: transform .18s ease-out;
}

.app-mockup {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
}

.app-mockup img {
  width: min(980px, 128%);
  max-width: none;
  height: auto;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 44px 90px rgba(0,0,0,.62)) drop-shadow(0 0 34px rgba(166,214,58,.12));
}

.phone {
  position: absolute;
  width: 292px;
  min-height: 596px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.02) 30%),
    #070907;
  box-shadow: 0 40px 120px rgba(0,0,0,.62), 0 0 50px rgba(166,214,58,.12);
}

.phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 76px;
  height: 21px;
  border-radius: 0 0 16px 16px;
  background: #050605;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-main {
  left: 18%;
  top: 0;
  z-index: 4;
}

.phone-side {
  right: 5%;
  top: 80px;
  min-height: 500px;
  transform: rotate(6deg) scale(.86);
  opacity: .86;
}

.phone-screen {
  min-height: 570px;
  padding: 42px 18px 18px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72)),
    radial-gradient(circle at 50% 20%, rgba(166,214,58,.22), transparent 30%),
    #0b100c;
}

.phone-screen.compact {
  min-height: 474px;
}

.screen-top,
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.screen-top span,
.screen-top b,
.float-card span,
.activity-feed span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.catch-image {
  height: 218px;
  margin: 22px 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 62%, rgba(180,210,130,.52), transparent 22%),
    linear-gradient(180deg, rgba(24,35,24,.1), rgba(0,0,0,.58)),
    repeating-linear-gradient(160deg, rgba(255,255,255,.1) 0 1px, transparent 1px 16px),
    #141d13;
}

.phone h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.05;
}

.phone p {
  color: var(--muted);
  line-height: 1.5;
}

.metric-row {
  margin-top: 28px;
}

.metric-row span {
  display: grid;
  gap: 6px;
  width: 48%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
}

.metric-row b {
  color: white;
  font-size: 18px;
}

.bars {
  height: 230px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 48px 0 26px;
}

.bars i {
  flex: 1;
  min-height: 44px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--green-bright), rgba(166,214,58,.25));
  box-shadow: 0 0 18px rgba(166,214,58,.25);
}

.bars i:nth-child(1) { height: 42%; }
.bars i:nth-child(2) { height: 72%; }
.bars i:nth-child(3) { height: 56%; }
.bars i:nth-child(4) { height: 92%; }
.bars i:nth-child(5) { height: 64%; }

.float-card {
  position: absolute;
  z-index: 5;
  max-width: 230px;
  padding: 18px;
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  background: rgba(6, 8, 6, .78);
  box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 28px rgba(166,214,58,.12);
  backdrop-filter: blur(18px);
}

.float-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.float-one {
  left: 0;
  bottom: 88px;
}

.float-two {
  right: 0;
  bottom: 170px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .9fr;
  gap: 18px;
}

.video-card {
  min-height: 420px;
  padding: 18px;
  overflow: hidden;
}

.thumb {
  position: relative;
  height: 250px;
  display: flex;
  align-items: end;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.72)),
    repeating-linear-gradient(150deg, rgba(255,255,255,.11) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 50% 40%, rgba(166,214,58,.2), transparent 30%),
    #121812;
}

.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.7));
}

.thumb span {
  position: relative;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 4px;
  background: var(--green);
  color: #071005;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.thumb-premium {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.72)),
    radial-gradient(circle at 62% 36%, rgba(207,167,90,.28), transparent 26%),
    repeating-linear-gradient(150deg, rgba(255,255,255,.11) 0 1px, transparent 1px 22px),
    #19150f;
}

.premium .thumb span {
  background: var(--gold);
  color: #100c03;
}

.unlock-card {
  padding: 28px;
  align-content: center;
  display: grid;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(166,214,58,.2), transparent 34%),
    radial-gradient(circle at 100% 20%, rgba(207,167,90,.13), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    var(--glass);
}

.creator-badge-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.creator-badge-lockup span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.unlock-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 22px rgba(166,214,58,.28))
    drop-shadow(0 0 34px rgba(207,167,90,.16));
}

.creator-benefits {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.creator-benefits li {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.creator-benefits li::before {
  border-color: rgba(207,167,90,.7);
  background: rgba(207,167,90,.22);
}

.creator-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(28px, 5vw, 54px);
}

.check-list,
.price-card ul {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
}

.check-list {
  columns: 2;
}

li {
  position: relative;
  break-inside: avoid;
  margin: 13px 0;
  padding-left: 26px;
  color: rgba(255,255,255,.8);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  border: 1px solid var(--green);
  background: rgba(166,214,58,.24);
  transform: rotate(45deg);
}

.country-slots {
  display: grid;
  gap: 12px;
  align-content: center;
}

.country-slots div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.2);
}

.country-slots span {
  color: var(--muted);
  font-weight: 800;
}

.country-slots strong {
  color: var(--green);
  font-size: 22px;
  text-transform: uppercase;
}

.country-slots .closed strong {
  color: var(--danger);
}

.application-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(166,214,58,.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(166,214,58,.12), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(0,0,0,.22);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.sr-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.creator-form {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
}

.form-head {
  display: grid;
  gap: 6px;
}

.creator-form .form-head {
  grid-column: 1 / -1;
}

.form-head span,
.application-form label span,
.waitlist-status > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.form-head strong {
  color: white;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 950;
  text-transform: uppercase;
}

.application-form label {
  display: grid;
  gap: 8px;
}

.application-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0,0,0,.32);
  color: white;
  padding: 0 14px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.application-form input::placeholder {
  color: rgba(244,246,239,.34);
}

.application-form input:focus {
  border-color: rgba(166,214,58,.78);
  background: rgba(0,0,0,.46);
  box-shadow: 0 0 0 3px rgba(166,214,58,.1);
}

.form-legal-note {
  grid-column: 1 / -1;
  color: rgba(244,246,239,.6);
  font-size: 12px;
  line-height: 1.6;
}

.form-legal-note a {
  color: var(--green);
  font-weight: 850;
}

.checkbox-field {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
}

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

.checkbox-field span {
  color: rgba(244,246,239,.7) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
  text-transform: none !important;
}

.application-form .btn {
  align-self: end;
  width: 100%;
}

.application-form .btn[disabled] {
  cursor: wait;
  opacity: .66;
}

.application-form p {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
}

.application-form .form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  color: rgba(244,246,239,.72);
  font-weight: 750;
}

.application-form .form-status.success {
  color: var(--green);
}

.application-form .form-status.error {
  color: var(--danger);
}

.waitlist-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(22px, 5vw, 56px);
  padding: clamp(24px, 5vw, 54px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    var(--camo-image) center / cover,
    var(--glass);
}

.waitlist-status strong {
  display: block;
  margin: 10px 0 18px;
  color: white;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 950;
  letter-spacing: 0;
}

.waitlist-status strong b {
  color: var(--green);
  font: inherit;
}

.waitlist-status .check-list {
  columns: 1;
  margin-bottom: 0;
}

.fund-panel {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 28px;
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    var(--camo-image) center / cover,
    var(--glass);
}

.donation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.donation-buttons button {
  min-width: 100px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,.04);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: .2s ease;
}

.donation-buttons button:hover,
.donation-buttons button.active {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 26px rgba(166,214,58,.16);
}

.important-note {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sponsor-callout {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(166,214,58,.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(166,214,58,.13), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(0,0,0,.24);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}

.sponsor-callout span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.sponsor-callout p {
  margin: 12px 0 18px;
  color: rgba(244,246,239,.74);
  font-size: 15px;
  line-height: 1.6;
}

.sponsor-callout .btn {
  min-height: 46px;
  padding: 0 20px;
}

.fund-status {
  padding: 28px;
}

.fund-status > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.fund-status strong {
  display: block;
  margin: 8px 0 20px;
  color: white;
  font-size: clamp(38px, 5vw, 60px);
}

.progress-bar {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.progress-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-bright), var(--green));
  box-shadow: 0 0 26px rgba(166,214,58,.48);
}

.rewards,
.supporter-badges {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.rewards b {
  color: var(--green);
  text-transform: uppercase;
}

.rewards small {
  color: var(--muted);
}

.supporter-badges {
  grid-template-columns: repeat(4, 1fr);
}

.supporter-badges em {
  padding: 9px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  min-height: 438px;
  padding: 28px;
  overflow: hidden;
  transition: .24s ease;
}

.price-card.featured {
  border-color: rgba(166,214,58,.78);
  background:
    radial-gradient(circle at 50% -5%, rgba(166,214,58,.2), transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018)),
    var(--glass-strong);
}

.price-card h3 {
  min-height: 48px;
  margin-top: 18px;
}

.price {
  margin: 12px 0 18px;
  color: white;
  font-size: 43px;
  font-weight: 950;
  letter-spacing: 0;
}

.popular,
.limited {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--green);
  color: #071005;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.limited {
  background: transparent;
  border: 1px solid rgba(207,167,90,.62);
  color: var(--gold);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.badge-card {
  min-height: 182px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: .24s ease;
}

.badge-card img {
  width: 78px;
  height: 78px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(166,214,58,.16));
}

.badge-card strong {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.badge-card.supporter img { filter: drop-shadow(0 0 22px rgba(181,123,69,.22)); }
.badge-card.founder img { filter: drop-shadow(0 0 24px rgba(166,214,58,.2)); }
.badge-card.elite img { filter: drop-shadow(0 0 26px rgba(207,167,90,.24)); }
.badge-card.creator img { filter: drop-shadow(0 0 26px rgba(124,216,255,.2)); }
.badge-card.legend img { filter: drop-shadow(0 0 28px rgba(255,255,255,.2)); }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 34px;
  overflow: hidden;
}

.timeline article {
  position: relative;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 52px;
  width: calc(100% - 18px);
  height: 1px;
  background: linear-gradient(90deg, var(--line-green), transparent);
}

.timeline article:last-child::before {
  display: none;
}

.timeline span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
}

.proof {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: stretch;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.proof-grid div {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
}

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

.proof-grid strong {
  color: white;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
}

.proof-grid span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.activity-feed {
  padding: 24px;
}

.activity-feed p {
  margin: 14px 0 0;
  padding: 13px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.final-cta {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto clamp(54px, 7vw, 94px);
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
}

.site-footer {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
  padding: 34px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  width: 170px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 18px 26px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-copy {
  flex-basis: 100%;
  margin: -8px 0 0;
  color: rgba(244,246,239,.48);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.legal-footer {
  width: min(1060px, calc(100% - 34px));
  margin: -36px auto 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(244,246,239,.48);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.legal-footer p {
  margin: 0;
}

.not-found-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(5,7,5,.78), rgba(5,7,5,.9)),
    url("assets/hero-banner-optimized.webp") center / cover fixed,
    var(--black);
}

.not-found-shell {
  width: min(920px, calc(100% - 34px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 74px) 0;
  display: grid;
  align-content: center;
  gap: 30px;
}

.not-found-brand {
  width: 220px;
}

.not-found-panel {
  max-width: 720px;
  padding: clamp(28px, 6vw, 64px);
  background:
    radial-gradient(circle at 100% 0%, rgba(166,214,58,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    var(--glass-strong);
}

.not-found-panel h1 {
  margin: 0 0 16px;
  color: white;
  font-size: clamp(54px, 11vw, 112px);
  line-height: .9;
  text-transform: uppercase;
}

.not-found-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.legal-shell {
  width: min(920px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 74px) 0;
}

.legal-shell-wide {
  width: min(1060px, calc(100% - 34px));
}

.legal-brand {
  width: 220px;
  margin-bottom: 28px;
}

.legal-card {
  padding: clamp(26px, 5vw, 54px);
  background:
    radial-gradient(circle at 100% 0%, rgba(166,214,58,.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    var(--glass-strong);
}

.legal-card h1 {
  max-width: 760px;
  margin: 8px 0 10px;
  font-size: clamp(42px, 7vw, 82px);
}

.legal-date {
  margin: 0 0 34px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-card section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-card p {
  max-width: 760px;
  margin: 0 0 12px;
  color: rgba(244,246,239,.74);
  font-size: 17px;
  line-height: 1.75;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a:not(.btn) {
  color: var(--green);
}

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

.legal-list li {
  margin: 0;
  color: rgba(244,246,239,.74);
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(166,214,58,.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(166,214,58,.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(5, 8, 6, .94);
  box-shadow: 0 28px 90px rgba(0,0,0,.52);
  backdrop-filter: blur(18px);
}

.cookie-banner p {
  margin: 0;
  color: rgba(244,246,239,.76);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0 15px;
  font-size: 10px;
}

.cookie-settings {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.cookie-settings label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(244,246,239,.72);
  font-size: 12px;
  font-weight: 850;
}

.cookie-settings input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--line-green);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #071005;
  box-shadow: 0 0 34px rgba(166, 214, 58, .32);
}

.btn-glass {
  background: rgba(255,255,255,.04);
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(166, 214, 58, .22);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loadLine {
  from { transform: translateX(-120%); }
  to { transform: translateX(300%); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(14vw, -4vh, 0); }
}

@keyframes waterShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 160px 24px, 0 0; }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(18px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 16px;
  }

  .language-switch button {
    min-width: 30px;
  }

  .feature-rail,
  .pricing-grid,
  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid,
  .app-preview,
  .creator-panel,
  .creator-form,
  .fund-panel,
  .waitlist-panel,
  .proof {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 650px;
  }

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

  .timeline article::before {
    left: 19px;
    top: 42px;
    width: 1px;
    height: calc(100% + 8px);
    background: linear-gradient(180deg, var(--line-green), transparent);
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .language-switch {
    margin-left: auto;
    margin-right: 10px;
  }

  .menu-btn {
    display: block;
  }

  .site-header {
    height: 74px;
  }

  .brand {
    width: 164px;
  }

  .hero-content {
    padding-top: 118px;
  }

  .phone-stage {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(166,214,58,.16);
    border-radius: var(--radius);
    background:
      radial-gradient(circle at 50% 0%, rgba(166,214,58,.12), transparent 48%),
      linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
      rgba(4, 7, 5, .68);
    box-shadow: 0 28px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
    transform: none;
  }

  .app-mockup {
    position: relative;
    inset: auto;
    display: block;
  }

  .app-mockup img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 7px;
  }

  .float-one {
    left: auto;
  }

  .float-two {
    right: auto;
  }

  .float-card {
    position: relative;
    inset: auto;
    max-width: none;
    width: 100%;
  }

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

  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .final-cta,
  .site-footer {
    display: grid;
    text-align: center;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
  }

  .site-footer nav {
    justify-content: center;
  }

  .footer-copy {
    margin: 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 24px, 1220px);
    padding: 52px 0;
  }

  .hero-content {
    width: min(100% - 24px, 1060px);
  }

  .language-switch {
    gap: 2px;
    padding: 3px;
  }

  .language-switch button {
    min-width: 27px;
    height: 27px;
    font-size: 9px;
    letter-spacing: .08em;
  }

  h1 {
    font-size: 44px;
  }

  .hero-logo {
    width: min(420px, 82vw);
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-actions,
  .final-cta div {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 11px;
  }

  .feature-rail,
  .pricing-grid,
  .badge-grid,
  .proof-grid,
  .supporter-badges {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .price-card {
    min-height: auto;
  }

  .float-card {
    padding: 14px;
  }

  .check-list {
    columns: 1;
  }

  .country-slots div {
    min-height: 64px;
    padding: 0 14px;
  }

  .country-slots strong {
    font-size: 17px;
  }

  .fund-panel,
  .creator-panel,
  .waitlist-panel,
  .timeline,
  .final-cta {
    padding: 24px;
  }

  .application-form {
    padding: 18px;
  }

  .donation-buttons button {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .site-footer nav {
    display: grid;
  }
}
