/* SqwarkPic marketing site — the "Sticker Shop" design (issue #55).
   Tokens straight from docs/design/DESIGN.md; this page is a single fixed
   look (no dark mode) so every colour below is one of the eight approved
   hex values, no ad-hoc ones. */

:root {
  --ink: #15272A;
  --ink2: #1F3730;
  --teal: #00C8B3;
  --lime: #7AF400;
  --orange: #FF8C42;
  --sand: #F3DCBA;
  --khaki: #838F1D;
  --paper: #FFFFFF;

  --font-display: 'Titan One', 'Arial Black', 'Helvetica Neue', sans-serif;
  --font-body: 'Nunito', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.5;
}

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

a { color: var(--ink); text-decoration: none; }

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

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.dots {
  background-color: var(--sand);
  background-image: radial-gradient(rgba(21, 39, 42, 0.16) 1.4px, transparent 1.6px);
  background-size: 22px 22px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .hero-parrot { animation: none; }
}

h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 4px solid var(--ink);
  border-radius: 18px;
  font-weight: 900;
  font-size: 1.375rem;
  padding: 18px 30px;
  cursor: pointer;
}

.btn-sticker {
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-sticker:hover {
  transform: translate(2px, 2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-lime { background: var(--lime); color: var(--ink); }
.btn-white { background: var(--paper); color: var(--ink); }

.btn-disabled,
.btn-disabled:hover {
  background: var(--sand);
  color: var(--khaki);
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.buy-pill {
  background: var(--ink);
  color: var(--sand);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  transition: background-color 0.15s ease;
}

.buy-pill:hover { background: var(--ink2); color: var(--sand); }

/* Nav */

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  border-bottom: 3px solid var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark { width: 44px; height: 44px; }

.brand-name { font-size: 1.875rem; line-height: 1; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 800;
  font-size: 1.0625rem;
}

.site-nav a:not(.buy-pill):hover { color: var(--teal); }

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 56px 40px;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 720px;
  max-width: 100%;
  flex-shrink: 0;
}

.badge-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  font-weight: 900;
  font-size: 0.9375rem;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-2deg);
}

.badge-pill-orange {
  background: var(--orange);
  border-color: var(--ink);
  box-shadow: none;
}

.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
}

.dot-lime { background: var(--lime); }

.hero-heading {
  font-size: clamp(3.5rem, 7.2vw, 6.5rem);
  line-height: 0.92;
  text-wrap: balance;
}

.pop-badge {
  display: inline-block;
  background: var(--teal);
  padding: 0 18px 6px;
  border: 4px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-2deg);
}

.hero-sub {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 700;
  max-width: 600px;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-row svg { color: var(--ink); }

.hero-fineprint {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink2);
}

.hero-visual {
  position: relative;
  flex-grow: 1;
  min-width: 340px;
  height: 620px;
}

.polaroid {
  position: absolute;
  left: 30px;
  top: 40px;
  width: 560px;
  max-width: calc(100% - 30px);
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 14px;
  padding: 16px 16px 58px;
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(3deg);
}

.polaroid img {
  width: 100%;
  border-radius: 6px;
  border: 3px solid var(--ink);
}

.polaroid-tag {
  position: absolute;
  top: -18px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 6px 14px;
  font-weight: 900;
  font-size: 1.125rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.polaroid-tag-before { left: -22px; background: var(--orange); transform: rotate(-8deg); }
.polaroid-tag-after { right: -22px; background: var(--lime); transform: rotate(6deg); }

.polaroid-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  font-size: 1.25rem;
  color: var(--khaki);
}

.hero-parrot {
  position: absolute;
  right: -10px;
  bottom: -30px;
  width: 340px;
  height: 340px;
  animation: bob 4s ease-in-out infinite;
  filter: drop-shadow(10px 10px 0 rgba(21, 39, 42, 1));
}

.speech-bubble {
  position: absolute;
  right: 300px;
  bottom: 250px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 12px 20px;
  font-weight: 900;
  font-size: 1.375rem;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-4deg);
}

