/* ==========================================================================
   Snap DutchStickers (Snap Stickers) — Design System
   Dutch Bros–inspired blue & white · Light-first · Clean · Accessible
   ========================================================================== */

:root {
  /* Core palette — blue / white */
  --bg-deep: #e8f1f8;
  --bg: #f5f9fc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f7fc;
  --bg-input: #ffffff;

  --text: #0b2a42;
  --text-muted: #4a6a82;
  --text-dim: #7a94a8;

  --accent: #0d5999;          /* Primary Dutch Bros–inspired blue */
  --accent-hot: #0a4a80;
  --accent-gold: #0d5999;     /* Reused as secondary accent (blue, not orange) */
  --accent-yellow: #1a7abf;
  --accent-soft: rgba(13, 89, 153, 0.1);
  --accent-glow: rgba(13, 89, 153, 0.28);
  --accent-mid: #1470b8;

  --border: rgba(13, 89, 153, 0.12);
  --border-strong: rgba(13, 89, 153, 0.22);

  --success: #2e7d4f;
  --warning: #c47f00;
  --danger: #c62828;
  --info: #0d5999;

  /* Rarity colors */
  --rarity-common: #4caf50;
  --rarity-uncommon: #2196f3;
  --rarity-rare: #9c27b0;
  --rarity-regional: #00897b;
  --rarity-ultra-rare: #f9a825;

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(13, 50, 90, 0.06);
  --shadow: 0 8px 24px rgba(13, 50, 90, 0.08);
  --shadow-lg: 0 16px 48px rgba(13, 50, 90, 0.12);
  --shadow-glow: 0 0 32px var(--accent-glow);

  --nav-h: 64px;
  --disclaimer-h: 0px;
  --container: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;

  --transition: 0.2s ease;
}

/* Dark theme overrides (optional toggle) */
[data-theme="dark"] {
  --bg-deep: #071420;
  --bg: #0a1a2a;
  --bg-elevated: #0f2438;
  --bg-card: #122b42;
  --bg-card-hover: #183650;
  --bg-input: #0f2438;
  --text: #e8f2fa;
  --text-muted: #9bb4c9;
  --text-dim: #6a8499;
  --border: rgba(120, 180, 230, 0.12);
  --border-strong: rgba(120, 180, 230, 0.22);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  --accent-soft: rgba(80, 160, 230, 0.15);
  --accent: #3d9fe0;
  --accent-hot: #5ab0ea;
  --accent-gold: #6bb8ec;
  --accent-yellow: #8ecbf4;
  --accent-mid: #4aa8e8;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Soft blue atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 89, 153, 0.1), transparent),
    radial-gradient(ellipse 40% 30% at 100% 50%, rgba(20, 112, 184, 0.05), transparent),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(13, 89, 153, 0.06), transparent);
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hot); }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Focus visibility — high contrast on blue/white */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.page {
  display: none;
  padding: calc(var(--nav-h) + var(--disclaimer-h) + 1.5rem) 0 4rem;
  min-height: 100vh;
  animation: fadeIn 0.35s ease;
}

.page.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Persistent disclaimer bar
   ========================================================================== */

.disclaimer-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: #0a3d6b;
  color: #e8f2fa;
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.disclaimer-bar strong {
  font-weight: 800;
}

body {
  --disclaimer-h: 44px;
}

