:root {
  --black: #030303;
  --panel: #0b0b0b;
  --panel-2: #121212;
  --white: #f5f5f2;
  --muted: #b9b9b2;
  --lime: #d7ee00;
  --lime-soft: rgba(215, 238, 0, 0.16);
  --line: rgba(255, 255, 255, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 0%, rgba(215, 238, 0, 0.15), transparent 30rem),
    radial-gradient(circle at 12% 35%, rgba(255, 255, 255, 0.04), transparent 22rem),
    linear-gradient(180deg, #080808, var(--black) 34rem);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.launch-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--lime);
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.launch-banner a {
  color: #050505;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(3, 3, 3, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand img {
  display: block;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-cta {
  min-height: 42px;
  border-color: var(--lime);
  color: var(--lime);
  font-size: 13px;
}

.button.primary {
  background: var(--lime);
  color: #070707;
  box-shadow: 0 0 34px rgba(215, 238, 0, 0.24);
}

.button.ghost {
  border-color: var(--line);
  color: var(--white);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: min(100%, 1400px);
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 80px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 0.95;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  text-transform: uppercase;
}

.hero-text,
.section p,
.join p,
.success-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 570px;
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-row span {
  border-left: 3px solid var(--lime);
  padding-left: 10px;
}

.hero-panel {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(215, 238, 0, 0.34);
  pointer-events: none;
}

.refresh-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.ticker div {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 16px 0;
  animation: slide 24s linear infinite;
}

.ticker span {
  color: var(--lime);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(100%, calc(var(--max) + 160px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 80px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 34px;
  align-items: start;
}

.section p {
  max-width: 760px;
  font-size: 18px;
}

.drop-card,
.box-card,
.step-grid > div,
.faq-grid > article,
.legal-grid > article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.drop-card {
  padding: 28px;
}

.drop-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--lime);
  font-weight: 1000;
  text-transform: uppercase;
}

ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

li {
  margin-bottom: 12px;
  font-weight: 800;
}

.small {
  margin-bottom: 0;
  font-size: 14px;
}

.section-heading {
  margin-bottom: 30px;
}

.box-grid,
.step-grid,
.faq-grid,
.legal-grid {
  display: grid;
  gap: 16px;
}

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

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

.box-card,
.step-grid > div,
.faq-grid > article,
.legal-grid > article {
  padding: 26px;
}

.featured-card {
  border-color: rgba(215, 238, 0, 0.45);
  background:
    radial-gradient(circle at 80% 0%, var(--lime-soft), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.box-tag,
.step-grid span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--lime);
  font-weight: 1000;
  text-transform: uppercase;
}

.box-card p,
.step-grid p,
.faq-grid p,
.legal-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.join {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto 70px;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(215, 238, 0, 0.42);
  background:
    radial-gradient(circle at 85% 20%, rgba(215, 238, 0, 0.17), transparent 22rem),
    var(--panel-2);
}

.join p {
  max-width: 650px;
  font-size: 18px;
}

.signup-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: #070707;
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(215, 238, 0, 0.55);
  outline-offset: 2px;
}

.signup-form button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-success {
  margin: 0;
  border: 1px solid rgba(215, 238, 0, 0.5);
  background: rgba(215, 238, 0, 0.1);
  color: var(--white);
  padding: 12px 14px;
  font-weight: 900;
}

.legal h3,
.faq h3 {
  color: var(--lime);
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.success-card {
  width: min(100%, 680px);
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid rgba(215, 238, 0, 0.42);
  background: var(--panel-2);
  text-align: center;
}

.success-card img {
  width: 180px;
  margin-bottom: 24px;
}

.success-card h1 {
  max-width: none;
  font-size: clamp(52px, 9vw, 86px);
}

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

  .hero-panel {
    order: -1;
  }

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

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

  .split,
  .box-grid,
  .step-grid,
  .join {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-actions .button,
  .join-actions .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-block: 10px;
  }

  .brand {
    width: 68px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 9px 12px;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-panel {
    aspect-ratio: 4 / 3;
  }

  .refresh-panel {
    object-position: center;
  }

  .trust-row {
    display: grid;
    gap: 9px;
  }

  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .box-card,
  .step-grid > div,
  .faq-grid > article,
  .legal-grid > article,
  .drop-card {
    padding: 22px;
  }

  footer {
    flex-direction: column;
  }
}
