/* ---------- self-hosted fonts (latin subsets) ---------- */

@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/poppins-400.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/poppins-700.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/poppins-800.woff2") format("woff2"); }
@font-face { font-family: "Yellowtail"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/yellowtail-400.woff2") format("woff2"); }

/* ==========================================================================
   SelectBooth.com — v1 launch site
   Palette from brand logo: ink #0F0D13 · magenta #F4188D · cyan #09B1E6
   yellow #FED419 · cream #FEF4C5
   ========================================================================== */

:root {
  --ink: #0f0d13;
  --pink: #f4188d;
  --pink-soft: #ffe3f1;
  --cyan: #09b1e6;
  --cyan-soft: #e0f5fd;
  --yellow: #fed419;
  --yellow-soft: #fff3c4;
  --cream: #fff6e0;
  --paper: #fffdf8;
  --white: #ffffff;
  --radius: 20px;
  --border: 3px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

section { scroll-margin-top: 96px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--yellow); padding: 10px 18px; border: var(--border);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- type ---------- */

h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }

h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 14px;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 18px;
}
.eyebrow.pink { background: var(--pink); color: var(--white); }
.eyebrow.cyan { background: var(--cyan); }

.lead { font-size: clamp(1.05rem, 1.9vw, 1.25rem); max-width: 46ch; }

.hl { background: linear-gradient(transparent 55%, var(--yellow) 55%, var(--yellow) 92%, transparent 92%); }
.hl-pink { background: linear-gradient(transparent 55%, var(--pink-soft) 55%, var(--pink-soft) 92%, transparent 92%); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  background: var(--pink);
  border: var(--border);
  border-radius: 999px;
  padding: 13px 28px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn.ghost { background: var(--white); }
.btn.yellow { background: var(--yellow); }
.btn.on-dark { background: var(--yellow); }

.arrow-link { font-weight: 700; text-decoration: none; border-bottom: 3px solid var(--pink); padding-bottom: 2px; }
.arrow-link:hover { background: var(--pink-soft); }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: var(--border);
}

.nav {
  display: flex; align-items: center; gap: 20px;
  max-width: 1120px; margin: 0 auto; padding: 12px 24px;
}

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; text-decoration: none; }
.nav-logo svg { height: 44px; width: auto; }

.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a {
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 8px 12px; border-radius: 999px; border: 2px solid transparent;
}
.nav-links a:hover { border-color: var(--ink); background: var(--yellow-soft); }

.nav .btn { padding: 10px 22px; font-size: 0.95rem; flex: 0 0 auto; }

#nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: none;
  margin-left: auto;
  font-size: 1.6rem; line-height: 1;
  border: 2px solid var(--ink); border-radius: 10px;
  padding: 6px 12px; cursor: pointer; background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  user-select: none;
}

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: var(--border);
    padding: 8px 16px 16px;
  }
  .nav-links a { padding: 12px 16px; border-radius: 12px; }
  #nav-toggle:checked ~ .nav-links { display: flex; }
  .nav .btn { margin-left: 0; }
}

/* ---------- hero ---------- */

.hero {
  background: var(--cream);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center;
  padding: 72px 24px 88px;
  max-width: 1120px; margin: 0 auto;
  position: relative; z-index: 1;
}

.hero h1 { margin: 6px 0 18px; }
.hero .lead { margin-bottom: 28px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-size: 0.85rem; font-weight: 700;
  background: var(--white); border: 2px solid var(--ink);
  border-radius: 999px; padding: 5px 14px;
  box-shadow: 3px 3px 0 var(--ink);
}
.chip.cyan { background: var(--cyan-soft); }
.chip.pink { background: var(--pink-soft); }
.chip.yellow { background: var(--yellow-soft); }

/* geometric confetti */
.confetti { position: absolute; z-index: 0; pointer-events: none; }
.confetti.tri {
  width: 0; height: 0; background: none;
  border-left: 16px solid transparent; border-right: 16px solid transparent;
}
.confetti.dot { border-radius: 50%; border: 3px solid var(--ink); }
.confetti.sq { border: 3px solid var(--ink); border-radius: 6px; transform: rotate(14deg); }

/* photo strip illustration */
.strip-scene { position: relative; display: flex; justify-content: center; padding: 10px 0; }

