/* Auu - lista pierwszenstwa. Premium streetwear drop. Mobile-first, bezcookie, AA kontrast. */

:root {
  --bg: #060606;
  --surface: #121214;
  --surface-2: #0d0d0f;
  --text: #f6f6f6;
  --muted: #9a9aa3;
  --soft: #d6d6db;
  --accent: #ffe600;
  --ink: #0a0a0a;
  --danger: #ff6b6b;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --r-card: 16px;
  --r-input: 12px;
  --r-pill: 999px;
  --maxw: 680px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
p { margin: 0 0 1rem; }
a { color: var(--accent); }
.muted { color: var(--muted); }
.soft { color: var(--soft); }
.small { font-size: 0.88rem; }
.center { text-align: center; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 20;
  background: var(--accent); color: var(--ink);
  padding: 0.6rem 1rem; border-radius: var(--r-pill); font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  padding: 0.8rem 1.5rem;
  min-height: 48px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(255, 230, 0, 0.55); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { font-size: 1.05rem; padding: 0.95rem 1.8rem; }
.btn-xl {
  font-size: 1.12rem; padding: 1.15rem 2.4rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.btn-block { display: flex; width: 100%; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--text);
}
.site-header .btn { padding: 0.55rem 1.1rem; min-height: 40px; font-size: 0.92rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(255, 230, 0, 0.07);
  border: 1px solid rgba(255, 230, 0, 0.35);
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem 4rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 80%;
  background: radial-gradient(60% 60% at 50% 35%, rgba(255, 230, 0, 0.22), rgba(255, 230, 0, 0) 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(0, 0, 0, 0) 40%, var(--bg) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.9rem, 2.6vw, 1.5rem);
  max-width: 40rem;
}
.hero-title { margin: 0; }
.hero-title .word {
  display: block;
  font-size: clamp(5rem, 27vw, 17rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--accent);
  text-shadow: 0 0 70px rgba(255, 230, 0, 0.35);
}
.hero-lead {
  margin: 0;
  font-size: clamp(1.15rem, 2.7vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  max-width: 24ch;
}
.hero-pill {
  margin: 0;
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  transform: rotate(-2deg);
  box-shadow: 0 8px 24px -10px rgba(255, 230, 0, 0.6);
}
.hero-note { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.95rem; max-width: 38ch; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--accent);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  border-block: 2px solid var(--ink);
}
.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track span { padding-right: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
main { width: 100%; }
.band {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(2.75rem, 8vw, 4.5rem) 1.25rem;
}
.band + .band { border-top: 1px solid var(--border); }
.section-title {
  font-size: clamp(1.9rem, 5.5vw, 2.9rem);
  font-weight: 800;
  margin: 0.8rem 0 1.5rem;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.5rem 1.4rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(255, 230, 0, 0.4); }
.card-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.7rem;
  color: rgba(255, 230, 0, 0.55);
  -webkit-text-stroke: 1.5px rgba(255, 230, 0, 0.55);
  -webkit-text-fill-color: transparent;
}
.card h3 { font-size: 1.15rem; margin: 0 0 0.35rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- Form ---------- */
.band-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-card);
  margin-block: clamp(2rem, 6vw, 3rem);
  padding: clamp(1.5rem, 5vw, 2.5rem);
}
.field { margin-bottom: 1.15rem; }
.field label, .field legend { display: block; font-weight: 700; margin-bottom: 0.45rem; font-size: 0.95rem; }
fieldset.field { border: 0; padding: 0; margin: 0 0 1.15rem; min-width: 0; }
.req { color: var(--accent); }
.opt { color: var(--muted); font-weight: 400; font-size: 0.85rem; }

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--surface-2);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-input);
  padding: 0.85rem 0.95rem;
  min-height: 52px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea { min-height: 104px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #6f6f78; }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.18);
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%239a9aa3' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.radio-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.radio-col { display: flex; flex-direction: column; gap: 0.6rem; }
.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1 1 auto;
  font-weight: 600;
  background: var(--surface-2);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-input);
  padding: 0.8rem 1rem;
  min-height: 52px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.radio input { width: 1.15rem; height: 1.15rem; flex: 0 0 auto; accent-color: var(--accent); }
.radio:hover { border-color: var(--border-strong); }
.radio:has(input:checked) { border-color: var(--accent); background: rgba(255, 230, 0, 0.1); color: #fff; }
.radio:focus-within { box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.18); border-color: var(--accent); }

details.optional {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--r-input);
  margin: 1.3rem 0;
}
details.optional > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
details.optional > summary::-webkit-details-marker { display: none; }
details.optional > summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.2s ease;
}
details.optional[open] > summary { border-bottom: 1px solid var(--border); }
details.optional[open] > summary::after { transform: rotate(45deg); }
details.optional .field { padding-inline: 1.1rem; }
details.optional .field:first-of-type { margin-top: 1.1rem; }
details.optional .field:last-of-type { margin-bottom: 1.1rem; }

.consents {
  margin: 1.5rem 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-input);
  padding: 1.15rem;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--soft);
  margin-bottom: 0.95rem;
}
.consent input {
  margin-top: 0.15rem;
  width: 1.25rem; height: 1.25rem;
  flex: 0 0 auto;
  accent-color: var(--accent);
}
.legal-note { font-size: 0.8rem; color: var(--muted); margin: 0.4rem 0 0; }
.cf-turnstile { margin: 1.25rem 0; }
.form-error {
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid var(--danger);
  color: #ffb0b0;
  padding: 0.8rem 1rem;
  border-radius: var(--r-input);
  margin: 1rem 0;
  font-weight: 600;
}

/* Honeypot - poza ekranem */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-input);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
details.faq > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
details.faq[open] { border-color: rgba(255, 230, 0, 0.4); }
details.faq[open] > summary::after { content: "\2212"; }
details.faq p { padding: 0 1.2rem 1.2rem; margin: 0; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 2.5rem 1.25rem 3.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}
.site-footer a { color: var(--soft); }
.site-footer .small { color: var(--soft); font-weight: 600; }

/* ---------- Doc / thanks pages ---------- */
.doc, .thanks { max-width: var(--maxw); margin-inline: auto; padding: 2rem 1.25rem 3.5rem; }
.doc h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); margin-bottom: 0.5rem; }
.doc h2 { font-size: 1.2rem; margin-top: 2rem; }
.doc ul { padding-left: 1.25rem; }
.doc li { margin-bottom: 0.35rem; }
.back-link { margin-top: 2.5rem; }
.thanks { text-align: center; padding-top: clamp(3rem, 12vw, 6rem); }
.thanks h1 { font-size: clamp(1.9rem, 6vw, 3rem); margin-bottom: 1rem; }
.thanks .big { font-size: 1.2rem; }
.thanks .btn { margin-top: 1.5rem; }

/* ---------- Responsive ---------- */
@media (min-width: 48rem) {
  body { font-size: 1.125rem; }
  .hero { min-height: 90vh; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .marquee-track { transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
