:root {
  --bg: #03070a;
  --panel: #071119;
  --panel-strong: #0b1b26;
  --line: #153447;
  --line-bright: #4edcff;
  --green: #78ff00;
  --green-soft: #b5ff6b;
  --blue: #78d9ff;
  --red: #ff3d57;
  --text: #f6fbff;
  --muted: #a4c1cc;
  --shadow: rgba(0, 0, 0, 0.45);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(3, 7, 10, 0.82);
  border-bottom: 1px solid rgba(120, 217, 255, 0.16);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
  background: rgba(3, 7, 10, 0.96);
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-block;
  height: 28px;
  position: relative;
  width: 28px;
}

.brand-mark::before {
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
  inset: 3px;
  position: absolute;
}

.brand-mark::after {
  background:
    linear-gradient(var(--green), var(--green)) center / 2px 100% no-repeat,
    linear-gradient(90deg, var(--green), var(--green)) center / 100% 2px no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  align-items: center;
  border: 1px solid rgba(120, 217, 255, 0.42);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-cta:hover,
.button:hover {
  border-color: rgba(120, 217, 255, 0.72);
  box-shadow: 0 0 24px rgba(120, 217, 255, 0.16);
  transform: translateY(-1px);
}

.nav-cta {
  color: var(--blue);
}

.button.primary {
  background: linear-gradient(135deg, rgba(120, 255, 0, 0.98), rgba(95, 255, 209, 0.94) 58%, rgba(78, 220, 255, 0.92));
  border-color: rgba(120, 255, 0, 0.78);
  color: #03100a;
  box-shadow: 0 0 24px rgba(120, 255, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.button.ghost {
  background: rgba(7, 17, 25, 0.72);
  color: var(--text);
}

.button.secondary {
  background: rgba(120, 217, 255, 0.1);
  color: var(--blue);
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  padding: 160px clamp(18px, 5vw, 72px) 80px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(120, 217, 255, 0.08) 44% 45%, transparent 45% 100%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.2), rgba(3, 7, 10, 0.88)),
    radial-gradient(circle at 72% 48%, rgba(255, 61, 87, 0.14), transparent 22%),
    radial-gradient(circle at 62% 36%, rgba(120, 255, 0, 0.12), transparent 18%),
    radial-gradient(circle at 28% 78%, rgba(120, 217, 255, 0.12), transparent 24%),
    #03070a;
  content: "";
  inset: 0;
  position: absolute;
}

.hero-scene {
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hud-window {
  background:
    linear-gradient(180deg, rgba(11, 27, 38, 0.82), rgba(3, 7, 10, 0.68)),
    rgba(7, 17, 25, 0.74);
  border: 1px solid rgba(120, 217, 255, 0.36);
  box-shadow:
    0 0 0 1px rgba(120, 217, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: absolute;
}

.hud-window::before {
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  content: "";
  height: 3px;
  left: -1px;
  opacity: 0.9;
  position: absolute;
  right: -1px;
  top: -1px;
}

.hud-main {
  aspect-ratio: 1.7 / 1;
  height: auto;
  right: 1.5vw;
  top: 130px;
  width: min(64vw, 980px);
}

.hud-short {
  bottom: 46px;
  height: 590px;
  right: clamp(220px, 29vw, 430px);
  width: 332px;
  z-index: 2;
}

.hud-top {
  align-items: center;
  border-bottom: 1px solid rgba(120, 217, 255, 0.18);
  display: flex;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
}

.hud-top span {
  background: var(--line);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.game-frame {
  inset: 34px 0 0;
  overflow: hidden;
  position: absolute;
}

.game-bar {
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  height: 4px;
}

.game-body {
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.02), rgba(3, 7, 10, 0.12)),
    linear-gradient(135deg, transparent 0 38%, rgba(120, 217, 255, 0.14) 38% 40%, transparent 40%),
    linear-gradient(45deg, rgba(120, 255, 0, 0.12), transparent 35%),
    #06101a;
  height: 100%;
  position: relative;
}

.game-body::after {
  background:
    linear-gradient(90deg, transparent, rgba(120, 217, 255, 0.22), transparent),
    repeating-linear-gradient(180deg, rgba(120, 217, 255, 0.08) 0 1px, transparent 1px 54px);
  content: "";
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
}

.hero-app-shot,
.short-app-shot {
  display: block;
  pointer-events: none;
}

.phone-preview {
  background: #05090d;
  border: 1px solid rgba(120, 217, 255, 0.48);
  border-radius: 30px;
  box-shadow:
    0 0 34px rgba(120, 217, 255, 0.2),
    0 0 68px rgba(120, 255, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  inset: 13px;
  overflow: hidden;
  position: absolute;
}

.phone-preview::after {
  background:
    linear-gradient(180deg, rgba(120, 217, 255, 0.12), transparent 18%),
    linear-gradient(0deg, rgba(3, 7, 10, 0.32), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.phone-short-video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.signal-line {
  background: linear-gradient(90deg, transparent, rgba(120, 217, 255, 0.86), transparent);
  box-shadow: 0 0 18px rgba(120, 217, 255, 0.24);
  height: 1px;
  opacity: 0.72;
  position: absolute;
}

.signal-line.one {
  left: 0;
  right: 0;
  top: 34%;
}

.signal-line.two {
  left: 15%;
  right: 0;
  top: 68%;
}

.hero-content {
  max-width: min(600px, 48vw);
  position: relative;
  width: min(100%, 600px);
  z-index: 2;
}

.eyebrow {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 620px;
  text-shadow: 0 0 34px rgba(120, 217, 255, 0.12);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.hero-copy,
.section-copy p,
.beta-panel p,
.final-cta p,
.legal-shell p,
.form-note {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.hero-actions,
.beta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-socials {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -12px;
}

.hero-socials a,
.social-strip a,
.proof-link {
  color: var(--blue);
  font-weight: 800;
}

.hero-socials a {
  background: rgba(7, 17, 25, 0.72);
  border: 1px solid rgba(120, 217, 255, 0.28);
  border-radius: 8px;
  padding: 7px 12px;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 38px 0 0;
  max-width: 760px;
}

.hero-stats div {
  background: linear-gradient(180deg, rgba(7, 17, 25, 0.52), rgba(7, 17, 25, 0.18));
  border-left: 2px solid var(--blue);
  box-shadow: inset 0 0 0 1px rgba(120, 217, 255, 0.08);
  padding: 12px 14px;
}

.hero-stats dt {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 900;
}

.hero-stats dd {
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.section-copy {
  max-width: 820px;
}

.section-copy.narrow {
  max-width: 700px;
}

.product-band,
.trust-band,
.pricing-band,
.proof-band {
  border-top: 1px solid rgba(120, 217, 255, 0.14);
}

.loop-grid,
.trust-grid,
.price-grid,
.proof-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.loop-grid,
.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.loop-grid article,
.trust-grid article,
.price-card,
.beta-panel,
.beta-list,
.proof-card {
  background:
    linear-gradient(180deg, rgba(10, 25, 35, 0.9), rgba(4, 11, 17, 0.84)),
    rgba(7, 17, 25, 0.78);
  border: 1px solid rgba(120, 217, 255, 0.2);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.loop-grid p,
.trust-grid p,
.price-card p,
.beta-list li,
.legal-shell li,
.proof-card p {
  color: var(--muted);
}

.step-number,
.tag,
.proof-kicker {
  color: var(--blue);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.proof-band {
  background: linear-gradient(180deg, rgba(7, 17, 25, 0.9), rgba(3, 7, 10, 0.94));
}

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

.latest-proof {
  align-items: center;
  background: rgba(7, 17, 25, 0.82);
  border: 1px solid rgba(120, 255, 0, 0.28);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 34px;
  padding: 24px;
}

.latest-proof h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.latest-proof p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 760px;
}

.latest-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.proof-card {
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.proof-card::before {
  background:
    linear-gradient(135deg, rgba(120, 255, 0, 0.16), transparent 36%),
    linear-gradient(45deg, transparent 0 48%, rgba(120, 217, 255, 0.28) 48% 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 61, 87, 0.11), transparent 54%);
  content: "";
  inset: 0;
  opacity: 0.8;
  position: absolute;
}

.proof-card.featured {
  border-color: rgba(120, 255, 0, 0.52);
}

.proof-card h3,
.proof-card p,
.proof-card span {
  position: relative;
  z-index: 1;
}

.proof-card h3 {
  font-size: 1.45rem;
  max-width: 420px;
}

.proof-link {
  bottom: 22px;
  left: 24px;
  position: absolute;
  right: 24px;
}

.social-strip {
  align-items: center;
  background: rgba(7, 17, 25, 0.72);
  border: 1px solid rgba(120, 217, 255, 0.18);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
}

.beta-band {
  align-items: stretch;
  background: linear-gradient(90deg, rgba(120, 255, 0, 0.08), rgba(120, 217, 255, 0.07));
  border-top: 1px solid rgba(120, 255, 0, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr 0.7fr;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  padding: 0 0 12px 24px;
  position: relative;
}

.check-list li::before {
  background: var(--green);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 8px;
}

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

.price-card {
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.price-card::before {
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  content: "";
  height: 3px;
  left: 0;
  opacity: 0.64;
  position: absolute;
  right: 0;
  top: 0;
}

.price-card::after {
  border: 1px solid rgba(120, 217, 255, 0.16);
  content: "";
  height: 150px;
  opacity: 0.8;
  position: absolute;
  right: -86px;
  top: -72px;
  transform: rotate(45deg);
  width: 150px;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card.early-access {
  border-color: rgba(120, 255, 0, 0.5);
  box-shadow: 0 0 30px rgba(120, 255, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.price-card.founder-access {
  border-color: rgba(120, 217, 255, 0.42);
  box-shadow: 0 0 34px rgba(120, 217, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.price-card.release-card {
  border-color: rgba(255, 61, 87, 0.26);
}

.price {
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.price-card .button {
  margin-top: 8px;
}

.price-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.price-links a {
  background: rgba(120, 217, 255, 0.08);
  border: 1px solid rgba(120, 217, 255, 0.28);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 900;
  padding: 10px 14px;
}

.price-note {
  font-size: 0.92rem;
  margin-top: 14px;
}

.price-note a {
  color: var(--blue);
  font-weight: 800;
}

.final-cta {
  align-items: center;
  background: #06101a;
  border-top: 1px solid rgba(255, 61, 87, 0.25);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.apply-form {
  background: rgba(7, 17, 25, 0.9);
  border: 1px solid rgba(120, 217, 255, 0.24);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.apply-form label {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.apply-form input,
.apply-form textarea {
  background: rgba(3, 7, 10, 0.78);
  border: 1px solid rgba(120, 217, 255, 0.3);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  min-height: 46px;
  padding: 12px 14px;
  width: 100%;
}

.apply-form textarea {
  min-height: 132px;
  resize: vertical;
}

.apply-form input:focus,
.apply-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(120, 255, 0, 0.14);
  outline: none;
}

.apply-form .button {
  margin-top: 6px;
  width: 100%;
}

.form-note {
  font-size: 0.92rem;
  margin: 4px 0 0;
}

.hidden-field {
  display: none;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(120, 217, 255, 0.14);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-links a {
  background: rgba(7, 17, 25, 0.72);
  border: 1px solid rgba(120, 217, 255, 0.28);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 800;
  padding: 10px 14px;
}

.simple-page {
  min-height: 100vh;
}

.legal-shell {
  margin: 0 auto;
  max-width: 880px;
  padding: 140px 24px 80px;
}

.legal-shell section {
  border-top: 1px solid rgba(120, 217, 255, 0.16);
  margin-top: 34px;
  padding-top: 26px;
}

.legal-shell h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  overflow-wrap: anywhere;
}

.legal-shell h2 {
  font-size: 1.5rem;
}

code {
  background: rgba(120, 217, 255, 0.1);
  border: 1px solid rgba(120, 217, 255, 0.18);
  border-radius: 6px;
  color: var(--blue);
  padding: 2px 6px;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero-content {
    max-width: 420px;
    width: 420px;
  }

  h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    max-width: 420px;
  }

  .hero-copy {
    max-width: 410px;
  }

  .hero-stats {
    max-width: 420px;
  }

  .hero-stats dt {
    font-size: 1.08rem;
  }
}

@media (min-width: 981px) and (max-width: 1080px) {
  .hero-content {
    max-width: 340px;
    width: 340px;
  }

  h1 {
    max-width: 340px;
  }

  .hero-copy {
    max-width: 330px;
  }

  .hero-stats {
    gap: 8px;
    grid-template-columns: 1fr;
    max-width: 330px;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 132px;
  }

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

  .hud-main {
    opacity: 0.32;
    right: -140px;
    top: 120px;
    width: 760px;
  }

  .hud-short {
    opacity: 0.48;
    right: -60px;
  }

  .loop-grid,
  .trust-grid,
  .price-grid,
  .proof-grid,
  .latest-proof,
  .beta-band {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  section[id] {
    scroll-margin-top: 76px;
  }

  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: 118px 18px 64px;
  }

  .hero-content {
    max-width: min(calc(100vw - 36px), 354px);
    width: min(calc(100vw - 36px), 354px);
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3rem);
    max-width: 100%;
  }

  .hero-copy,
  .section-copy p,
  .beta-panel p,
  .final-cta p,
  .legal-shell p,
  .form-note {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .beta-actions,
  .hero-socials,
  .latest-proof-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-socials a {
    text-align: center;
    width: 100%;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links a {
    text-align: center;
    width: 100%;
  }

  .hud-window {
    display: none;
  }

  .legal-shell {
    max-width: calc(100vw - 36px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .legal-shell h1 {
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }
}
