@import url("https://api.fontshare.com/v2/css?f[]=general-sans@700,600,500,400&display=swap");
@import url("./styles.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #ffffff;
  font-family: "General Sans", "Avenir Next", "Segoe UI", sans-serif;
  background: #000000;
}

.landing-shell {
  width: min(1120px, calc(100vw - 34px));
  position: relative;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 40px;
}

.hero-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

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

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000000;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.section {
  margin-top: 24px;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 120px;
  gap: 24px;
}

.brand-wordmark {
  width: 187px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.topnav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.topnav a::after {
  content: "⌄";
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  padding: 280px 120px 102px;
}

.hero-badge {
  margin: 0;
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 1);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #ffffff;
  flex-shrink: 0;
}

.hero-badge-muted {
  color: rgba(255, 255, 255, 0.6);
}

.hero-title {
  margin: 0;
  max-width: 613px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: transparent;
  background-image: linear-gradient(144.5deg, rgba(255, 255, 255, 1) 28%, rgba(0, 0, 0, 0) 115%);
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0;
  max-width: 680px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.cta-shell {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  border: 0.6px solid rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 1px;
  overflow: hidden;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.cta-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  width: 66%;
  height: 18px;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(9px);
  opacity: 0.66;
}

.cta-inner {
  position: relative;
  z-index: 2;
  border-radius: 999px;
  padding: 11px 29px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-shell--dark .cta-inner {
  color: #ffffff;
  background: #000000;
}

.cta-shell--light .cta-inner {
  color: #000000;
  background: #ffffff;
}

.hero-content > .cta-shell {
  margin-top: 6px;
}

.hero-shell + section,
.hero-shell ~ section {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 34px));
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

.section,
.card {
  color: #ffffff;
  background: #0b0b0b;
  border: 0.6px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 26px;
}

.section h2,
.card h2,
.section h3,
.card h3,
.showcase-card h3 {
  color: #ffffff;
}

.section h2,
.card h2 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
}

.section h3,
.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.section p,
.card p,
.list,
.showcase-card p,
.risk strong,
.footer,
.note,
.muted,
.sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.list {
  padding-left: 22px;
}

.grid,
.grid-2,
.value-grid,
.token-grid,
.metrics-cards,
.showcase-grid,
.cards {
  display: grid;
  gap: 12px;
}

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

.risk {
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  padding: 10px 12px;
  border-radius: 12px;
}

.risk strong {
  color: #ffffff;
}

.cards .card,
.showcase-card {
  background: #080808;
  border-color: rgba(255, 255, 255, 0.24);
}

button.cta,
button.primary,
.actions button,
.showcase-actions button {
  border: 0.6px solid rgba(255, 255, 255, 0.7);
  background: #141414;
  color: #ffffff;
}

button.cta:hover,
button.primary:hover,
.actions button:hover,
.showcase-actions button:hover {
  background: #202020;
}

input {
  background: #121212;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

input:focus {
  outline-color: rgba(255, 255, 255, 0.35);
}

.landing-shell label,
.footer a {
  color: rgba(255, 255, 255, 0.85);
}

.hero-title,
.hero-subtitle,
.hero-badge,
.topbar a,
.section h2,
.card h3 {
  text-wrap: balance;
}

.waitlist-form {
  margin-top: 12px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
}

.waitlist-field {
  display: grid;
  gap: 6px;
  min-width: 220px;
  flex: 1 1 220px;
}

.waitlist-field span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.waitlist-field input {
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 0 16px;
  font-size: 14px;
  width: 100%;
}

.waitlist-field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 900px) {
  .section h2,
  .card h2 {
    font-size: 30px;
  }

  .section h3,
  .card h3 {
    font-size: 19px;
  }

  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .topnav {
    display: none;
  }

  .topbar,
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    padding-top: 200px;
    padding-bottom: 72px;
  }

  .hero-title {
    max-width: 100%;
  }

  .landing-shell,
  .hero-shell + section,
  .hero-shell ~ section,
  .card,
  .section {
    width: calc(100% - 32px);
  }

  .topbar {
    padding-left: 20px;
    padding-right: 20px;
  }

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