@media (min-width: 700px) {
  body { --disclaimer-h: 36px; }
  .disclaimer-bar { font-size: 0.82rem; padding: 0.4rem 1.25rem; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: var(--disclaimer-h);
  left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(245, 249, 252, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .site-header {
  background: rgba(10, 26, 42, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo:hover { color: var(--text); }

.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-mid) 100%);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px var(--accent-glow);
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .name {
  color: var(--text);
  font-size: 1.05rem;
}

.logo-text .name span {
  color: var(--accent);
}

.logo-text .sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

.nav-links a {
  color: var(--text-muted);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--accent-soft);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle,
.menu-toggle {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.theme-toggle:hover,
.menu-toggle:hover {
  border-color: var(--border-strong);
  color: var(--text);
  background: var(--bg-card-hover);
}

.menu-toggle { display: grid; }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + var(--disclaimer-h));
  left: 0; right: 0; bottom: 0;
  background: rgba(10, 30, 50, 0.45);
  z-index: 99;
  backdrop-filter: blur(4px);
}

.nav-drawer.open { display: block; }

.nav-drawer-panel {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-drawer-panel a {
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-drawer-panel a:hover,
.nav-drawer-panel a.active {
  background: var(--accent-soft);
  color: var(--accent);
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

/* ==========================================================================
   Sticker Day banner
   ========================================================================== */

.sticker-day-banner {
  display: none;
  background: linear-gradient(90deg, #0d5999 0%, #1a7abf 50%, #0d5999 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  z-index: 101;
  margin-top: calc(var(--nav-h) + var(--disclaimer-h));
}

.sticker-day-banner.visible { display: block; }

.sticker-day-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 0.5rem;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

body.has-sticker-day-banner .page {
  padding-top: calc(var(--nav-h) + var(--disclaimer-h) + 36px + 1.5rem);
}

/* ==========================================================================
   Buttons & badges
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 100%);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
  color: var(--accent-hot);
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.btn-block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-beta {
  background: linear-gradient(135deg, #0d5999, #1470b8);
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 89, 153, 0.35);
}

.badge-fan {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--border-strong);
}

.badge-rarity {
  border: 1px solid currentColor;
  background: color-mix(in srgb, currentColor 18%, transparent);
}

.badge-holo {
  background: linear-gradient(90deg, #5c6bc0, #26a69a, #42a5f5, #7e57c2);
  background-size: 200% auto;
  color: #fff;
  animation: holoShift 3s linear infinite;
}

@keyframes holoShift {
  to { background-position: 200% center; }
}

.badge-regional {
  background: rgba(0, 137, 123, 0.12);
  color: #00695c;
  border: 1px solid rgba(0, 137, 123, 0.35);
}

[data-theme="dark"] .badge-regional {
  color: #4db6ac;
}

.badge-employee {
  background: rgba(13, 89, 153, 0.12);
  color: var(--accent);
  border: 1px solid rgba(13, 89, 153, 0.3);
}

.badge-scented {
  background: rgba(156, 39, 176, 0.12);
  color: #7b1fa2;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

/* Sticker-peel corner accent */
.card-peel::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 28px; height: 28px;
  background: linear-gradient(225deg, var(--accent) 50%, transparent 50%);
  border-radius: 0 var(--radius-lg) 0 0;
  opacity: 0.35;
  pointer-events: none;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  text-align: center;
  padding: 2rem 0 2rem;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
  max-width: 560px;
  margin-inline: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-disclaimer {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0.85rem 1.1rem;
  background: rgba(198, 40, 40, 0.06);
  border: 1px solid rgba(198, 40, 40, 0.22);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero-disclaimer strong {
  color: var(--danger);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Beta callout */
.beta-callout {
  background: linear-gradient(135deg, rgba(13, 89, 153, 0.1), rgba(20, 112, 184, 0.08));
  border: 1px solid rgba(13, 89, 153, 0.28);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.35rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: left;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.beta-callout-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.beta-callout h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--text);
}

.beta-callout p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.beta-callout a {
  font-weight: 700;
}

/* Countdown */
.countdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.countdown-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 89, 153, 0.06), rgba(20, 112, 184, 0.04));
  pointer-events: none;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}

.countdown-units {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  position: relative;
}

.countdown-unit {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 0.75rem 0.4rem;
  border: 1px solid var(--border);
}

.countdown-unit .num {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: var(--text);
}

.countdown-unit .lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.countdown-date {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
}

/* Quick links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .quick-links { grid-template-columns: repeat(4, 1fr); }
}

.quick-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  color: var(--text);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.quick-link:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--text);
  background: var(--bg-card-hover);
}

.quick-link-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.quick-link strong {
  font-size: 0.95rem;
}

.quick-link span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section blocks on home */
.home-section {
  margin-bottom: 2.5rem;
}

.home-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.home-section-title h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.home-section-lead {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 640px;
}

/* ==========================================================================
   Feature grid (native app features)
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent-soft), rgba(20, 112, 184, 0.08));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-card ul {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.feature-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.category-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid var(--border);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: var(--bg-card-hover);
}

.faq-item .faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-item .faq-body p + p {
  margin-top: 0.6rem;
}

/* ==========================================================================
   Sticker cards
   ========================================================================== */

.sticker-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: default;
  height: 100%;
}

.sticker-art {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(13, 89, 153, 0.15);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 50%),
    var(--sticker-color, var(--accent));
}

.sticker-art::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.sticker-art::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 22px; height: 22px;
  background: linear-gradient(225deg, rgba(255,255,255,0.45) 50%, transparent 50%);
  opacity: 0.7;
}

.sticker-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.sticker-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.sticker-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sticker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.sticker-year {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.status-owned {
  border-color: rgba(46, 125, 79, 0.4) !important;
  box-shadow: 0 0 0 1px rgba(46, 125, 79, 0.15);
}

.status-wanted {
  border-color: rgba(13, 89, 153, 0.4) !important;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group .hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-control::placeholder { color: var(--text-dim); }

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%234a6a82'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
  .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-muted);
}

.checkbox-label input {
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  align-items: flex-end;
}

.filters-bar .form-group {
  margin-bottom: 0;
  flex: 1 1 140px;
}

.filters-bar .form-control {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.progress-bar {
  height: 10px;
  background: var(--bg-deep);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0.75rem 0 1.5rem;
  border: 1px solid var(--border);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
  min-width: 0;
}

/* ==========================================================================
   Identify page
   ========================================================================== */

.identify-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .identify-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

.upload-zone {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.upload-preview {
  max-height: 200px;
  margin: 0.75rem auto 0;
  border-radius: var(--radius);
  display: none;
}

.upload-preview.visible { display: block; }

.result-card {
  min-height: 280px;
}

.result-placeholder {
  color: var(--text-dim);
  text-align: center;
  padding: 2rem 1rem;
}

.result-confidence {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.confidence-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-deep);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  background: var(--success);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Trade board
   ========================================================================== */

.trade-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .trade-layout { grid-template-columns: 1fr 1fr; }
}

.trade-offer {
  border-left: 3px solid var(--accent);
}

.trade-offer .trade-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.tip-item .tip-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Sticker Day page
   ========================================================================== */

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 1rem;
}

.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: var(--bg);
}

