:root {
  --bg: #070707;
  --panel: #101113;
  --panel-soft: #171717;
  --text: #f7f3ea;
  --muted: #bcb6aa;
  --gold: #f7c35f;
  --gold-deep: #a97824;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(247, 195, 95, 0.78);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name,
.site-footer p:first-child {
  font-size: 21px;
  font-weight: 900;
}

.brand-name span,
.site-footer span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: calc(100vh - 79px);
  padding: clamp(34px, 5vw, 74px) clamp(20px, 5vw, 72px) 34px;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 94px);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.hero-text,
.section-copy p:not(.eyebrow),
.artist-copy p,
.join-section p {
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #111;
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -20%;
  content: "";
  background: radial-gradient(circle at 52% 46%, rgba(247, 195, 95, 0.22), transparent 40%);
  pointer-events: none;
}

.hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(247, 195, 95, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.intro {
  background: #0d0d0e;
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.35fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

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

.feature-card,
.privacy-grid article,
.story-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.icon {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
}

.feature-card p,
.privacy-grid p,
.story-grid p,
.step p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split-section .section-copy {
  display: block;
  margin: 0;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

.story-section {
  background:
    linear-gradient(rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.96)),
    #090909;
}

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

.story-grid article {
  min-height: 250px;
}

.story-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 9px;
  border: 1px solid rgba(247, 195, 95, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(rgba(7, 7, 7, 0.66), rgba(7, 7, 7, 0.88)),
    radial-gradient(circle at 22% 10%, rgba(247, 195, 95, 0.22), transparent 34%),
    #0b0b0b;
}

.artist-copy p {
  max-width: 720px;
}

.artist-list {
  display: grid;
  gap: 12px;
}

.artist-list span {
  padding: 18px;
  border: 1px solid rgba(247, 195, 95, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.privacy-section {
  background: var(--panel-soft);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #090909;
}

.founder-points {
  padding: 26px;
  border: 1px solid rgba(247, 195, 95, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.founder-points p,
.founder-points li,
.faq-list p {
  color: var(--muted);
}

.founder-points ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.faq-section {
  background: var(--panel-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101113;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(247, 195, 95, 0.34);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #080808;
  color: var(--text);
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split-section,
  .artist-band,
  .founder-section,
  .join-section,
  .section-copy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

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

  .feature-grid,
  .privacy-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .button {
    width: 100%;
  }

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