/* ============================================================
   MARCO STROUS - US Headline Tour 2026 - signup
   Strict monochrome, taken from the artwork: white marker
   scrawl on black, nothing else. Display: League Gothic
   (tour-poster condensed). Date sheet: IBM Plex Mono.
   Body: Helvetica stack. The only "colour" is inversion.
   ============================================================ */

:root {
  --black:   #000000;
  --white:   #ffffff;
  --paper:   #070707;   /* panel surface, a hair off pure black */
  --muted:   #9a9a9a;
  --line:    rgba(255,255,255,.26);
  --line-lo: rgba(255,255,255,.14);
  --danger:  #ff6b5e;

  --display: "League Gothic", "Arial Narrow", sans-serif;
  --mono:    "IBM Plex Mono", "Courier New", monospace;
  --body:    "Helvetica Neue", Helvetica, Arial, "Nimbus Sans", "Liberation Sans", sans-serif;

  --maxw: 1220px;

  /* hand-drawn marker underline, echoes the artwork swoosh */
  --scrawl: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5.5 C 24 2.6, 62 1.8, 118 4.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--white);
  background: var(--black);
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   STAGE LAYOUT
   ============================================================ */
.stage {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 54px) clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
}
.stage__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 3vw, 48px);
  align-items: center;
}

/* ---------- artwork: the question ---------- */
.art {
  justify-self: center;
  width: 100%;
  max-width: 640px;
  animation: artIn .8s cubic-bezier(.16,.84,.36,1) both;
}
.art img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes artIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   SIGNUP PANEL
   ============================================================ */
.panel {
  justify-self: center;
  width: 100%;
  max-width: 500px;
  background: var(--paper);
  border: 1px solid var(--line);
  animation: panelIn .8s .1s cubic-bezier(.16,.84,.36,1) both;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.panel__inner { padding: clamp(24px, 3.2vw, 38px); }

/* ---------- eyebrow: typewritten tour stamp ---------- */
.eyebrow {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::after { content: " ......"; color: var(--white); letter-spacing: .12em; }

/* ---------- titles ---------- */
.panel__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .94;
  font-size: clamp(2.4rem, 6vw, 3.3rem);
  margin: 0 0 12px;
  color: var(--white);
  text-wrap: balance;
}

.panel__lede {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--muted);
  max-width: 44ch;
}

/* ============================================================
   FORM
   ============================================================ */
.form__row { margin: 0 0 16px; }
.form__label {
  display: block;
  margin: 0 0 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__input {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.form__input::placeholder { color: #5b5b5b; }
.form__input:focus {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,.14);
}
.form__input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255,107,94,.16);
}
.form__err {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--danger);
}

/* ---------- honeypot (spam trap) ----------
   display:none, NOT left:-9999px: off-screen honeypots get autofilled
   by Chrome/Edge and silently block real signups. display:none is
   skipped by autofill and by screen readers. */
.hp-field { display: none; }

/* ============================================================
   DATES MULTI-SELECT - the tour-tee date sheet
   ============================================================ */
.msel { position: relative; }
.msel__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  text-align: left;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.msel__toggle:hover { border-color: rgba(255,255,255,.5); }
.msel.is-open .msel__toggle,
.msel__toggle:focus-visible {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,.14);
}
.msel.is-invalid .msel__toggle {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255,107,94,.16);
}
.msel__summary { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.msel__summary.is-placeholder { color: #5b5b5b; }
.msel__arrow {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s;
}
.msel.is-open .msel__arrow { transform: rotate(225deg) translateY(-1px); }

.msel__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 296px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper);
  border: 1px solid var(--white);
  box-shadow: 0 26px 54px -18px rgba(0,0,0,.9);
}
.msel__opt {
  display: block;
  cursor: pointer;
  border-bottom: 1px dashed var(--line-lo);
}
.msel__opt:last-child { border-bottom: none; }
.msel__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.msel__face {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 14px;
  transition: background .12s;
}
.msel__opt:hover .msel__face { background: rgba(255,255,255,.06); }
.msel__face b {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
/* dot leader, echoes the artwork's "......" */
.msel__face i {
  flex: 1 1 auto;
  min-width: 14px;
  align-self: center;
  height: 3px;
  background-image: radial-gradient(circle, rgba(255,255,255,.42) 1.1px, transparent 1.4px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left center;
}
.msel__city {
  flex: 0 1 auto;
  text-align: right;
  font-size: 14.5px;
  color: var(--white);
  padding-bottom: 5px;
}
.msel__city em {
  font-style: normal;
  display: block;
  font-size: 12px;
  color: var(--muted);
}
/* checked: marker underline + row lifts to full white */
.msel__opt input:checked + .msel__face { background: rgba(255,255,255,.08); }
.msel__opt input:checked + .msel__face b { color: var(--white); }
.msel__opt input:checked + .msel__face .msel__city {
  background: var(--scrawl) no-repeat bottom right / min(100%, 150px) 5px;
}
.msel__opt input:focus-visible + .msel__face { outline: 2px solid var(--white); outline-offset: -2px; }

/* ---------- consent ---------- */
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 22px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.form__consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--white);
}
.form__consent a { color: var(--white); text-underline-offset: 2px; }

