/* Lawndo disk draft. 90s sports-drink ad. Hard cuts. */
:root {
  --black: #050505;
  --ink: #f4fff0;
  --muted: #b7c9a8;
  --lime: #b8ff00;
  --lime-deep: #7ae000;
  --electric: #39ff14;
  --hazard: #ffe600;
  --hazard-deep: #f5c400;
  --plastic: #121212;
  --paper: #fffbe6;
  --line: #2a2a2a;
  --focus: var(--hazard);
  --max: 44rem;
  --wide: 56rem;
  --shout: "Russo One", "Anton", "Impact", "Arial Black", sans-serif;
  --sport: "Oswald", "Impact", "Arial Narrow", sans-serif;
  --plain: "Oswald", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: auto; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--ink);
  font-family: var(--plain);
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  padding-bottom: 3.2rem;
}

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

a {
  color: var(--lime);
  text-underline-offset: 0.15em;
}

a:hover { color: var(--hazard); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  z-index: 200;
  background: var(--hazard);
  color: #111;
  padding: 0.4rem 0.7rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}

.skip:focus { top: 0.75rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}

.flow-wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--sport);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  text-transform: none;
}

h1 { font-size: clamp(1.55rem, 4.6vw, 2.15rem); }

h2 { font-size: clamp(1.3rem, 3.4vw, 1.75rem); }

h3 { font-size: 1.15rem; }

p { margin: 0 0 0.85rem; }

em { font-style: italic; }

/* Hazard tape */
.hazard-bar {
  height: 18px;
  background: repeating-linear-gradient(
    -45deg,
    #111 0 14px,
    var(--hazard) 14px 28px
  );
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.hazard-bar-flip {
  background: repeating-linear-gradient(
    45deg,
    #111 0 14px,
    var(--hazard) 14px 28px
  );
}

/* Full-bleed can-ad */
.can-ad {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(184, 255, 0, 0.12), transparent 48%),
    #000;
  color: #fff;
  padding-bottom: 2rem;
}

.can-ad-stage {
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: 1.1rem 0.6rem 0.4rem;
  text-align: center;
}

.wordmark {
  margin: 0;
  font-family: var(--shout);
  font-size: clamp(4.4rem, 18vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  text-shadow:
    0 0 0 #000,
    4px 5px 0 #000,
    0 0 28px rgba(184, 255, 0, 0.45);
  -webkit-text-stroke: 2px #111;
}

.slogan {
  margin: 0.35rem 0 0.15rem;
  font-family: var(--sport);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 4.2vw, 2.35rem);
  color: var(--hazard);
  letter-spacing: 0.01em;
  text-transform: none;
}

