:root {
  --bg: #0a0e1a;
  --bg-elevated: #10162a;
  --bg-card: #141b32;
  --border: #232c47;
  --text: #e8ecf7;
  --text-dim: #8b94b3;
  --accent: #f59e0b;
  --accent-dim: #7c5a12;
  --good: #22c55e;
  --warn: #f59e0b;
  --bad: #ef4444;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}
 
* { box-sizing: border-box; }
 
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
 
h1, h2, h3, .logo-text, .btn-analyze, .step-number {
  font-family: var(--font-display);
}
 
a { color: inherit; text-decoration: none; }
 
/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; }
.logo-icon { font-size: 1.3rem; }
.logo-text strong { color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-dim); font-size: 0.92rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
 
/* HERO */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 24px;
}
h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 24px;
}
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.dot { opacity: 0.4; }
 
/* FORM BOX */
.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}
 
/* Upload zone */
.upload-zone {
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 22px;
  transition: border-color 0.2s, background 0.2s;
}
.upload-zone.dragover {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.05);
}
.upload-icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 10px;
}
.upload-empty p { margin: 4px 0; }
.upload-empty strong { font-size: 1rem; }
.upload-hint { color: var(--text-dim); font-size: 0.85rem; }
.btn-upload {
  margin-top: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-upload:hover { border-color: var(--accent); }
 
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.thumb {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb .remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
  padding: 0;
}
.thumb.add-more {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bg-elevated);
  color: var(--text-dim);
  font-size: 1.4rem;
}
 
/* Fields */
.fields-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-full { margin-bottom: 20px; }
.field label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}
.optional { color: var(--text-dim); font-weight: 400; opacity: 0.7; }
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
}
.field textarea { resize: vertical; }
 
/* ===== TŘEŠNIČKA #3: Pulzující CTA glow ===== */
.btn-analyze {
  width: 100%;
  background: var(--accent);
  color: #1a1206;
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  50% { box-shadow: 0 0 20px 4px rgba(245, 158, 11, 0.3); }
}
.btn-analyze:hover { filter: brightness(1.08); animation: none; box-shadow: 0 0 24px 6px rgba(245, 158, 11, 0.25); }
.btn-analyze:active { transform: scale(0.99); }
.btn-analyze:disabled { opacity: 0.6; cursor: not-allowed; animation: none; box-shadow: none; }
 
.btn-clear-form {
  display: block;
  margin: 10px auto 0;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}
.btn-clear-form:hover { color: var(--bad); }
 
.spinner {
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
 
.search-error {
  color: var(--bad);
  font-size: 0.85rem;
  margin-top: 10px;
  text-align: center;
  min-height: 1.2em;
}
 
.supported-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
}
 
/* LOADING */
.loading-section {
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}
.loading-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
}
.loading-car-scene {
  position: relative;
  height: 100px;
  margin-bottom: 24px;
  overflow: hidden;
}
.car-body {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.wheel-spin { animation: wheelspin 0.6s linear infinite; }
@keyframes wheelspin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.road { position: absolute; bottom: 6px; width: 100%; }
.road-lines { display: flex; gap: 14px; animation: roadmove 0.6s linear infinite; }
.road-line { width: 20px; height: 3px; background: var(--border); border-radius: 2px; flex-shrink: 0; }
@keyframes roadmove {
  from { transform: translateX(0); }
  to { transform: translateX(-34px); }
}
 
.loading-steps { text-align: left; margin-bottom: 20px; }
.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.step.active, .step.done { opacity: 1; color: var(--text); }
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.step.active .step-dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(245,158,11,0.15); }
.step.done .step-dot { background: var(--good); }
 
.loading-timer { color: var(--text-dim); font-size: 0.85rem; }
 
