:root {
  color-scheme: dark;
  --bg: #07070a;
  --bg-soft: #101015;
  --ink: #f8f7ef;
  --muted: #b8b4aa;
  --line: rgba(255, 255, 255, 0.14);
  --acid: #d7ff34;
  --citrus: #ff7a1a;
  --cyan: #24d8ff;
  --berry: #f2488f;
  --card: rgba(255, 255, 255, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 18%, rgba(215, 255, 52, 0.14), transparent 28rem),
    radial-gradient(circle at 82% 44%, rgba(36, 216, 255, 0.12), transparent 24rem),
    linear-gradient(145deg, #050506 0%, #0d0b11 52%, #07070a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 64px;
  display: flex;
  flex-direction: column;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 22px rgba(215, 255, 52, 0.9);
}

.brand-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  border: 1px solid rgba(215, 255, 52, 0.35);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 14px;
  text-transform: uppercase;
}

.brand-pill,
.preview-card__tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  padding-top: 56px;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 850px;
  font-size: clamp(3.5rem, 9vw, 8.8rem);
  line-height: 0.86;
  font-weight: 900;
}

.hero__subheadline {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero__visual {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.can-stage {
  position: relative;
  width: min(420px, 78vw);
  aspect-ratio: 0.62;
  display: grid;
  place-items: center;
}

.can-glow {
  position: absolute;
  inset: 13% -18%;
  border-radius: 48%;
  background:
    radial-gradient(circle, rgba(215, 255, 52, 0.42), transparent 62%),
    radial-gradient(circle at 72% 38%, rgba(36, 216, 255, 0.3), transparent 44%);
  filter: blur(20px);
  opacity: 0.75;
}

.can-image {
  position: relative;
  width: min(100%, 390px);
  height: auto;
  display: block;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 36px rgba(215, 255, 52, 0.22));
  transform: rotate(4deg);
  animation: floatCan 5.5s ease-in-out infinite;
}

.section,
.preview-band {
  padding: clamp(64px, 10vw, 120px) 20px;
}

.section__inner,
.preview-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.brand-explanation {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--line);
}

.brand-explanation h2,
.preview-card h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 900;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.copy-grid p,
.preview-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.copy-grid p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  padding: 24px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.preview-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    var(--bg-soft);
  padding: clamp(24px, 4vw, 38px);
}

.preview-card__tag {
  display: inline-flex;
  margin-bottom: 26px;
}

.preview-card h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.preview-card__placeholder {
  margin-top: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  min-height: 120px;
  display: grid;
  place-items: center;
  color: rgba(248, 247, 239, 0.55);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.preview-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  border-radius: 14px;
  background: var(--acid);
  color: #0b0b08;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 18px;
  text-transform: uppercase;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 28px;
}

.waitlist-form__input,
.waitlist-form__button {
  min-height: 54px;
  border-radius: 16px;
  font: inherit;
}

.waitlist-form__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  outline: none;
  padding: 0 16px;
}

.waitlist-form__input::placeholder {
  color: rgba(248, 247, 239, 0.42);
}

.waitlist-form__input:focus {
  border-color: rgba(215, 255, 52, 0.72);
  box-shadow: 0 0 0 4px rgba(215, 255, 52, 0.12);
}

.waitlist-form__button {
  border: 0;
  background: var(--acid);
  color: #0b0b08;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 22px;
  text-transform: uppercase;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.waitlist-form__button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.waitlist-form__button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.form-message {
  min-height: 1.5em;
  margin: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-message[data-type="success"] {
  color: var(--acid);
}

.form-message[data-type="error"] {
  color: #ff8f8f;
}

.form-message[data-type="pending"] {
  color: var(--muted);
}

.voting-preview {
  box-shadow: inset 0 0 0 1px rgba(215, 255, 52, 0.08);
}

.waitlist-preview {
  box-shadow: inset 0 0 0 1px rgba(36, 216, 255, 0.08);
}

.vote-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 150px;
}

.vote-hero {
  min-height: 52svh;
  display: flex;
  flex-direction: column;
}

.vote-hero__copy {
  max-width: 880px;
  margin-top: clamp(72px, 12vw, 150px);
}

.vote-hero__copy h1 {
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 8vw, 7.4rem);
}

