:root {
  --bg: #05070b;
  --bg-2: #0b0e15;
  --panel: #0e131d;
  --panel-2: #151c28;
  --text: #f7f7ef;
  --muted: #8d96a8;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .22);
  --green: #2de38b;
  --red: #ff453a;
  --blue: #4c7dff;
  --cyan: #10d0e6;
  --paper: #f3efe4;
  --shadow: 0 40px 120px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 6%, rgba(76, 125, 255, .24), transparent 34rem),
    radial-gradient(circle at 12% 68%, rgba(255, 69, 58, .11), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 60%, #07090e);
  color: var(--text);
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}

a { color: inherit; }

.nav {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100vw - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 11, .72);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(0,0,0,.34);
}

.brand,
.nav a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .12em;
}

.brandMark {
  width: 11px;
  height: 25px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 7px rgba(76,125,255,.12);
}

.nav nav {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.nav nav a,
.navCta {
  border-radius: 999px;
  padding: 9px 11px;
  color: rgba(247,247,239,.72);
  font-size: 14px;
  font-weight: 850;
}

.nav nav a:hover {
  background: rgba(255,255,255,.08);
  color: var(--text);
}

.navTools {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 9px 10px;
  font-weight: 900;
}

option {
  color: #111;
}

.navCta {
  background: var(--text);
  color: var(--bg);
}

.hero,
.statement,
.method,
.eventSection,
.pricing,
.loginPreview,
.finalCta,
.siteFooter {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 132px 0 72px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--green);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -.06em;
}

h1 {
  max-width: 720px;
  font-size: clamp(58px, 8.4vw, 128px);
  line-height: .82;
}

h2 {
  font-size: clamp(42px, 6vw, 88px);
  line-height: .86;
}

.lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.heroProof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.heroProof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(45, 227, 139, .24);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(45, 227, 139, .075);
  color: rgba(247,247,239,.82);
  font-size: 12px;
  font-weight: 900;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primaryBtn,
.ghostBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 14px 17px;
  text-decoration: none;
  font-weight: 950;
}

.primaryBtn {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 22px 55px rgba(255,255,255,.12);
}

.ghostBtn {
  border: 1px solid var(--line);
  color: var(--text);
}

.opsStage {
  position: relative;
  min-height: 620px;
}

.watchMap {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(620px, 100%);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    radial-gradient(circle at 50% 50%, rgba(76,125,255,.2), transparent 18rem);
  box-shadow: var(--shadow);
  transform: rotate(-2.5deg);
}

.watchMap::before {
  content: "";
  position: absolute;
  inset: 72px 28px 74px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .9;
}

.sweep {
  position: absolute;
  inset: 72px 28px 74px;
  background: conic-gradient(from 120deg, transparent, rgba(76,125,255,.28), transparent 30%);
  border-radius: 28px;
  animation: spin 7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.node {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 11px rgba(45,227,139,.13);
}

.n1 { left: 22%; top: 28%; }
.n2 { right: 20%; top: 24%; }
.n3 { left: 54%; top: 54%; }
.n4 { right: 24%; bottom: 22%; }

.node.danger {
  background: var(--red);
  box-shadow: 0 0 0 18px rgba(255,69,58,.14);
  animation: dangerPulse 1.4s ease-in-out infinite;
}

@keyframes dangerPulse {
  50% { transform: scale(1.55); }
}

.mapHeader {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.liveDot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 9px rgba(45,227,139,.15);
}

.mapHeader small {
  margin-left: auto;
  color: var(--muted);
  font-weight: 900;
}

.alertCard {
  position: absolute;
  z-index: 8;
  right: 4%;
  bottom: 16px;
  width: min(530px, 94%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(14, 19, 29, .94);
  box-shadow: 0 42px 120px rgba(0,0,0,.62);
  animation: floatAlert 7s ease-in-out infinite;
}

@keyframes floatAlert {
  0%, 100% { transform: translateY(0) rotate(.5deg); }
  50% { transform: translateY(-12px) rotate(-.4deg); }
}

.alertTop {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.alertTop b {
  color: var(--green);
}

.alertTop span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.winnerCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px 18px 0;
}

.winnerCards div,
.lossTicket {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  padding: 15px;
}

.winnerCards small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.winnerCards strong {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 22px;
}

.winnerCards .lost strong {
  color: #ff8b84;
}

.lossTicket {
  margin: 12px 18px 18px;
  border-left: 5px solid var(--red);
  background: rgba(255,69,58,.09);
}

.lossTicket b,
.lossTicket span {
  display: block;
}

.lossTicket span {
  margin-top: 5px;
  color: var(--muted);
}

.statement {
  padding: 90px 0 118px;
}

.statement p {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(38px, 6vw, 84px);
  line-height: .93;
  letter-spacing: -.06em;
  font-weight: 900;
}

.method,
.eventSection,
.pricing,
.loginPreview {
  border-top: 1px solid var(--line);
  padding: clamp(108px, 11vw, 150px) 0;
}

.pricing {
  padding-top: clamp(118px, 12vw, 168px);
}

.loginPreview {
  margin-top: 34px;
}

.method,
.eventSection {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.methodGrid {
  display: grid;
  gap: 16px;
}

.methodGrid article {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.055);
  padding: 26px;
}

.methodGrid .dark {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 28px 80px rgba(255,255,255,.09);
}

.methodGrid span,
.priceGrid span {
  color: var(--green);
  font-weight: 1000;
}

.methodGrid h3 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.methodGrid p,
.eventText p,
.priceGrid p,
.loginGrid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.methodGrid .dark p {
  color: #38404c;
}

.eventText p {
  max-width: 560px;
  margin-top: 24px;
}

.privatePanel {
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: var(--paper);
  color: #10131a;
  padding: 30px;
  box-shadow: var(--shadow);
}

.panelTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #687080;
  font-weight: 1000;
}

.panelTop span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #fee4e2;
  color: #b42318;
  font-size: 12px;
}

