/* Flash it! — signage mood: white ground, ink outlines, chrome yellow accent. */

:root {
  --ground: #ffffff;
  --ink: #111111;
  --asphalt: #6b6b6b;
  --lane: #f2f2f2;
  --chrome: #ffd100;
  --go: #1fa84f;
  --stop: #e63b2e;
  --display: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --gutter: 20px;
  --max: 1040px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Header */
.site-header {
  border-bottom: 2px solid var(--ink);
  background: var(--ground);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--ink);
}
.brand .bang {
  display: inline-block;
  background: var(--chrome);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0 8px;
  transform: rotate(-8deg);
  box-shadow: 3px 3px 0 var(--ink);
  line-height: 1.3;
}
.nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 15px;
}
.nav a { text-decoration: none; }
.nav a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Buttons (sticker style) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 80ms ease, box-shadow 80ms ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--chrome); }
.btn svg { width: 22px; height: 22px; }

/* Hero */
.hero {
  padding: 72px 0 56px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin-bottom: 18px;
}
h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
h1 .hl {
  background: var(--chrome);
  box-shadow: 0 0 0 0 var(--chrome);
  padding: 0 6px;
  border-radius: 6px;
}
.lede {
  font-size: 20px;
  color: var(--asphalt);
  max-width: 34ch;
  margin: 0 0 32px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-note { font-size: 14px; color: var(--asphalt); }

/* Card stack illustration */
.stack {
  position: relative;
  height: 380px;
}
.card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  height: 320px;
  margin: -160px 0 0 -120px;
  background: var(--ground);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--display);
  font-weight: 800;
}
.card.back-2 { transform: rotate(-12deg) translate(-36px, 12px); background: var(--lane); }
.card.back-1 { transform: rotate(-6deg) translate(-18px, 6px); }
.card.front { transform: rotate(3deg); }
.card .q { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--asphalt); font-family: var(--body); font-weight: 600; }
.card .text { font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; }
.card .chip {
  align-self: flex-start;
  background: var(--chrome);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
}
.card .rate { display: flex; gap: 8px; }
.card .rate span {
  flex: 1;
  text-align: center;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 8px 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 3px 3px 0 var(--ink);
}
.card .rate .no { background: var(--stop); color: #fff; }
.card .rate .yes { background: var(--go); color: #fff; }

/* Feature grid */
.features { padding: 24px 0 72px; }
.features h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--ground);
}
.feature .icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--chrome);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature p { margin: 0; color: var(--asphalt); font-size: 16px; }

/* Steps strip */
.steps {
  background: var(--lane);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 56px 0;
}
.steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ground);
  font-family: var(--display);
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 12px;
}
.steps strong { display: block; font-family: var(--display); font-weight: 800; font-size: 19px; margin-bottom: 4px; }
.steps span { color: var(--asphalt); font-size: 15px; }

/* Closing CTA */
.closing { padding: 72px 0; text-align: center; }
.closing h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

/* Footer */
.site-footer {
  border-top: 2px solid var(--ink);
  padding: 28px 0 40px;
  font-size: 14px;
  color: var(--asphalt);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
}
.site-footer nav { display: flex; gap: 20px; }
.site-footer a { text-decoration: none; color: var(--ink); font-weight: 600; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Legal pages */
.legal { padding: 56px 0 80px; }
.legal .wrap { max-width: 760px; }
.legal h1 {
  font-size: clamp(38px, 6vw, 56px);
  margin-bottom: 8px;
}
.legal .updated { color: var(--asphalt); font-size: 15px; margin: 0 0 40px; }
.legal h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}
.legal p, .legal li { font-size: 17px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal .summary {
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--chrome);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 20px 24px;
  margin: 0 0 8px;
}
.legal .summary p { margin: 0; font-weight: 500; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }

/* Responsive */
@media (max-width: 860px) {
  .hero { padding: 48px 0 40px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .stack { height: 340px; order: -1; }
  .card { width: 200px; height: 270px; margin: -135px 0 0 -100px; padding: 20px; }
  .card .text { font-size: 22px; }
  .grid { grid-template-columns: 1fr; }
  .steps ol { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  :root { --gutter: 16px; }
  body { font-size: 16px; }
  .site-header .wrap { height: 64px; }
  .brand { font-size: 20px; }
  .brand img { width: 34px; height: 34px; }
  .nav { gap: 16px; font-size: 14px; }
  .lede { font-size: 18px; }
  .steps ol { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-note { text-align: center; }
}
