:root {
  color-scheme: dark;
  --bg: #101115;
  --panel: #191b22;
  --panel-2: #222631;
  --text: #f8f5ea;
  --muted: #b6bbc7;
  --line: rgba(255, 255, 255, 0.12);
  --green: #5df0a6;
  --yellow: #ffd45a;
  --red: #ff5d5d;
  --blue: #62a8ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(93, 240, 166, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(255, 212, 90, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav a {
  padding: 9px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}

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

main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 32px;
  align-items: stretch;
  min-height: calc(100vh - 90px);
  padding: 56px 0 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: linear-gradient(145deg, rgba(25, 27, 34, 0.94), rgba(25, 27, 34, 0.68));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.primary-link,
.claim-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #07120c;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(93, 240, 166, 0.22);
}

.primary-link:hover,
.claim-button:hover,
.submit-button:hover {
  filter: brightness(1.08);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.live-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 93, 93, 0.16);
}

.hero-showcase {
  display: grid;
  gap: 16px;
  align-content: center;
}

.showcase-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-main {
  min-height: 260px;
  background: linear-gradient(145deg, rgba(98, 168, 255, 0.24), rgba(255, 212, 90, 0.14)), var(--panel);
}

.showcase-card img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.38));
}

.showcase-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.showcase-card strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1;
}

.featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 24px 0;
  padding: 24px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-weight: 850;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: #14110a;
}

.drops-section {
  padding: 54px 0 72px;
}

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

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

.drop-card {
  display: grid;
  grid-template-rows: 168px 1fr auto;
  min-height: 318px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)), var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.drop-card:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 240, 166, 0.46);
  background: linear-gradient(180deg, rgba(93, 240, 166, 0.11), rgba(255, 255, 255, 0.02)), var(--panel);
}

.drop-card img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.38));
}

.drop-info {
  min-width: 0;
  padding: 12px 0 16px;
}

.drop-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.drop-info h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.claim-button {
  width: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.claim-panel {
  position: relative;
  width: min(430px, 100%);
  padding: 28px;
  background: #f8f5ea;
  color: #141519;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #e7e1d2;
  color: #141519;
  cursor: pointer;
  font-weight: 900;
}

.claim-panel h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.claim-panel p:not(.eyebrow) {
  color: #5e6470;
  line-height: 1.55;
}

.claim-panel label {
  display: block;
  margin: 20px 0 8px;
  font-weight: 900;
}

.claim-panel input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 2px solid #d9d1bf;
  border-radius: 6px;
  background: #fffaf0;
  color: #141519;
  outline: none;
}

.claim-panel input:focus {
  border-color: #1f8e5a;
}

.form-error {
  min-height: 22px;
  margin: 8px 0 14px;
  color: #bd2929;
  font-size: 0.92rem;
  font-weight: 800;
}

.submit-button {
  width: 100%;
}

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

  .hero-copy {
    min-height: 520px;
  }

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

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
  }

  .nav {
    overflow-x: auto;
    max-width: 58vw;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    min-height: 470px;
    padding: 28px;
  }

  .showcase-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 124px;
  }

  .featured {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps {
    justify-content: flex-start;
  }

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

@media (max-width: 480px) {
  main,
  .topbar {
    width: min(100% - 20px, 1160px);
  }

  .brand span {
    display: none;
  }

  .nav {
    max-width: calc(100vw - 78px);
  }

  .hero-copy {
    min-height: 430px;
    padding: 22px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .drop-card {
    grid-template-rows: 150px 1fr auto;
    min-height: 292px;
  }

  .drop-card img {
    height: 150px;
  }
}