.photo-strip {
  background: var(--white);
  border: var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px 14px 10px;
  width: min(240px, 62vw);
  transform: rotate(4deg);
  position: relative; z-index: 2;
}
.photo-strip.behind {
  position: absolute; top: 26px; left: 50%;
  margin-left: -200px;
  transform: rotate(-7deg);
  z-index: 1;
  opacity: 0.9;
}
.strip-frame {
  border: 3px solid var(--ink);
  border-radius: 8px;
  margin-bottom: 12px;
  aspect-ratio: 5 / 4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.strip-frame svg { width: 62%; height: auto; }
.strip-frame.f1 { background: var(--pink); }
.strip-frame.f2 { background: var(--cyan); }
.strip-frame.f3 { background: var(--yellow); }
.strip-frame.f4 { background: var(--pink-soft); }
.strip-brand {
  font-family: "Yellowtail", "Brush Script MT", cursive;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.2;
  text-align: center;
  padding: 4px 0 2px;
  margin-bottom: 2px;
}
.strip-caption {
  text-align: center; font-weight: 800; font-size: 0.62rem;
  letter-spacing: 0.14em; padding: 2px 0 4px; color: #6b6572;
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; padding: 52px 24px 64px; }
  .strip-scene { margin-top: 8px; }
  .photo-strip.behind { margin-left: -170px; }
}

/* ---------- ticker ---------- */

.ticker {
  background: var(--ink); color: var(--yellow);
  overflow: hidden; white-space: nowrap;
  border-bottom: var(--border);
  padding: 10px 0;
  font-weight: 700; letter-spacing: 0.06em; font-size: 0.95rem;
}
.ticker-track { display: inline-block; animation: ticker 28s linear infinite; }
.ticker-track span { margin: 0 18px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- shared section rhythm ---------- */

.section { padding: 84px 0; }
.section-head { max-width: 60ch; margin-bottom: 44px; }
.section-head p { margin-top: 14px; font-size: 1.1rem; }
.section.alt { background: var(--cream); border-top: var(--border); border-bottom: var(--border); }

/* ---------- how it works ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  background: var(--white); border: var(--border); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow);
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.25rem;
  margin-bottom: 16px;
}
.step-card:nth-child(1) .step-num { background: var(--pink); color: var(--white); }
.step-card:nth-child(2) .step-num { background: var(--cyan); }
.step-card:nth-child(3) .step-num { background: var(--yellow); }
.step-card:nth-child(4) .step-num { background: var(--ink); color: var(--yellow); }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.97rem; }
.steps-cta { margin-top: 34px; }

@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- revenue ---------- */

.revenue-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }

.zero-card {
  background: var(--white); border: var(--border); border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--pink);
  padding: 40px 34px; text-align: center;
}
.zero-card .zero {
  font-size: clamp(4.5rem, 9vw, 7rem); font-weight: 800; line-height: 1;
  color: var(--pink);
  text-shadow: 4px 4px 0 var(--ink);
}
.zero-card p { font-weight: 700; font-size: 1.15rem; margin-top: 10px; }
.zero-card small { display: block; margin-top: 12px; font-weight: 500; color: #4a4650; }

.derisk { list-style: none; display: grid; gap: 12px; margin: 22px 0 30px; }
.derisk li {
  background: var(--white); border: 2px solid var(--ink); border-radius: 12px;
  padding: 12px 16px; font-weight: 600;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex; gap: 10px; align-items: baseline;
}
.derisk .tick { color: var(--pink); font-weight: 800; }

@media (max-width: 820px) { .revenue-grid { grid-template-columns: 1fr; } }

/* ---------- data (flagship, dark) ---------- */

.data-section {
  background: var(--ink); color: var(--paper);
  border-top: var(--border); border-bottom: var(--border);
  padding: 92px 0;
}
.data-section .eyebrow { background: var(--pink); color: var(--white); box-shadow: 3px 3px 0 var(--yellow); }
.data-section h2 { color: var(--white); }
.data-section h2 em { font-style: normal; color: var(--yellow); }
.data-section .section-head p { color: #d8d4de; }

.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: stretch; margin: 40px 0; }
.flow-step {
  background: #1c1922; border: 3px solid var(--yellow); border-radius: var(--radius);
  padding: 24px 20px;
}
.flow-step .flow-icon { font-size: 1.9rem; margin-bottom: 10px; }
.flow-step h3 { color: var(--yellow); margin-bottom: 8px; font-size: 1.05rem; }
.flow-step p { font-size: 0.93rem; color: #d8d4de; }
.flow-arrow { display: flex; align-items: center; font-size: 1.8rem; color: var(--pink); font-weight: 800; }

.data-cols { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; margin-top: 10px; }
.data-cols .kicker { font-weight: 600; color: var(--white); border-left: 5px solid var(--pink); padding-left: 16px; margin-top: 18px; }

.dash {
  background: var(--paper); color: var(--ink);
  border: var(--border); border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--cyan);
  padding: 22px;
}
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dash-head strong { font-size: 0.95rem; }
.dash-tag {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
  background: var(--yellow); border: 2px solid var(--ink); border-radius: 999px;
  padding: 2px 10px;
}
.dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.dash-stat { border: 2px solid var(--ink); border-radius: 12px; padding: 10px 12px; background: var(--white); }
.dash-stat b { display: block; font-size: 1.5rem; line-height: 1.2; }
.dash-stat span { font-size: 0.78rem; font-weight: 600; color: #4a4650; }
.dash-bars { display: flex; gap: 8px; align-items: flex-end; height: 74px; border: 2px solid var(--ink); border-radius: 12px; padding: 10px; background: var(--white); }
.dash-bars i { flex: 1; border: 2px solid var(--ink); border-radius: 5px 5px 0 0; background: var(--cyan); }
.dash-bars i.hot { background: var(--pink); }
.dash-bars i.warm { background: var(--yellow); }
.dash-note { font-size: 0.75rem; font-weight: 600; color: #4a4650; margin-top: 10px; text-align: right; }

@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { justify-content: center; transform: rotate(90deg); }
  .data-cols { grid-template-columns: 1fr; }
}

/* ---------- booth features ---------- */

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--white); border: var(--border); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 50%; border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 14px;
}
.feature:nth-child(3n+1) .feature-icon { background: var(--pink-soft); }
.feature:nth-child(3n+2) .feature-icon { background: var(--cyan-soft); }
.feature:nth-child(3n) .feature-icon { background: var(--yellow-soft); }
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { font-size: 0.95rem; }