/* DEMO REPORT SECTION */
.demo-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 56px;
  text-align: center;
}
.demo-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--good);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.demo-header h2 { font-size: 1.5rem; margin: 0 0 8px; }
.demo-header p { color: var(--text-dim); font-size: 0.94rem; margin: 0 0 20px; }
.btn-demo-toggle {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-demo-toggle:hover { border-color: var(--accent); }
 
.demo-report-wrap {
  margin-top: 28px;
  text-align: left;
  position: relative;
}
.demo-watermark {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.78rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
}
#demoResultsContainer { display: flex; flex-direction: column; gap: 20px; }
 
/* RESULTS */
.results-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.results-container { display: flex; flex-direction: column; gap: 20px; }
 
@keyframes fadeInBlock {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-block {
  opacity: 0;
  animation: fadeInBlock 0.5s ease forwards;
}
 
.verdict-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.verdict-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.verdict-badge.good { background: rgba(34,197,94,0.12); color: var(--good); border: 1px solid rgba(34,197,94,0.3); }
.verdict-badge.warn { background: rgba(245,158,11,0.12); color: var(--warn); border: 1px solid rgba(245,158,11,0.3); }
.verdict-badge.bad { background: rgba(239,68,68,0.12); color: var(--bad); border: 1px solid rgba(239,68,68,0.3); }
.verdict-summary { color: var(--text-dim); font-size: 0.95rem; max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.summary-paragraph { display: block; text-align: left; }
 
.risk-gauge-wrap { display: flex; justify-content: center; margin: 20px 0; }
 
/* ===== TŘEŠNIČKA #1: Animovaný gauge ===== */
.risk-gauge-wrap svg .gauge-needle {
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.risk-gauge-wrap.gauge-animated svg .gauge-needle {
  /* JS sets the final rotation via inline style */
}
 
.result-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transition: border-color 0.2s, transform 0.2s;
}
.result-block h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.flag-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.flag-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-elevated);
  transition: background 0.2s;
}
.flag-item.severity-high { border-left: 3px solid var(--bad); background: rgba(239, 68, 68, 0.06); }
.flag-item.severity-medium { border-left: 3px solid var(--warn); background: rgba(245, 158, 11, 0.05); }
.flag-item.severity-low { border-left: 3px solid var(--good); background: rgba(34, 197, 94, 0.05); }
.flag-icon { flex-shrink: 0; }
.flag-item strong { color: var(--text); font-family: var(--font-display); font-size: 0.9rem; }
 
.price-compare { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.price-box { flex: 1; min-width: 140px; text-align: center; padding: 14px; background: var(--bg-elevated); border-radius: 12px; }
.price-label { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 4px; }
.price-value { font-size: 1.3rem; font-weight: 700; font-family: var(--font-display); }
.price-box-target {
  border: 1px solid rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.06);
}
.price-box-target .price-value { color: var(--accent); }
.market-range {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-radius: 10px;
}
.market-range strong { color: var(--text); font-family: var(--font-display); }
 
.report-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.btn-restart {
  display: block;
  margin: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.88rem;
}
.btn-restart:hover { border-color: var(--accent); color: var(--text); }
 
.btn-download {
  display: block;
  margin: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, transform 0.1s;
}
.btn-download:hover { border-color: var(--accent); }
.btn-download:active { transform: scale(0.98); }
.btn-download:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-download-primary {
  background: var(--accent);
  color: #1a1206;
  border: none;
  font-weight: 600;
}
.btn-download-primary:hover { filter: brightness(1.08); border-color: transparent; }
 
/* Engine identification tag */
.engine-id {
  display: inline-block;
  color: var(--text-dim);
  font-size: 0.82rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 999px;
  margin: 4px 0 14px;
}
 
.expected-note {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-style: normal;
  margin-top: 4px;
}
 
/* Strengths block */
.strengths-block {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(180deg, rgba(34,197,94,0.04), var(--bg-card) 60%);
}
.strengths-block h3 { color: var(--good); }
.strengths-block .flag-item { background: rgba(34, 197, 94, 0.07); }
 
/* SECTIONS */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 40px;
}
.section.dark {
  max-width: 100%;
  background: var(--bg-elevated);
}
.section.dark > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
 
.steps-grid, .sites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.sites-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
 
