/* Floris Solutions — Verkaufsseite
   Design: Ink/Paper mit Signal-Akzent. Hart, klar, umsatzorientiert. */

:root {
  --ink: #0c0c0d;
  --ink-soft: #1a1a1c;
  --paper: #f2efe8;
  --paper-dim: #e6e2d8;
  --grey: #8f8d86;
  --accent: #c8f04b;
  --accent-ink: #21290a;
  --font-display: "Archivo Black", "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-num: "Space Grotesk", "Archivo", monospace;
  --font-serif: "Instrument Serif", Georgia, serif;
  --wrap: 1180px;
  --pad: 24px;
  --radius: 3px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); margin: 14px 0 22px; text-wrap: balance; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.cta h2 em { color: var(--accent-ink); }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.section-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(72px, 10vw, 130px) 0; }

.eyebrow {
  font-family: var(--font-num);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.eyebrow-dark { color: var(--accent-ink); background: var(--accent); display: inline-block; padding: 4px 10px; border-radius: 4px; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 100; background: var(--accent); color: var(--accent-ink); padding: 8px 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { box-shadow: 0 10px 30px rgba(200, 240, 75, 0.35); }
.btn-outline { border-color: rgba(242,239,232,0.35); color: var(--paper); }
.btn-outline:hover { border-color: var(--paper); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { box-shadow: 0 10px 26px rgba(12,12,13,0.35); }
.btn-big { padding: 17px 34px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,12,13,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242,239,232,0.08);
}
.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand-logo { height: 28px; width: auto; flex: 0 0 auto; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 26px; list-style: none; }
.main-nav a { text-decoration: none; font-size: 0.92rem; font-weight: 600; color: rgba(242,239,232,0.75); transition: color 0.2s; }
.main-nav a:hover { color: var(--accent); }
.header-cta { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 6px; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--paper); }
.mobile-nav { border-top: 1px solid rgba(242,239,232,0.08); }
.mobile-nav ul { list-style: none; padding: 14px var(--pad) 22px; display: flex; flex-direction: column; gap: 14px; }
.mobile-nav a { text-decoration: none; font-weight: 600; }
.mobile-cta { color: var(--accent); }

/* ---------- Hero ---------- */
.hero { padding: clamp(70px, 9vw, 120px) 0 0; overflow: hidden; }
.hero-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.hero-eyebrow {
  font-family: var(--font-num);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.03em;
  text-transform: none;
}
.hero-title .line { display: block; }
.hero-title .line-serif {
  font-size: 0.52em;
  line-height: 1.12;
  margin-top: 0.12em;
  letter-spacing: -0.015em;
}
.hero-title .line-serif:first-of-type { margin-top: 0.3em; }
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hero-lead {
  max-width: 46em;
  margin: 30px 0 36px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(242,239,232,0.78);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-riskfree { margin-top: 22px; font-size: 0.95rem; color: rgba(242,239,232,0.65); }
.hero-riskfree strong { color: var(--paper); }

.hero-ticker {
  margin-top: clamp(56px, 7vw, 90px);
  border-top: 1px solid rgba(242,239,232,0.12);
  border-bottom: 1px solid rgba(242,239,232,0.12);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--font-num);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(242,239,232,0.7);
}
.tick-dot { color: var(--accent); font-size: 0.6rem; align-self: center; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Problem ---------- */
.problem h2 { max-width: 18em; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.stat-number {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(3.6rem, 7vw, 5.6rem);
  line-height: 1;
  color: var(--accent);
}
.stat-text { margin-top: 14px; color: rgba(242,239,232,0.78); font-size: 0.98rem; }
.problem-source { margin-top: 42px; font-size: 0.8rem; color: var(--grey); max-width: 52em; }

/* ---------- Rechner ---------- */
.calculator { background: var(--paper); color: var(--ink); }
.calculator h2 { color: var(--ink); }
.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.calculator-copy p { color: #4a4842; }
.calc-controls { margin-top: 34px; display: flex; flex-direction: column; gap: 26px; }
.calc-field label { font-weight: 700; font-size: 0.95rem; display: block; margin-bottom: 10px; }
.calc-row { display: flex; align-items: center; gap: 18px; }
.calc-row output {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1.3rem;
  min-width: 3.4em;
  text-align: right;
}
input[type="range"] {
  flex: 1;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--paper-dim);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  border: 5px solid var(--accent);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
  border: 5px solid var(--accent);
  cursor: pointer;
}
.calc-result {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
  text-align: center;
  box-shadow: 0 30px 60px rgba(12,12,13,0.25);
}
.calc-result-label {
  font-family: var(--font-num);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: rgba(242,239,232,0.6);
}
.calc-result-number {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--accent);
  margin: 14px 0 18px;
  line-height: 1;
}
.calc-result-note { font-size: 0.88rem; color: rgba(242,239,232,0.65); margin-bottom: 26px; }

/* ---------- System ---------- */
.system h2 { max-width: 18em; }
.system-list {
  list-style: none;
  margin-top: 56px;
  border-top: 1px solid rgba(242,239,232,0.16);
}
.system-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 15rem;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(242,239,232,0.16);
  transition: background 0.18s ease-out;
}
.system-item:hover { background: rgba(242,239,232,0.03); }
.system-index {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  padding-top: 4px;
}
.system-body p { color: rgba(242,239,232,0.72); font-size: 0.99rem; max-width: 42em; }
.system-result {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--paper);
  padding-top: 2px;
}
.section-cta {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.section-cta-note { font-size: 0.9rem; color: rgba(242,239,232,0.6); }

/* ---------- Beweis ---------- */
.proof { background: var(--paper); color: var(--ink); }
.proof h2 { color: var(--ink); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.proof-copy p { color: #4a4842; }
.proof-list { margin: 22px 0 30px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.proof-list li { padding-left: 26px; position: relative; color: #37352f; }
.proof-list li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; color: var(--accent-ink); background: var(--accent); border-radius: 50%; width: 18px; height: 18px; font-size: 0.7rem; display: inline-flex; align-items: center; justify-content: center; top: 4px; }
.proof-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-ghost-dark { border-color: rgba(12,12,13,0.25); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--ink); }
.proof-note { margin-top: 18px; font-size: 0.92rem; font-weight: 600; }
.browser-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(12,12,13,0.3);
  background: #fff;
  transform: rotate(1.2deg);
}
.browser-bar { background: #e8e5de; padding: 10px 14px; display: flex; gap: 6px; }
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #c9c5bb; }

/* ---------- Ablauf ---------- */
.process h2 { max-width: 20em; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  list-style: none;
  counter-reset: none;
}
.process-step {
  border-top: 2px solid rgba(242,239,232,0.15);
  padding-top: 22px;
}
.process-step .process-number {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step p { color: rgba(242,239,232,0.75); font-size: 0.97rem; }

/* ---------- Preis ---------- */
.pricing { background: var(--paper); color: var(--ink); }
.pricing h2 { color: var(--ink); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.pricing-copy p { color: #4a4842; }
.pricing-anchor { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.pricing-anchor li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--paper-dim);
  padding-bottom: 12px;
  font-size: 0.95rem;
}
.pricing-anchor s { color: #a09d94; font-family: var(--font-num); white-space: nowrap; }
.pricing-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: 0 30px 60px rgba(12,12,13,0.25);
}
.pricing-card-label {
  font-family: var(--font-num);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 22px;
}
.pricing-note { margin-top: 20px; font-size: 0.95rem; color: #4a4842; }
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(242,239,232,0.16);
}
.pricing-includes li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  color: rgba(242,239,232,0.9);
}
.pricing-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  background: var(--accent);
}
.pricing-trust li strong { color: var(--accent); }
.pricing-lines { display: flex; flex-direction: column; gap: 22px; }
.pricing-amount {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1;
}
.pricing-amount span { font-size: 1.1rem; color: rgba(242,239,232,0.6); }
.pricing-desc { color: rgba(242,239,232,0.7); font-size: 0.92rem; margin-top: 6px; }
.pricing-trust { list-style: none; margin: 26px 0; display: flex; flex-direction: column; gap: 9px; }
.pricing-trust li { padding-left: 24px; position: relative; font-size: 0.93rem; color: rgba(242,239,232,0.85); }
.pricing-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq h2 { max-width: 18em; }
.faq-list { margin-top: 40px; max-width: 820px; }
.faq-list details { border-bottom: 1px solid rgba(242,239,232,0.12); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.02rem;
  padding: 20px 40px 20px 0;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-num);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 0 22px; color: rgba(242,239,232,0.75); max-width: 46em; }

/* ---------- CTA ---------- */
.cta { background: var(--accent); color: var(--accent-ink); }
.cta h2 { color: var(--accent-ink); font-size: clamp(2rem, 5vw, 3.4rem); }
.cta h2 em { font-style: italic; }
.cta .eyebrow { color: var(--accent-ink); opacity: 0.7; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.cta-copy p { color: rgba(33,41,10,0.8); max-width: 34em; }
.cta-book { margin-top: 26px; }
.cta-alt { margin-top: 18px; font-weight: 600; }
.cta-alt a { color: var(--accent-ink); }
.cta-form {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(26px, 3.6vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(12,12,13,0.3);
}
.form-field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.form-field input,
.form-field select {
  width: 100%;
  background: var(--ink-soft);
  border: 1px solid rgba(242,239,232,0.18);
  border-radius: 8px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
}
.form-field input:focus,
.form-field select:focus { outline: 2px solid var(--accent); border-color: transparent; }
.field-error { border-color: #ff6b57 !important; }
.form-placeholder {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed rgba(242,239,232,0.25);
  border-radius: 8px;
  color: rgba(242,239,232,0.6);
  font-size: 0.95rem;
}
.form-privacy { font-size: 0.8rem; color: rgba(242,239,232,0.55); }
.form-success { background: rgba(200,240,75,0.12); border: 1px solid var(--accent); border-radius: 8px; padding: 14px 16px; font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid rgba(242,239,232,0.1); padding: 48px 0 40px; }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); display: flex; flex-direction: column; gap: 12px; }
.footer-logo { height: 24px; width: auto; align-self: flex-start; flex: 0 0 auto; }
.footer-tag { color: rgba(242,239,232,0.6); font-size: 0.9rem; }
.footer-contact { font-size: 0.9rem; }
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-legal { list-style: none; display: flex; gap: 18px; font-size: 0.82rem; color: var(--grey); }
.footer-legal a { color: inherit; }

/* ---------- Reveal Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

.hero-inner > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.85s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.14s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.44s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.56s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-inner > * { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .problem-grid, .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .calculator-grid, .proof-grid, .pricing-grid, .cta-grid { grid-template-columns: 1fr; }
  .system-list { margin-top: 40px; }
  .browser-frame { transform: none; }
}
@media (min-width: 961px) {
  .mobile-nav { display: none; }
}

/* ---------- Grain-Textur ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-header { z-index: 50; }

/* ---------- Micro-Interactions vereinheitlicht (180ms ease-out) ---------- */
.btn,
.main-nav a,
.faq-list summary,
.system-item { transition-duration: 0.18s; transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1); }
.btn:hover { transform: translateY(-2px); }
.faq-list summary:hover { color: var(--accent); }

@media (max-width: 860px) {
  .system-item { grid-template-columns: 3rem 1fr; }
  .system-result { grid-column: 2; padding-top: 10px; }
}

/* Terminbuchung nach dem Absenden (warmer Moment) */
.form-success-book {
  margin-top: 10px;
  font-size: 0.92rem;
  color: rgba(242,239,232,0.8);
}
.form-success-book a { color: var(--accent); font-weight: 700; }

/* GHL-Formular eingebettet: Container an unser Design angleichen */
.cta-form iframe { display: block; }

/* ---------- Rechtstexte (Impressum, Datenschutz) ---------- */
.legal { padding: clamp(110px, 14vw, 170px) 0 clamp(72px, 10vw, 120px); }
.legal-inner { max-width: 780px; margin: 0 auto; padding: 0 var(--pad); }
.legal h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  margin: 12px 0 10px;
}
.legal .legal-meta { color: var(--grey); font-size: 0.88rem; font-family: var(--font-num); }
.legal h2 {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  margin: 52px 0 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(242,239,232,0.12);
}
.legal h3 { font-size: 1rem; margin: 26px 0 8px; color: var(--accent); font-family: var(--font-body); font-weight: 700; }
.legal p, .legal li { color: rgba(242,239,232,0.82); font-size: 0.97rem; }
.legal p + p { margin-top: 14px; }
.legal ul, .legal ol { margin: 12px 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal .lead { font-size: 1.05rem; color: rgba(242,239,232,0.9); margin-top: 18px; }

.legal-address { margin-top: 18px; line-height: 1.9; }
.legal-address strong { color: var(--paper); }

.legal-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.9rem; }
.legal-table th, .legal-table td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid rgba(242,239,232,0.1); vertical-align: top; }
.legal-table th { color: var(--paper); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-num); }
.legal-table td { color: rgba(242,239,232,0.78); }
.legal-scroll { overflow-x: auto; }

.tbd {
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 0.85em;
  padding: 1px 7px;
  border-radius: 3px;
  white-space: nowrap;
}

.legal-back { display: inline-block; margin-top: 56px; font-size: 0.9rem; }