.specs-bar {
  margin-top: 34px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px; border: var(--border);
  padding: 14px 26px;
  display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center;
  font-weight: 600; font-size: 0.95rem;
}
.specs-bar b { color: var(--yellow); }

@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- founding venues ---------- */

.founding { text-align: center; }
.founding .section-head { margin-left: auto; margin-right: auto; }
.venue-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 26px 0 34px; }
.venue-chips .chip { font-size: 1rem; padding: 9px 22px; }

/* ---------- about ---------- */

.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }
.about-card {
  background: var(--cream); border: var(--border); border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--yellow);
  padding: 30px;
}
.about-card h3 { margin-bottom: 14px; }
.about-card p { font-size: 0.97rem; margin-bottom: 10px; }
.about-card a { font-weight: 700; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 14px; max-width: 820px; }
.faq-item {
  background: var(--white); border: var(--border); border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 800; color: var(--pink);
  flex: 0 0 auto; line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { background: var(--yellow-soft); border-bottom: 2px solid var(--ink); }
.faq-item .faq-a { padding: 16px 22px 20px; font-size: 0.97rem; }
.faq-cta { margin-top: 30px; font-weight: 600; }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }

.contact-aside .promise {
  background: var(--white); border: var(--border); border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--pink);
  padding: 26px; margin-top: 22px;
}
.contact-aside .promise b { color: var(--pink); }
.contact-details { margin-top: 26px; font-size: 0.97rem; display: grid; gap: 8px; }
.contact-details a { font-weight: 700; }

.contact-form {
  background: var(--white); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label { font-weight: 700; font-size: 0.88rem; display: block; margin-bottom: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font); font-size: 0.97rem;
  border: 2px solid var(--ink); border-radius: 10px;
  padding: 11px 13px;
  background: var(--paper);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid var(--cyan); outline-offset: 1px;
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form .btn { width: 100%; font-size: 1.05rem; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink); color: #d8d4de;
  border-top: var(--border);
  padding: 56px 0 34px;
  font-size: 0.93rem;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand svg { height: 64px; width: auto; margin-bottom: 14px; }
.footer-brand p { max-width: 34ch; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 0.04em; }
.footer-links { list-style: none; display: grid; gap: 8px; }
.footer-links a { color: #d8d4de; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { display: grid; gap: 8px; font-style: normal; }
.footer-contact a { color: var(--yellow); font-weight: 600; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #3a3542; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 0.85rem; color: #a49fae;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