.privatePanel h3 {
  margin: 30px 0 24px;
  max-width: 620px;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: .9;
  letter-spacing: -.06em;
}

.panelData {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,.12);
  border-left: 1px solid rgba(0,0,0,.12);
}

.panelData div {
  min-height: 82px;
  border-right: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.12);
  padding: 15px;
}

.panelData small {
  display: block;
  color: #687080;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.panelData b {
  display: block;
  margin-top: 8px;
}

.privatePanel button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  padding: 17px;
  font: inherit;
  font-weight: 950;
}

.panelButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  font-weight: 950;
}

.trustBlock {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  margin-bottom: clamp(78px, 8vw, 118px);
  padding: clamp(42px, 5.4vw, 70px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(45, 227, 139, .09), rgba(30, 107, 255, .07)),
    rgba(255,255,255,.045);
}

.trustBlock h2 {
  margin: 0;
  font-size: clamp(48px, 5.1vw, 76px);
  line-height: .9;
}

.trustBlock p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.62;
}

.trustBlock b {
  color: var(--text);
}

.priceGrid,
.loginGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(42px, 5vw, 68px);
}

.priceGrid article,
.loginGrid div {
  min-height: 262px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.055);
  padding: 30px;
}

.priceGrid .featured {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-12px);
}

.priceGrid strong {
  display: block;
  margin: 26px 0 18px;
  font-size: 48px;
}

.priceGrid .featured p {
  color: #38404c;
}

.loginGrid b {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.finalCta {
  min-height: 76vh;
  display: grid;
  place-items: center;
  padding: 100px 0;
  text-align: center;
}

.finalCta h2 {
  max-width: 920px;
}

.siteFooter {
  padding: 34px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.siteFooter span {
  color: var(--text);
  font-weight: 950;
  letter-spacing: .08em;
}

.siteFooter nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.siteFooter a {
  color: var(--muted);
  text-decoration: none;
}

.siteFooter a:hover {
  color: var(--text);
}

.legalPage {
  width: min(920px, calc(100vw - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 36px 0 90px;
}

.legalPage > section {
  margin-top: 90px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}

.legalPage h1 {
  margin-bottom: 18px;
}

.legalList {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.legalList p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(0,0,0,.18);
}

[data-reveal] {
  transform: translateY(20px);
  transition: transform .8s ease;
}

[data-reveal].isVisible {
  transform: translateY(0);
}

.nav[data-reveal] {
  transform: translateX(-50%) translateY(20px);
}

.nav[data-reveal].isVisible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    border-radius: 24px;
  }

  .nav nav {
    display: none;
  }

  .hero,
  .method,
  .eventSection,
  .trustBlock,
  .priceGrid,
  .loginGrid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
  }

  .opsStage {
    min-height: 540px;
  }

  .priceGrid .featured {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .nav {
    width: calc(100vw - 18px);
    gap: 10px;
  }

  .navCta {
    display: none;
  }

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

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

@media (max-width: 620px) {
  .nav {
    width: calc(100vw - 18px);
    top: 9px;
    padding: 9px;
  }

  .brand {
    font-size: 12px;
  }

  .navCta {
    display: none;
  }

  h1 {
    font-size: clamp(52px, 16vw, 70px);
  }

  h2,
  .statement p {
    font-size: clamp(38px, 12vw, 52px);
  }

  .lead {
    font-size: 16px;
  }

  .heroProof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .heroProof span {
    justify-content: center;
    text-align: center;
  }

  .opsStage {
    min-height: auto;
    padding-bottom: 10px;
  }

  .watchMap {
    position: relative;
    width: 100%;
    min-height: 335px;
    transform: rotate(-1deg);
  }

  .alertCard {
    position: relative;
    right: auto;
    bottom: auto;
    width: 94%;
    margin: -86px auto 0;
  }

  .winnerCards,
  .panelData {
    grid-template-columns: 1fr;
  }

  .method,
  .eventSection,
  .pricing,
  .loginPreview,
  .statement {
    padding: 66px 0;
  }

  .privatePanel {
    padding: 20px;
    border-radius: 24px;
  }

  .siteFooter {
    display: grid;
  }

  .legalPage > section {
    margin-top: 54px;
    padding: 26px;
  }
}