/* Marquee */

.marquee {
  background: var(--ink);
  color: var(--sand);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-size: 1.375rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-loop { display: flex; align-items: center; gap: 48px; }

.marquee-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.marquee-dot-teal { background: var(--teal); }
.marquee-dot-lime { background: var(--lime); }
.marquee-dot-orange { background: var(--orange); }

/* Three things */

.things {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 56px;
  background: var(--paper);
  overflow: hidden;
}

.things-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.things-head h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  max-width: 760px;
}

.things-head p {
  max-width: 420px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: pretty;
}

.things-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.thing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 10px 10px 0 var(--ink);
}

.thing-card-1 { transform: rotate(-1.5deg); }
.thing-card-2 { transform: rotate(1deg); margin-top: 28px; }
.thing-card-3 { transform: rotate(-1deg); }

.thing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.thing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 3px solid var(--ink);
  border-radius: 14px;
}

.thing-icon-teal { background: var(--teal); }
.thing-icon-orange { background: var(--orange); }
.thing-icon-lime { background: var(--lime); }

.thing-num { font-size: 1.75rem; color: var(--khaki); }

.thing-card img {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 12px;
}

.thing-card h3 { font-size: 2.125rem; line-height: 1; }

.thing-card p { font-size: 1.0625rem; font-weight: 700; line-height: 1.45; }

.thing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 18px;
  min-height: 178px;
  justify-content: center;
}

.thing-list-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--khaki);
}

.thing-list-row-keeper { font-weight: 900; color: var(--ink); }

.thing-list-dot {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--ink);
  flex-shrink: 0;
}

.thing-list-dot-lime { background: var(--lime); }

/* Honesty */

.honesty {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 56px;
  background: var(--ink);
  color: var(--sand);
  overflow: hidden;
}

.honesty-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-grow: 1;
  max-width: 820px;
}

.honesty h2 {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 0.92;
  color: var(--paper);
}

.teal-text { color: var(--teal); }

.honesty-sub {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 700px;
  text-wrap: pretty;
}

.honesty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.honesty-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 3px solid var(--sand);
  border-radius: 18px;
  padding: 18px;
}

.honesty-tile-title { font-size: 1.375rem; color: var(--lime); }

.honesty-tile-body { font-size: 1rem; font-weight: 700; line-height: 1.4; }

.honesty-visual {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

.honesty-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--teal);
  border: 4px solid var(--sand);
}

.honesty-visual img {
  position: absolute;
  left: 30px;
  top: 20px;
  width: 330px;
  height: 330px;
}

.honesty-bubble {
  position: absolute;
  left: -60px;
  top: -20px;
  background: var(--paper);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 1.1875rem;
  max-width: 220px;
  line-height: 1.25;
  box-shadow: 6px 6px 0 var(--lime);
  transform: rotate(-5deg);
}

/* Roadmap */

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 88px 56px;
  background: var(--sand);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}

.roadmap-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.roadmap-head h2 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 0.95;
  max-width: 700px;
}

.roadmap-head p {
  max-width: 520px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: pretty;
}

.roadmap-tags {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 6px 6px 0 var(--ink);
}

.tag-today { background: var(--lime); }
.tag-idea { background: var(--paper); }
.tag-idea-1 { transform: rotate(-1.5deg); }
.tag-idea-2 { transform: rotate(1deg); }

.tag-dashed {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
  color: var(--khaki);
}

.tag-badge {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8125rem;
}

.tag-badge-today { background: var(--ink); color: var(--lime); }
.tag-badge-idea { background: var(--sand); border: 2px solid var(--ink); color: var(--ink); padding: 3px 10px; }

/* Pricing */

.pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 56px;
  overflow: hidden;
}

.pricing-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
}

.pricing-copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
}

.pricing-copy p {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: pretty;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 440px;
  max-width: 100%;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(2deg);
}