.vote-hero__copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.art-gallery {
  padding: 32px 0 42px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

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

.section-heading p {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.art-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    var(--bg-soft);
  overflow: hidden;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.art-card.is-selected {
  border-color: rgba(215, 255, 52, 0.72);
  box-shadow: 0 0 0 4px rgba(215, 255, 52, 0.1), 0 28px 70px rgba(0, 0, 0, 0.3);
}

.art-placeholder {
  min-height: clamp(300px, 42vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 4vw, 36px);
  position: relative;
  overflow: hidden;
}

.art-placeholder::before,
.art-placeholder::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.art-placeholder::before {
  width: 62%;
  aspect-ratio: 1;
  right: -18%;
  top: -18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  filter: blur(2px);
}

.art-placeholder::after {
  width: 52%;
  height: 18px;
  right: -8%;
  bottom: 20%;
  background: repeating-linear-gradient(
    135deg,
    #111 0 16px,
    #111 16px 26px,
    var(--acid) 26px 42px,
    var(--acid) 42px 52px
  );
  transform: rotate(-14deg);
}

.art-placeholder--hazard {
  background:
    radial-gradient(circle at 26% 28%, rgba(215, 255, 52, 0.32), transparent 24%),
    linear-gradient(150deg, #f8f7ef 0%, #d8d3c5 48%, #111115 49% 100%);
  color: #080808;
}

.art-placeholder--static {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #071012, #0c0c12 52%, #081f26);
  background-size: 18px 18px, auto;
}

.art-placeholder--fakeout {
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(0, 0, 0, 0.72) 46% 54%, transparent 54%),
    linear-gradient(160deg, #ffd332 0%, #f7f0d6 50%, #121214 51% 100%);
  color: #080808;
}

.art-placeholder--night {
  background:
    radial-gradient(circle at 72% 22%, rgba(242, 72, 143, 0.28), transparent 28%),
    linear-gradient(150deg, #17131f 0%, #07070a 62%, #0a1f25 100%);
}

.art-placeholder__brand {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.art-placeholder__name {
  position: relative;
  z-index: 1;
  max-width: 380px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.art-placeholder__stripe {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

.art-card__body {
  padding: 24px;
}

.art-card__body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
}

.art-card__body p {
  color: var(--muted);
  line-height: 1.65;
}

.art-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.art-card__button,
.vote-panel__button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  padding: 0 16px;
  text-transform: uppercase;
}

.art-card__button--primary {
  border-color: transparent;
  background: var(--acid);
  color: #0b0b08;
}

.vote-panel {
  position: sticky;
  bottom: 18px;
  z-index: 8;
  display: none;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 0.8fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(215, 255, 52, 0.28);
  border-radius: 22px;
  background: rgba(10, 10, 13, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  padding: 16px;
}

.vote-panel.is-visible {
  display: grid;
}

.vote-panel__label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vote-panel strong {
  font-size: 1.25rem;
}

.vote-panel__input {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  padding: 0 14px;
}

.vote-panel__button:disabled,
.vote-panel__input:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.vote-panel__message {
  grid-column: 1 / -1;
  margin: 0;
}

.has-lightbox {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 20px;
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}

.lightbox__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(860px, 92svh);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0b0b0f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
  overflow: auto;
  padding: 20px;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 14px;
  text-transform: uppercase;
}

.lightbox__art .art-placeholder {
  min-height: min(680px, 76svh);
  border-radius: 18px;
}

.lightbox__copy {
  align-self: end;
  padding: 56px 10px 10px 0;
}

.lightbox__copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.lightbox__copy p {
  color: var(--muted);
  line-height: 1.7;
}

@keyframes floatCan {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@media (max-width: 860px) {
  .hero__shell {
    width: min(100% - 28px, 680px);
    padding-bottom: 44px;
  }

  .hero__content,
  .copy-grid,
  .preview-grid,
  .art-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .hero__content {
    gap: 28px;
    padding-top: 48px;
    text-align: center;
  }

  .hero__copy,
  .hero__subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__visual {
    min-height: 390px;
  }

  .can-stage {
    width: min(280px, 68vw);
  }

  .vote-page {
    width: min(100% - 28px, 680px);
    padding-bottom: 24px;
  }

  .vote-panel {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

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

  .lightbox__copy {
    padding: 0;
  }
}

@media (max-width: 520px) {
  .brand-bar {
    align-items: flex-start;
  }

  .brand-pill {
    display: none;
  }

  .brand-actions {
    gap: 0;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .copy-grid p,
  .preview-card {
    border-radius: 18px;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-form__button {
    width: 100%;
  }
}