/* ---------- submit: inverted, like the tee print flipped ---------- */
.btn {
  display: block;
  width: 100%;
  border: 1px solid var(--white);
  cursor: pointer;
  background: var(--white);
  color: var(--black);
  border-radius: 0;
  padding: 0;
  transition: background .12s ease, color .12s ease, transform .12s ease;
}
.btn .btn__face {
  display: block;
  padding: 14px 18px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.btn:hover { background: var(--black); color: var(--white); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { background: #3a3a3a; border-color: #3a3a3a; color: #0a0a0a; cursor: default; transform: none; }

/* ---------- success state ---------- */
.panel__success .panel__lede { margin-bottom: 0; }

/* ============================================================
   intl-tel-input (v25) - mono theme + searchable dropdown
   ============================================================ */
.iti { width: 100%; display: block; }
.iti__selected-country { background: var(--black); }
.iti__selected-country:hover,
.iti__selected-country-primary:hover { background: #161616; }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--white); }
.iti__dropdown-content {
  background: var(--paper);
  border: 1px solid var(--white);
  border-radius: 0;
  box-shadow: 0 26px 54px -18px rgba(0,0,0,.9);
  color: var(--white);
}
.iti__search-input {
  background: var(--black);
  color: var(--white);
  border: none;
  border-bottom: 1px dashed var(--line);
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 15px;
}
.iti__search-input::placeholder { color: #5b5b5b; }
.iti__search-input:focus { outline: none; box-shadow: inset 0 -2px 0 var(--white); }
.iti__search-icon { display: none; }              /* remove magnifying-glass icon */
.iti__search-input { padding-left: 14px; }        /* reclaim the space it left */
.iti__country-list { background: var(--paper); }
.iti__country { color: var(--white); }
.iti__country:hover,
.iti__country.iti__highlight { background: rgba(255,255,255,.1); }
.iti__dial-code { color: var(--muted); font-family: var(--mono); font-size: 12.5px; }
.iti__country-name { color: var(--white); }
/* the dropdown must sit above the panel */
.iti--inline-dropdown .iti__dropdown-content { z-index: 50; }

/* ============================================================
   FOOTER - full width, basslayerz layout
   ============================================================ */
.foot {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 18px clamp(16px, 4vw, 40px) 26px;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line-lo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.foot__left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot__legal { margin: 0; font-size: 12px; color: var(--muted); letter-spacing: .02em; }
.foot__legal a { color: var(--muted); text-decoration: none; }
.foot__legal a:hover { color: var(--white); }
.site-built { margin: 0; }
.site-built a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 11px;
  border: 1px solid var(--line-lo);
  border-radius: 999px;
}
.site-built a:hover { border-color: var(--white); color: var(--white); }
.site-built img { display: block; opacity: .9; }

/* ============================================================
   RESPONSIVE - two columns on wider screens
   ============================================================ */
@media (min-width: 920px) {
  .stage__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: center;
  }
  .art   { justify-self: end; max-width: 620px; }
  .panel { justify-self: start; }
}

@media (max-width: 919px) {
  .foot { justify-content: center; text-align: center; }
  .foot__left { justify-content: center; }
}
@media (max-width: 480px) {
  .msel__face { flex-wrap: nowrap; }
  .msel__city em { font-size: 11px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.iti__selected-country:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .art, .panel { animation: none; }
  * { scroll-behavior: auto; }
}