.pricing-badge {
  position: absolute;
  right: -26px;
  top: -26px;
  background: var(--orange);
  border: 4px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 1rem;
  transform: rotate(10deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price { font-size: clamp(3.5rem, 9vw, 6.875rem); line-height: 0.9; }

.price-unit { font-weight: 900; font-size: 1.375rem; color: var(--khaki); }

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 800;
  font-size: 1.125rem;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-list svg { flex-shrink: 0; }

.pricing-buy { width: 100%; padding: 18px; font-size: 1.375rem; }

.pricing-note {
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--khaki);
}

/* Footer */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 56px;
  background: var(--ink);
  color: var(--sand);
  border-top: 4px solid var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-name { font-size: 1.375rem; color: var(--paper); }

.footer-meta { font-weight: 700; font-size: 0.9375rem; opacity: 0.8; }

.footer-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
  font-size: 0.9375rem;
  flex-wrap: wrap;
}

.footer-email { color: var(--teal); }
.footer-email:hover { color: var(--lime); }

/* Responsive: ~1024 — hero stacks, cards go 2-up */

@media (max-width: 1180px) {
  .hero { flex-direction: column; align-items: stretch; padding: 56px 40px 40px; }

  .hero-copy { width: 100%; }

  .hero-visual {
    width: 80%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 560 / 620;
    align-self: center;
    margin-top: 24px;
  }

  .things, .honesty, .roadmap, .pricing, .site-header, .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .things-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .thing-card-3 { grid-column: 1 / -1; }

  .honesty { flex-direction: column; align-items: flex-start; gap: 48px; }

  .honesty-visual { align-self: center; margin-top: 40px; }

  .honesty-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .pricing { justify-content: space-between; }
}

/* Responsive: ~390 — single column everything */

@media (max-width: 720px) {
  .site-header { padding: 18px 20px; flex-wrap: wrap; gap: 14px; }

  .site-nav { gap: 18px; font-size: 0.9375rem; flex-wrap: wrap; }

  .hero { padding: 40px 20px 32px; gap: 32px; }

  .hero-heading { font-size: clamp(3.5rem, 12vw, 4rem); }

  .hero-sub { font-size: 1.1875rem; }

  .cta-row { flex-direction: column; align-items: stretch; }

  .btn { width: 100%; font-size: 1.1875rem; padding: 16px 22px; }

  .hero-visual {
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    height: 420px;
    margin-top: 40px;
  }

  .polaroid { left: 0; top: 0; width: 100%; max-width: 100%; }

  .polaroid-tag { font-size: 0.9375rem; padding: 5px 12px; }
  .polaroid-tag-before { left: 0; }
  .polaroid-tag-after { right: 0; }

  .hero-parrot {
    width: 180px;
    height: 180px;
    right: -10px;
    bottom: -20px;
  }

  .speech-bubble {
    right: 150px;
    bottom: 130px;
    font-size: 1.0625rem;
    padding: 8px 14px;
  }

  .things, .honesty, .roadmap, .pricing {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .things-head, .roadmap-head { flex-direction: column; align-items: flex-start; gap: 20px; }

  .things-grid { grid-template-columns: 1fr; }

  .thing-card-1, .thing-card-2, .thing-card-3 { transform: none; margin-top: 0; }

  .honesty-grid { grid-template-columns: 1fr; }

  .honesty-visual { width: 260px; height: 260px; }

  .honesty-visual img { width: 220px; height: 220px; left: 20px; top: 12px; }

  .honesty-bubble { left: -10px; top: -30px; max-width: 180px; font-size: 1rem; }

  .pricing { flex-direction: column; }

  .pricing-card { width: 100%; transform: rotate(0); }

  .pricing-badge { right: 12px; top: -20px; transform: rotate(6deg); }

  .footer-brand, .footer-right { justify-content: center; text-align: center; width: 100%; }

  .site-footer { flex-direction: column; text-align: center; padding: 28px 20px; }
}
