:root {
  --bg: #030403;
  --bg-2: #070807;
  --panel: #0b0d0a;
  --panel-2: #10130f;
  --line: #232822;
  --line-strong: #3a4530;
  --text: #ffffff;
  --muted: #9b9f98;
  --lime: #a5f21c;
  --lime-2: #d9ff69;
  --cream: #f6ffe8;
  --danger: #ff5d5d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --glow: 0 0 34px rgba(165, 242, 28, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 16%, rgba(165, 242, 28, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 42%, rgba(215, 255, 105, 0.08), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--text);
  background: rgba(3, 4, 3, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.solid {
  position: sticky;
  background: rgba(3, 4, 3, 0.94);
}

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

.brand-logo {
  width: 138px;
  height: auto;
}

.footer .brand-logo {
  width: 154px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.footer a {
  opacity: 0.86;
}

.nav a:hover,
.footer a:hover {
  opacity: 1;
  color: var(--lime);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.header-action,
.button.primary {
  color: #020302;
  background: var(--lime);
  box-shadow: var(--glow);
}

.button.secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(165, 242, 28, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 242, 28, 0.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: calc(100vh - 178px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 242, 28, 0.18), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-a {
  right: -12rem;
  top: 8rem;
}

.hero-glow-b {
  left: -16rem;
  bottom: -16rem;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(56px, 10vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 23px);
}

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

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0;
}

.proof-row div {
  min-height: 96px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.proof-row dt {
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 23px;
  font-weight: 950;
}

.proof-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pack-stage {
  position: relative;
  justify-self: center;
  width: min(540px, 100%);
  aspect-ratio: 1 / 1.05;
  padding: 24px;
  border: 1px solid rgba(165, 242, 28, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 72%, rgba(165, 242, 28, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(165, 242, 28, 0.09), rgba(255, 255, 255, 0.02)),
    #050605;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(165, 242, 28, 0.2),
    var(--shadow);
}

.pack-stage::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 46px;
  height: 28px;
  border-radius: 50%;
  background: rgba(165, 242, 28, 0.38);
  filter: blur(22px);
}

.pack-orbit {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 64px;
  height: 54px;
  border: 2px solid rgba(165, 242, 28, 0.78);
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(165, 242, 28, 0.72),
    inset 0 0 18px rgba(165, 242, 28, 0.34);
}

.pack-image {
  position: absolute;
  bottom: 70px;
  width: 44%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(165, 242, 28, 0.28));
}

.pack-main {
  z-index: 3;
  left: 50%;
  width: 54%;
  transform: translateX(-50%);
}

.pack-side {
  z-index: 2;
  width: 40%;
  opacity: 0.78;
}

.pack-left {
  left: 0;
  transform: translateX(-4%) scale(0.84) rotate(-7deg);
}

.pack-right {
  right: 0;
  transform: translateX(4%) scale(0.84) rotate(7deg);
}

.pack-badge {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 158px;
  padding: 12px 14px;
  border: 1px solid rgba(165, 242, 28, 0.36);
  border-radius: 16px;
  background: rgba(3, 4, 3, 0.82);
  box-shadow: 0 0 28px rgba(165, 242, 28, 0.18);
  backdrop-filter: blur(14px);
}

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

.pack-badge strong {
  color: var(--lime);
  font-size: 16px;
  line-height: 1.15;
}

.pack-badge-top {
  top: 22px;
  left: 22px;
}

.pack-badge-bottom {
  right: 22px;
  bottom: 22px;
}

.section {
  padding: clamp(64px, 10vw, 116px) clamp(18px, 5vw, 72px);
  background: var(--bg);
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.band-panel {
  background:
    radial-gradient(circle at 20% 8%, rgba(165, 242, 28, 0.14), transparent 28rem),
    var(--bg-2);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column,
.app-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.body-stack p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

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

.feature-card,
.support-block {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card:hover,
.link-grid a:hover {
  border-color: rgba(165, 242, 28, 0.58);
  box-shadow: 0 0 28px rgba(165, 242, 28, 0.1);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 950;
}

.feature-card p,
.support-block p,
.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.66);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.link-grid a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: var(--panel);
  font-weight: 950;
}

.link-grid a::after {
  content: ">";
  color: var(--lime);
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 72px);
  color: var(--text);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 800;
}

.footer.compact {
  align-items: center;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 0%, rgba(165, 242, 28, 0.12), transparent 24rem),
    var(--bg);
}

.legal-hero {
  padding: clamp(58px, 9vw, 104px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(180deg, rgba(165, 242, 28, 0.08), rgba(255, 255, 255, 0.01)),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.legal-content,
.support-grid {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) 0;
}

.legal-content h2 {
  margin: 34px 0 8px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

.support-block a {
  color: var(--lime);
  font-weight: 950;
}

.policy-table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.policy-table th,
.policy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.policy-table th {
  color: #020302;
  background: var(--lime);
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pack-stage {
    width: min(520px, 92vw);
  }

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

}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 136px;
  }

  .site-header {
    min-height: 66px;
    flex-wrap: wrap;
    padding: 14px 18px;
  }

  .brand {
    min-width: 120px;
  }

  .brand-logo {
    width: 122px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .header-action {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero {
    padding-top: 144px;
  }

  .proof-row,
  .feature-grid,
  .support-grid,
  .two-column,
  .app-strip,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .proof-row div {
    min-height: 76px;
  }

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

  .feature-icon {
    margin-bottom: 24px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-row {
    gap: 8px;
  }

  .pack-stage {
    border-radius: 24px;
    padding: 12px;
  }

  .pack-badge {
    min-width: 112px;
    padding: 10px 12px;
  }

  .pack-badge strong {
    font-size: 18px;
  }

  .pack-stage {
    aspect-ratio: 1 / 1.18;
  }

  .pack-image {
    bottom: 74px;
  }

  .pack-main {
    width: 58%;
  }

  .pack-side {
    width: 42%;
  }

  .pack-badge-top {
    top: 14px;
    left: 14px;
  }

  .pack-badge-bottom {
    right: 14px;
    bottom: 14px;
  }

  .legal-content,
  .support-grid {
    width: min(100% - 32px, 960px);
  }

  .policy-table {
    display: block;
    overflow-x: auto;
  }
}
