:root {
  --ink: #111317;
  --coal: #191b20;
  --steel: #282c34;
  --paper: #f2efe7;
  --paper-dim: #d7d0c2;
  --muted: #aeb3bd;
  --gold: #f6c62f;
  --gold-dark: #8f6b07;
  --red: #b83b2f;
  --green: #2f7a43;
  --line: rgba(242, 239, 231, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(246, 198, 47, 0.04) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #111317 0%, #1b1d22 44%, #101115 100%);
  color: var(--paper);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.12;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.55) 1px, transparent 0);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(17, 19, 23, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 17px;
}

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

.brand span span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--paper-dim);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-cta {
  color: var(--ink);
  background: var(--gold);
  padding: 8px 13px;
  border: 1px solid var(--gold-dark);
}

.lang-toggle {
  min-width: 44px;
  height: 34px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(242, 239, 231, 0.06);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  background: #15171c;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--paper);
  margin: 5px 0;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 68px);
  padding: 150px clamp(18px, 6vw, 90px) 72px;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.96) 0%, rgba(17, 19, 23, 0.78) 44%, rgba(17, 19, 23, 0.24) 100%),
    linear-gradient(0deg, rgba(17, 19, 23, 0.9) 0%, rgba(17, 19, 23, 0.12) 52%);
}

.hero-content {
  max-width: 860px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.96;
  text-transform: uppercase;
}

h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  color: var(--paper-dim);
  font-family: "Source Serif 4", serif;
  font-size: clamp(19px, 2vw, 26px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 0 rgba(143, 107, 7, 0.42);
}

.button-secondary {
  color: var(--paper);
  background: rgba(17, 19, 23, 0.7);
  border-color: var(--line);
}

.match-ticket {
  align-self: end;
  padding: 22px;
  background: rgba(242, 239, 231, 0.94);
  color: var(--ink);
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.ticket-topline,
.ticket-meta,
.ticket-slots {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-topline {
  color: var(--red);
  font-size: 18px;
}

.ticket-title {
  margin: 6px 0 20px;
  font-family: "Archivo Black", sans-serif;
  font-size: 34px;
  line-height: 0.94;
  text-transform: uppercase;
}

.ticket-meta,
.ticket-slots {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(17, 19, 23, 0.22);
  padding-top: 12px;
  margin-top: 12px;
}

.ticket-slots strong {
  color: var(--green);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #0f1013;
}

.intro-band div {
  padding: 28px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.intro-band p {
  margin: 6px 0 0;
  color: var(--paper-dim);
  font-weight: 700;
}

.metric {
  color: var(--gold);
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 90px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
}

.section-heading {
  max-width: 660px;
}

.section-heading.compact {
  max-width: 900px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-grid article {
  position: relative;
  padding: 26px 26px 24px 88px;
  background: rgba(242, 239, 231, 0.06);
  border: 1px solid var(--line);
}

.feature-number {
  position: absolute;
  left: 22px;
  top: 22px;
  color: var(--gold);
  font-family: "Archivo Black", sans-serif;
  font-size: 38px;
}

.feature-grid p,
.editorial-copy p,
.venue-card p,
.phone-copy p {
  color: var(--paper-dim);
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 680px;
  background: var(--paper);
  color: var(--ink);
}

.editorial-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  align-self: center;
  padding: clamp(40px, 7vw, 90px);
}

.editorial-copy .kicker {
  color: var(--red);
}

.editorial-copy p {
  color: #3e4249;
  font-family: "Source Serif 4", serif;
  font-size: 21px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-row span {
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.venue-section {
  background: #15171b;
}

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

.venue-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 310px;
  background: rgba(242, 239, 231, 0.06);
  border: 1px solid var(--line);
  overflow: hidden;
}

.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card div {
  padding: 28px;
  align-self: end;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(72px, 10vw, 140px) clamp(18px, 6vw, 90px);
  background:
    linear-gradient(135deg, rgba(184, 59, 47, 0.22), transparent 36%),
    linear-gradient(315deg, rgba(246, 198, 47, 0.14), transparent 32%),
    #0f1013;
}

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

.product-showcase {
  display: grid;
  gap: 24px;
}

.desktop-shot {
  margin: 0;
  border: 1px solid rgba(246, 198, 47, 0.32);
  background: #050608;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.desktop-shot img {
  width: 100%;
  height: auto;
}

.phone-frame {
  margin: 0;
  border: 10px solid #050608;
  border-radius: 34px;
  background: #050608;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.phone-frame.offset {
  margin-top: 52px;
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 23px;
}

.phone-frame figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.screen-placeholder {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(246, 198, 47, 0.14), transparent 26%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px),
    #151b24;
  border-radius: 24px;
}

.screen-placeholder span {
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.screen-placeholder strong {
  margin-top: 8px;
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.roadmap-section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 6vw, 90px);
  background: var(--paper);
  color: var(--ink);
}

.roadmap-section .kicker {
  color: var(--red);
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(17, 19, 23, 0.18);
}

.roadmap-list div {
  min-height: 170px;
  padding: 22px;
  background: var(--paper);
  font-weight: 800;
}

.roadmap-list p {
  margin: 0;
}

.roadmap-list span {
  display: block;
  width: 34px;
  height: 6px;
  margin-bottom: 26px;
  background: var(--gold);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(72px, 10vw, 140px) clamp(18px, 6vw, 90px);
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.82), rgba(17, 19, 23, 0.54)),
    url("assets/covers/event-cover-04.jpg") center / cover;
}

.signup-form {
  padding: 24px;
  background: rgba(17, 19, 23, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.signup-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--paper-dim);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #111317;
  color: var(--paper);
  padding: 11px 13px;
  font: inherit;
  font-family: "Work Sans", sans-serif;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 90px);
  background: #090a0c;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  color: var(--paper);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .editorial-section,
  .app-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .match-ticket {
    max-width: 460px;
  }

  .intro-band,
  .venue-board,
  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .venue-card {
    grid-template-columns: 1fr;
  }

  .venue-card img {
    height: 260px;
  }

  .phone-wall {
    grid-template-columns: 1fr;
  }

  .phone-frame,
  .phone-frame.offset {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #101115;
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .lang-toggle {
    width: 100%;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-grid article {
    padding-left: 24px;
  }

  .feature-number {
    position: static;
    display: block;
    margin-bottom: 12px;
  }

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