.cal-day.header {
  background: transparent;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-dim);
  aspect-ratio: auto;
  padding: 0.4rem 0;
}

.cal-day.other { opacity: 0.35; }
.cal-day.today {
  border: 1px solid var(--accent);
  color: var(--text);
  font-weight: 700;
}
.cal-day.sticker-day {
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ==========================================================================
   Beta Apps page
   ========================================================================== */

.platform-cards {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 560px) {
  .platform-cards { grid-template-columns: 1fr 1fr; }
}

.platform-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.platform-card .platform-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.feature-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

/* ==========================================================================
   About
   ========================================================================== */

.about-content {
  max-width: 720px;
}

.about-content h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--accent);
}

.about-content p,
.about-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.about-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.disclaimer-box {
  background: rgba(198, 40, 40, 0.06);
  border: 1px solid rgba(198, 40, 40, 0.25);
  border-radius: var(--radius);
  padding: 1.15rem;
  margin: 1.5rem 0;
}

.disclaimer-box strong {
  color: var(--danger);
  display: block;
  margin-bottom: 0.4rem;
}

.disclaimer-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #0a3d6b;
  color: #d0e4f5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: #b8d4ec;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

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

.footer-brand .logo {
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-brand .logo .name,
.footer-brand .logo .name span {
  color: #fff;
}

.footer-brand .logo .sub {
  color: #9ec4e0;
}

.footer-brand p {
  color: #9ec4e0;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7aa8c8;
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  color: #b8d4ec;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.footer-col a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: #7aa8c8;
  text-align: center;
  line-height: 1.6;
}

.footer-bottom .disclaimer {
  margin-top: 0.5rem;
  max-width: 720px;
  margin-inline: auto;
  color: #8fb4d0;
}

/* ==========================================================================
   Toast notifications
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: min(360px, calc(100vw - 2rem));
  pointer-events: none;
}

.toast {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  animation: toastIn 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.info { border-left: 3px solid var(--info); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Empty states & misc
   ========================================================================== */

.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-dim);
}

.empty-state .empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  align-items: center;
}

.view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.view-toggle button {
  background: var(--bg-card);
  border: none;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  color: var(--text-muted);
}

.view-toggle button.active {
  background: var(--accent-soft);
  color: var(--accent);
}

.card-grid.list-view {
  grid-template-columns: 1fr !important;
}

.card-grid.list-view .sticker-card {
  flex-direction: row;
  align-items: center;
}

.card-grid.list-view .sticker-art {
  width: 64px;
  height: 64px;
  aspect-ratio: 1;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card-grid.list-view .sticker-desc {
  -webkit-line-clamp: 1;
}

.tag-chip {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: var(--bg);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 50, 0.55);
  z-index: 150;
  place-items: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: grid; }

.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.modal-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* Loading spinner */
.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 1rem auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