.step-card, .site-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1206;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}
.step-card h3, .site-name { margin: 0 0 8px; font-size: 1.02rem; }
.step-card p, .site-desc { color: var(--text-dim); font-size: 0.9rem; margin: 0; }
.site-name { font-family: var(--font-display); font-weight: 600; }
 
/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; color: var(--text-dim); font-size: 0.88rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.footer-disclaimer { font-size: 0.78rem; opacity: 0.7; margin-top: 8px; }
 
/* ===== TŘEŠNIČKA #2: Scroll-reveal animace ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delay for child cards */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.2s; }
/* Children start hidden too */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
/* JS adds .revealed to the ancestor .reveal element (the <section>),
   not to .reveal-stagger itself — so this must match via ancestor,
   not require .reveal-stagger.revealed directly. */
.reveal.revealed .reveal-stagger > *,
.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}
 
/* ===== TŘEŠNIČKA #4: Sticky CTA na mobilu ===== */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-cta-mobile.visible {
  transform: translateY(0);
}
/* Dokud je cookie banner otevřený, sticky CTA schováme (viz app.js/index.html
   inline script) — oba jsou position:fixed dole a na mobilu se překrývaly. */
.sticky-cta-mobile.cookie-banner-open {
  display: none;
}
.sticky-cta-mobile button {
  width: 100%;
  background: var(--accent);
  color: #1a1206;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-cta-mobile button:active { transform: scale(0.98); }
 
/* RESPONSIVE */
@media (max-width: 720px) {
  h1 { font-size: 2rem; }
  .fields-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: 1fr; }
  .sites-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-compare { flex-direction: column; }
 
  /* Show sticky CTA on mobile */
  .sticky-cta-mobile { display: block; }
  /* Pad bottom so footer isn't hidden behind sticky bar */
  .footer { padding-bottom: 80px; }
}
@media (max-width: 480px) {
  .fields-grid { grid-template-columns: minmax(0, 1fr); }
  .sites-grid { grid-template-columns: minmax(0, 1fr); }
 
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 8px;
    padding: 12px 16px;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 20px;
    font-size: 0.82rem;
  }
 
  .hero { padding: 40px 16px 32px; }
  h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 0.96rem; }
 
  .hero-proof { gap: 6px; }
  .hero-proof .dot { display: none; }
 
  .form-box { padding: 20px 16px; border-radius: 16px; }
  .upload-zone { padding: 22px 14px; }
 
  .verdict-card, .result-block { padding: 20px 16px; }
  .results-section { padding: 24px 14px 40px; }
 
  .engine-id {
    border-radius: 14px;
    padding: 10px 14px;
    line-height: 1.5;
    text-align: left;
  }
 
  .nav-inner { row-gap: 12px; padding: 14px 16px 12px; }
}
 
* { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
 
/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .reveal-stagger > * { transition: none; opacity: 1; transform: none; }
  .btn-analyze { animation: none; }
  .sticky-cta-mobile { transition: none; }
  .risk-gauge-wrap svg .gauge-needle { transition: none; }
}
 
/* LEGAL PAGES */
.legal-page {
  max-width: 760px;
  text-align: left;
}
.legal-page h1 { font-size: 2rem; margin-bottom: 6px; }
.legal-updated { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 24px; }
.legal-notice {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.legal-highlight {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.legal-highlight strong { color: var(--bad); }
.legal-page h2 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal-page p, .legal-page li { color: var(--text-dim); font-size: 0.94rem; line-height: 1.7; margin: 0 0 8px; }
.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-page ul { padding-left: 20px; margin: 0 0 12px; }
.legal-back {
  display: inline-block;
  margin-top: 32px;
  color: var(--accent);
  font-size: 0.9rem;
}
.footer p a { color: var(--text-dim); text-decoration: underline; }
 
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.cookie-banner p {
  flex: 1;
  min-width: 200px;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin: 0;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}
.cookie-btn.accept { background: var(--accent); color: #1a1206; border: none; }
 
/* CONSENT CHECKBOX ABOVE SUBMIT */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.consent-row input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.consent-row a { color: var(--accent); text-decoration: underline; }
 