.electro {
  margin: 0 0 0.35rem;
  font-family: var(--sport);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: var(--lime);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sub-line {
  margin: 0.15rem auto 0.4rem;
  max-width: 38rem;
  font-family: var(--sport);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: #fff;
}

/* THE CAN — large, central, not a thumbnail */
.can-hero {
  margin: 0.2rem auto 0.15rem;
  width: min(100%, 1100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.can-png {
  width: min(96vw, 1100px);
  height: auto;
  max-height: 78vh;
  min-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(184, 255, 0, 0.22));
}

.can-hero-close {
  width: min(100%, 900px);
  margin: 0.4rem auto 1rem;
}

.can-hero-close .can-png {
  width: min(92vw, 900px);
  min-height: 240px;
  max-height: 56vh;
}

/* CSS backup can (hidden while PNG loads) */
.can-css {
  display: none;
  width: min(46vw, 280px);
  height: min(68vh, 420px);
  margin: 0.4rem auto;
  position: relative;
}

.can-hero.no-img .can-css { display: block; }
.can-hero.no-img .can-png { display: none; }

.can-css-rim {
  height: 18px;
  width: 62%;
  margin: 0 auto;
  background: linear-gradient(#d8d8d8, #888);
  border-radius: 8px 8px 0 0;
  border: 2px solid #222;
}

.can-css-body {
  height: calc(100% - 42px);
  background:
    repeating-linear-gradient(
      122deg,
      var(--lime) 0 22px,
      #111 22px 40px
    );
  border-radius: 18px 18px 22px 22px;
  border: 3px solid #1a1a1a;
  box-shadow:
    inset 12px 0 18px rgba(255, 255, 255, 0.18),
    inset -16px 0 22px rgba(0, 0, 0, 0.45),
    0 12px 0 #0a0a0a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.can-css-bolt {
  position: absolute;
  width: 70%;
  height: 78%;
  background: var(--hazard);
  clip-path: polygon(48% 0, 72% 0, 42% 42%, 68% 42%, 22% 100%, 38% 52%, 18% 52%);
  opacity: 0.95;
}

.can-css-name {
  position: relative;
  font-family: var(--shout);
  font-style: italic;
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 3px 3px 0 #000;
  z-index: 1;
}

.can-css-tag {
  position: relative;
  z-index: 1;
  font-family: var(--sport);
  font-style: italic;
  font-weight: 700;
  color: var(--hazard);
  font-size: 0.72rem;
}

.can-css-grass {
  height: 24px;
  background: radial-gradient(circle at 20% 0, var(--electric) 0 8px, transparent 9px),
    radial-gradient(circle at 50% 4px, var(--lime) 0 10px, transparent 11px),
    radial-gradient(circle at 80% 0, var(--electric) 0 8px, transparent 9px);
}

.pick-block {
  padding: 0.4rem 0 1.4rem;
}

.can-ad h1 {
  font-family: var(--sport);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.45rem, 4.2vw, 2.05rem);
  color: #fff;
  text-align: left;
}

.picks {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 0.85rem;
}

@media (min-width: 640px) {
  .picks { grid-template-columns: 1fr 1fr; }
}

.pick,
.btn {
  appearance: none;
  font: inherit;
  cursor: pointer;
}

.pick {
  background: var(--hazard);
  border: 4px solid #111;
  color: #111;
  padding: 0.95rem 1.1rem;
  font-family: var(--sport);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  min-height: 3.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 5px 5px 0 #111;
}

.pick:hover,
.pick:focus-visible {
  background: var(--lime);
  box-shadow: 2px 2px 0 #111;
}

.pick[aria-pressed="true"] {
  background: var(--lime);
  box-shadow: 2px 2px 0 #111;
}

.fee-line {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.fee-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  margin: 0;
  padding: 0.45rem 0.85rem;
  background: var(--hazard);
  color: #111;
  font-family: var(--sport);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  border-top: 3px solid #111;
}

/* 3-click screens: plain, readable */
.flow {
  padding: 0.5rem 0 0.25rem;
}

.screen {
  padding: 1.5rem 0 0.5rem;
  font-family: var(--plain);
  font-style: normal;
}

.screen h2 {
  font-family: var(--plain);
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
}

.screen[hidden],
[hidden] { display: none !important; }

.landing-room {
  margin: 1.25rem 0 0.5rem;
  padding: 1rem 1.1rem;
  background: #101410;
  border: 3px solid var(--lime);
  color: #e8f5dc;
  font-family: var(--plain);
  font-style: normal;
}

.landing-room p:last-child { margin-bottom: 0; }

.spec-note {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.helper,
.coords {
  font-size: 0.95rem;
  color: var(--muted);
  font-family: var(--plain);
  font-style: normal;
}

.drag-hint { color: var(--hazard); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0;
}

.btn {
  border: 3px solid #111;
  padding: 0.75rem 1.1rem;
  min-height: 3rem;
  font-family: var(--plain);
  font-weight: 650;
  font-style: normal;
}

.btn-primary {
  background: var(--lime);
  color: #111;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--hazard);
}

.btn-secondary {
  background: #fff;
  color: #111;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--hazard);
}

.btn-quiet {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  font-weight: 500;
  min-height: auto;
  padding: 0.35rem 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.85rem 0 1rem;
}

.field label {
  font-weight: 650;
  font-size: 0.95rem;
  font-family: var(--plain);
}

.field input {
  font: inherit;
  font-family: var(--plain);
  font-style: normal;
  padding: 0.7rem 0.75rem;
  border: 3px solid var(--lime);
  background: var(--paper);
  color: #111;
  width: 100%;
  max-width: 28rem;
}

.map {
  height: 16.5rem;
  width: 100%;
  border: 3px solid var(--lime);
  background: #1a2214;
  overflow: hidden;
  margin: 0.75rem 0 0.5rem;
  position: relative;
}

@media (min-width: 720px) {
  .map { height: 20rem; }
}

.stub-map {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(#2c3a22 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, #2c3a22 1px, transparent 1px) 0 0 / 24px 24px,
    #152016;
  touch-action: none;
}

.pin {
  position: absolute;
  width: 28px;
  height: 28px;
  margin: -22px 0 0 -14px;
  border: 3px solid #111;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--lime);
  cursor: grab;
  z-index: 2;
}

.pin:active { cursor: grabbing; }

.pin-core {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
}

.map-attr {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.sms-box,
.done-note {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  background: #101410;
  border: 3px solid var(--hazard);
  color: #fff;
  font-family: var(--plain);
}

.sms-box p,
.done-note p { margin: 0; }

.sms-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hazard);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.below {
  padding: 2.5rem 0 0;
  border-top: 4px solid var(--lime);
  margin-top: 2.5rem;
  background: #070807;
}

.block { margin-bottom: 2.4rem; }

.block ol {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.block li { margin: 0.35rem 0; }

.contrast-wrap { overflow-x: auto; }

.contrast {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  background: #101410;
}

.contrast th,
.contrast td {
  border: 2px solid #222;
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.contrast th {
  background: var(--lime);
  color: #111;
  font-weight: 700;
  font-family: var(--sport);
  text-transform: uppercase;
}

.contrast td:first-child { color: var(--muted); }

.under-table { margin-top: 0.85rem; }

.close-ad {
  text-align: center;
  padding: 1.5rem 0 2rem;
}

.close-ad .wordmark {
  font-size: clamp(3.4rem, 14vw, 7rem);
}

.close-ad .picks { text-align: left; }

.site-footer {
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  border-top: 4px solid var(--hazard);
  color: var(--muted);
  font-size: 0.95rem;
  font-family: var(--plain);
}

.site-footer p { margin: 0 0 0.4rem; }

/* Kit */
.kit-page { background: #000; }

.kit-intro {
  padding: 1.25rem 0 0.5rem;
}

.kit-grid {
  display: grid;
  gap: 1.25rem;
  margin: 1.25rem 0 2rem;
}

.card {
  background: #0c0c0c;
  border: 4px solid var(--lime);
  padding: 1.15rem 1.2rem 1.25rem;
  break-inside: avoid;
  page-break-inside: avoid;
  color: #fff;
  box-shadow: 8px 8px 0 var(--hazard);
}

.card-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  font-family: var(--sport);
  font-weight: 600;
}

.card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
  font-family: var(--sport);
  font-style: italic;
}

.card .liner {
  font-family: var(--sport);
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--hazard);
}

.card .wordmark {
  font-size: clamp(2.6rem, 10vw, 4.2rem);
  line-height: 0.85;
  margin-bottom: 0.2rem;
}

.card .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-back {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 2px solid #333;
}

.hanger {
  max-width: 22rem;
  min-height: 28rem;
}

.hanger-hole {
  width: 2.4rem;
  height: 2.4rem;
  border: 3px solid var(--hazard);
  border-radius: 50%;
  margin: 0 auto 0.7rem;
  background: #000;
}

.can-kit {
  width: min(100%, 220px);
  min-height: 140px;
  max-height: 200px;
  object-fit: contain;
  margin: 0.2rem auto 0.5rem;
}

.magnet {
  max-width: 36rem;
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.invoice { max-width: 40rem; }

.phone-card { max-width: 24rem; }

.do-not {
  padding: 1rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media print {
  body { background: #fff; color: #111; font-size: 12pt; padding-bottom: 0; }
  .skip,
  .fee-sticky,
  .site-footer,
  .kit-intro,
  .do-not,
  .no-print { display: none !important; }
  .card {
    border-style: solid;
    box-shadow: none;
    color: #111;
    background: #fff;
    margin: 0 0 0.8in;
    break-inside: avoid;
  }
  .hanger { min-height: 9in; }
  .wordmark { -webkit-text-stroke: 0; color: #111; text-shadow: none; }
  .slogan, .card .liner { color: #111; }
}

.coords[hidden] { display: none !important; }

#map-wait { margin: 0.35rem 0 0.75rem; }

.map .map-wait {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
}

code { font-size: 0.9em; color: var(--hazard); }

@media (max-width: 520px) {
  .can-png { min-height: 260px; max-height: 62vh; }
  .wordmark { font-size: clamp(3.6rem, 22vw, 5.4rem); }
}
