:root {
  --bg: #f5ecdf;
  --paper: #fffaf1;
  --paper-strong: #fffdf8;
  --ink: #2b1810;
  --muted: #735f51;
  --soft: #8d7a68;
  --line: rgba(92, 62, 35, 0.14);
  --line-strong: rgba(92, 62, 35, 0.22);
  --gold: #c88622;
  --gold-2: #e2a938;
  --olive: #66723f;
  --olive-2: #eef4df;
  --warn: #99651d;
  --risk: #9a3d2f;
  --good: #54723a;
  --shadow: 0 24px 70px rgba(74, 48, 25, 0.13);
  --shadow-soft: 0 16px 44px rgba(74, 48, 25, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 3%, rgba(226, 169, 56, 0.26), transparent 25rem),
    radial-gradient(circle at 88% 2%, rgba(102, 114, 63, 0.14), transparent 25rem),
    linear-gradient(180deg, #fff9ef 0%, #f4eadb 46%, #efe2d1 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(90, 58, 33, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 58, 33, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

.site-shell {
  position: relative;
  width: min(1180px, calc(100% - 38px));
  margin: 0 auto;
  padding: 24px 0 70px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 18px;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 21px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  color: #fffaf1;
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: 0 18px 30px rgba(198, 137, 34, .28);
}

.brand-stack { display: grid; line-height: 1.03; }
.brand-name {
  font-weight: 950;
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  letter-spacing: -.075em;
}
.brand-stack small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}
.topnav a {
  padding: 12px 14px;
  border-radius: 999px;
}
.topnav a:hover { background: rgba(255,255,255,.58); }
.top-action {
  color: #fffaf1 !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 32px rgba(198, 137, 34, .24);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .76fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
}

.hero-copy,
.hero-panel,
.problem-section,
.flow-section,
.pricing-strip,
.mode-section,
.check-section,
.loading-card,
.report-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 253, 247, .91), rgba(255, 247, 234, .74));
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5.6vw, 64px);
  border-radius: var(--radius-xl);
}
.hero-copy::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,169,56,.18), transparent 66%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--olive);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.small { font-size: .75rem; letter-spacing: .16em; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .95;
}
h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.8vw, 5.9rem);
}
h2 {
  font-size: clamp(2.1rem, 4.3vw, 4.15rem);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -.035em;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.62;
  font-weight: 650;
}

.hero-actions,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -.02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fffaf1;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 20px 40px rgba(198, 137, 34, .24);
}
.btn-secondary {
  color: #4b3528;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(74, 48, 25, .08);
}
.btn-full { width: 100%; margin-top: 4px; font-size: 1.08rem; }
.btn:disabled { opacity: .56; cursor: not-allowed; transform: none; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5d5035;
  background: rgba(255,255,255,.58);
  font-weight: 850;
  font-size: .92rem;
}

.hero-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 20px;
  display: grid;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(226,169,56,.22), transparent 18rem),
    linear-gradient(145deg, rgba(255,252,244,.94), rgba(244,235,219,.82));
}
.phone-card {
  align-self: center;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: rgba(255, 253, 247, .92);
  box-shadow: var(--shadow);
  padding: 18px;
}
.phone-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 14px;
}
.phone-topline b {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--olive-2);
  color: var(--olive);
}
.status-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #3b261a, #24130c);
  color: #fff8ec;
  margin-bottom: 14px;
}
.status-card small,
.price-card small,
.unlock-paybox small {
  display: block;
  color: rgba(255,248,236,.68);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .13em;
  font-weight: 950;
  margin-bottom: 8px;
}
.status-card strong {
  display: block;
  font-size: 2.2rem;
  letter-spacing: -.06em;
  margin-bottom: 7px;
}
.status-card p { color: rgba(255,248,236,.78); margin: 0; line-height: 1.45; }
.mini-checks { display: grid; gap: 10px; }
.mini-checks div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(245, 236, 223, .78);
  color: #4c3b2f;
  font-weight: 850;
}
.mini-checks i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--olive-2);
  color: var(--olive);
  font-style: normal;
}
.locked-preview {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  border: 1px dashed rgba(198,137,34,.48);
  background: rgba(226,169,56,.10);
}
.locked-preview b { display: block; }
.locked-preview small { color: var(--muted); font-weight: 750; }

.problem-section,
.flow-section,
.mode-section,
.check-section,
.loading-card,
.report-card {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius-xl);
}
.problem-section { display: grid; grid-template-columns: .95fr 1.2fr; gap: 24px; }
.section-head { text-align: center; max-width: 840px; margin: 0 auto 26px; }
.section-head.left { text-align: left; margin: 0; }
.section-head.compact { margin-bottom: 20px; }
.section-head p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.04rem;
  font-weight: 650;
}

.problem-grid, .flow-grid, .mode-grid, .field-grid, .toggle-grid, .health-toggle-grid {
  display: grid;
  gap: 14px;
}
.problem-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.problem-grid article,
.flow-grid div,
.mode-card,
.planner-card,
.note,
.ai-box,
.unlock-card,
.metrics > div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 26px rgba(74, 48, 25, .06);
}
.problem-grid article {
  border-radius: 24px;
  padding: 20px;
}
.problem-grid span { font-size: 1.55rem; }
.problem-grid p, .flow-grid p, .mode-card p { color: var(--muted); line-height: 1.45; margin-bottom: 0; font-weight: 650; }

.flow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.flow-grid div {
  border-radius: 24px;
  padding: 22px;
}
.flow-grid b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(226,169,56,.2);
  color: var(--gold);
  font-size: 1.1rem;
}

.pricing-strip {
  margin-top: 28px;
  border-radius: var(--radius-xl);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}
.pricing-strip h2 { font-size: clamp(1.9rem, 3.5vw, 3.4rem); max-width: 850px; }
.pricing-strip p { color: var(--muted); font-weight: 650; line-height: 1.5; margin-bottom: 0; }
.price-card {
  min-width: 230px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, #3b261a, #24130c);
  color: #fff8ec;
  box-shadow: var(--shadow);
}
.price-card strong {
  display: block;
  font-size: 3rem;
  letter-spacing: -.08em;
  line-height: .95;
}
.price-card span { color: rgba(255,248,236,.7); font-weight: 850; }

.mode-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mode-card {
  position: relative;
  text-align: left;
  border-radius: 26px;
  padding: 22px;
  cursor: pointer;
  color: var(--ink);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.mode-card:hover { transform: translateY(-2px); }
.mode-card.active {
  border-color: rgba(198,137,34,.55);
  box-shadow: 0 22px 46px rgba(198,137,34,.16);
  background: linear-gradient(145deg, rgba(255, 253, 247, .95), rgba(255, 244, 222, .78));
}
.mode-card.recommended::after {
  content: "beliebt";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--olive-2);
  color: var(--olive);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.mode-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--olive);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mode-card strong { display: block; font-size: 1.38rem; letter-spacing: -.03em; margin-bottom: 7px; }
.mode-card small { display: block; color: var(--soft); font-weight: 850; margin-top: 16px; }

.planner-card {
  border-radius: var(--radius-xl);
  padding: clamp(18px, 3.8vw, 34px);
}
.form-helper-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(102,114,63,.08);
  color: var(--muted);
  font-weight: 850;
}
.form-helper-strip b {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--olive);
}
.form-group {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.form-group:first-of-type { border-top: 0; padding-top: 0; }
.form-group h3 { font-size: 1.5rem; margin-bottom: 16px; }
.field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: grid; gap: 8px; }
label span { font-weight: 950; color: #3e291d; }
label small, .form-note, .trust-mini { color: var(--muted); line-height: 1.42; font-weight: 650; }
input, select {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 0 15px;
  outline: none;
  background: rgba(255, 253, 247, .95);
  color: var(--ink);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
input:focus, select:focus {
  border-color: rgba(198,137,34,.65);
  box-shadow: 0 0 0 4px rgba(198,137,34,.13);
}
input::placeholder { color: rgba(115,95,81,.55); }
.toggle-grid, .health-toggle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  font-weight: 850;
  cursor: pointer;
}
.toggle input { width: 18px; height: 18px; min-height: 0; accent-color: var(--gold); }
.form-note { margin: -6px 0 18px; }
.trust-mini {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(102,114,63,.08);
}
.hidden { display: none !important; }

.loading-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.loader-orbit {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(226,169,56,.16);
  border: 1px solid rgba(198,137,34,.2);
  animation: softPulse 1.4s ease-in-out infinite;
}
.loader-orbit span { font-size: 1.8rem; }
@keyframes softPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.loading-steps { display: grid; gap: 9px; margin-top: 18px; }
.loading-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 850;
}
.loading-step i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  font-style: normal;
  color: var(--soft);
}
.loading-step.done i { background: var(--olive-2); color: var(--olive); }

.report-card { overflow: hidden; }
.report-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.report-top p {
  margin: 0;
  color: var(--olive);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 950;
}
#statusBadge {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(84,114,58,.12);
  color: var(--good);
  font-weight: 950;
}
#statusBadge.yellow { background: rgba(198,137,34,.15); color: var(--warn); }
#statusBadge.red { background: rgba(154,61,47,.12); color: var(--risk); }
.ai-praise {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 700;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.metrics > div {
  border-radius: 22px;
  padding: 17px;
}
.metrics small {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .7rem;
}
.metrics strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -.04em;
}

.unlock-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 18px;
  border-radius: 28px;
  padding: 22px;
  margin: 18px 0;
  background:
    radial-gradient(circle at top right, rgba(226,169,56,.2), transparent 18rem),
    linear-gradient(145deg, rgba(255,252,244,.96), rgba(255,243,220,.82));
  border-color: rgba(198,137,34,.26);
}
.unlock-copy h3 { font-family: "Fraunces", Georgia, serif; font-size: clamp(1.85rem, 3.2vw, 3rem); line-height: .98; letter-spacing: -.05em; }
.unlock-copy p { color: var(--muted); line-height: 1.55; font-weight: 700; }
.unlock-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}
.unlock-includes span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--olive);
  font-weight: 900;
  border: 1px solid var(--line);
}
.unlock-paybox {
  padding: 20px;
  border-radius: 24px;
  background: #2d1b12;
  color: #fff8ec;
}
.unlock-paybox small { color: rgba(255,248,236,.66); }
.unlock-paybox strong {
  display: block;
  font-size: 3.4rem;
  line-height: .92;
  letter-spacing: -.08em;
  margin-bottom: 10px;
}
.unlock-paybox p { color: rgba(255,248,236,.75); line-height: 1.42; font-weight: 750; }
.unlock-email { margin: 14px 0; }
.unlock-email span { color: rgba(255,248,236,.88); }
.unlock-email input {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff8ec;
}
.unlock-email input::placeholder { color: rgba(255,248,236,.45); }
.paypal-button-container { min-height: 44px; margin-top: 10px; }
.payment-message { min-height: 20px; margin: 10px 0 0; font-size: .92rem; }
.payment-message.error { color: #ffd2cc; }
.payment-message.success { color: #dff3bf; }

.premium-content {
  position: relative;
  display: grid;
  gap: 14px;
  transition: filter .2s ease, opacity .2s ease;
}
.report-card.is-locked .premium-content {
  max-height: 440px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 100%);
  opacity: .54;
  pointer-events: none;
  user-select: none;
}
.report-card.is-locked .premium-content::after {
  content: "Vollständiger Plan nach Freischaltung sichtbar";
  position: absolute;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  z-index: 1;
  width: min(92%, 520px);
  padding: 16px 18px;
  border-radius: 999px;
  text-align: center;
  background: rgba(43,24,16,.92);
  color: #fff8ec;
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}
.note, .ai-box {
  border-radius: 24px;
  padding: 20px;
}
.note h4, .ai-box h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
ul { margin: 0; padding-left: 1.2rem; }
li { margin: 8px 0; color: var(--muted); line-height: 1.45; font-weight: 700; }
.note-good { border-color: rgba(84,114,58,.18); background: rgba(238,244,223,.72); }
.note-warn { border-color: rgba(198,137,34,.2); background: rgba(255,244,222,.72); }
.note-risk { border-color: rgba(154,61,47,.18); background: rgba(255,239,235,.72); }
.note-health { background: rgba(255,255,255,.58); }
.ai-box { background: #2d1b12; color: #fff8ec; }
.ai-box p, .ai-box li { color: rgba(255,248,236,.78); }
.disclaimer {
  color: var(--muted);
  line-height: 1.5;
  font-size: .94rem;
  font-weight: 650;
  margin: 4px 0 0;
}
.report-actions { margin-top: 8px; }

@media (max-width: 980px) {
  .hero, .problem-section, .pricing-strip, .unlock-card { grid-template-columns: 1fr; }
  .problem-grid, .flow-grid, .mode-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .site-shell { width: min(100% - 28px, 1180px); padding-top: 14px; }
  .topbar { position: relative; align-items: flex-start; padding: 12px 0 14px; }
  .topnav a:not(.top-action) { display: none; }
  .top-action { padding: 10px 12px; font-size: .9rem; }
  .brand-mark { width: 50px; height: 50px; flex-basis: 50px; border-radius: 18px; }
  .brand-name { font-size: 2.15rem; }
  .brand-stack small { font-size: .62rem; }
  .hero { gap: 18px; margin-top: 6px; }
  .hero-copy, .hero-panel, .problem-section, .flow-section, .pricing-strip, .mode-section, .check-section, .loading-card, .report-card { border-radius: 26px; }
  .hero-copy { padding: 28px 22px; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.45rem); line-height: .94; }
  h2 { font-size: clamp(2rem, 10vw, 2.85rem); }
  .hero-text { font-size: 1.05rem; line-height: 1.52; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { font-size: .86rem; }
  .hero-panel { padding: 12px; }
  .status-card strong { font-size: 2rem; }
  .problem-section, .flow-section, .mode-section, .check-section, .loading-card, .report-card { padding: 22px 16px; }
  .section-head { text-align: left; }
  .field-grid, .toggle-grid, .health-toggle-grid { grid-template-columns: 1fr; }
  .form-helper-strip { align-items: flex-start; }
  .metrics { grid-template-columns: 1fr; }
  .unlock-card { padding: 16px; }
  .unlock-copy h3 { font-size: 2.05rem; }
  .unlock-paybox strong { font-size: 3rem; }
  .loading-card { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Patch: mobile header + loading progress */
.loading-progress {
  margin: 20px 0 16px;
}
.loading-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 900;
}
.loading-progress-top b {
  color: var(--brown);
  font-variant-numeric: tabular-nums;
}
.loading-progress-track {
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(198,137,34,.22);
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 2px rgba(43,24,16,.06);
}
.loading-progress-track i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width .22s ease;
}
.loading-progress small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .topbar {
    align-items: center;
    gap: 10px;
    padding: 10px 0 12px;
  }
  .brand {
    flex: 1 1 auto;
    gap: 9px;
    min-width: 0;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 16px;
    font-size: .94rem;
  }
  .brand-stack {
    min-width: 0;
    overflow: hidden;
  }
  .brand-name {
    font-size: clamp(1.58rem, 7vw, 1.9rem);
    line-height: .95;
    white-space: nowrap;
  }
  .brand-stack small {
    display: block;
    max-width: 132px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: .55rem;
  }
  .topnav {
    flex: 0 0 auto;
    min-width: 0;
  }
  .top-action {
    padding: 10px 13px;
    max-width: 138px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.05;
    font-size: .9rem;
  }
}

@media (max-width: 370px) {
  .site-shell { width: min(100% - 22px, 1180px); }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-name { font-size: 1.45rem; }
  .brand-stack small { display: none; }
  .top-action { max-width: 118px; padding-inline: 10px; font-size: .84rem; }
}

/* HeuHeldin launch patch: research-backed one-path funnel */
.faq-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 253, 247, .91), rgba(255, 247, 234, .74));
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.faq-grid article {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}
.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}
.loading-progress-wrap {
  margin: 18px 0 16px;
  padding: 16px;
  border: 1px solid rgba(198,137,34,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.52);
}
.loading-progress-wrap .loading-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 950;
}
.loading-progress-wrap .loading-progress-top b {
  min-width: 52px;
  text-align: right;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.loading-progress-wrap .loading-progress-track {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(198,137,34,.22);
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 2px rgba(43,24,16,.06);
}
.loading-progress-wrap .loading-progress-track i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width .22s ease;
}
.loading-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
  font-weight: 750;
}
.unlock-email small {
  display: block;
  margin-top: 7px;
  color: rgba(255,248,236,.62);
  font-size: .82rem;
  line-height: 1.35;
  font-weight: 700;
}
@media (max-width: 980px) {
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .topbar {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
  }
  .topnav { justify-content: flex-end; }
  .top-action {
    max-width: 124px;
    min-height: 42px;
    padding: 8px 10px;
    font-size: .82rem;
    line-height: 1.05;
  }
  .brand { gap: 8px; overflow: hidden; }
  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 14px;
    font-size: .86rem;
  }
  .brand-name {
    font-size: clamp(1.38rem, 6.1vw, 1.72rem);
    letter-spacing: -.06em;
  }
  .brand-stack small {
    max-width: 116px;
    font-size: .5rem;
  }
  .faq-section { padding: 22px 16px; border-radius: 26px; }
}
@media (max-width: 370px) {
  .top-action { max-width: 104px; font-size: .76rem; }
  .brand-name { font-size: 1.28rem; }
}

/* Launch hardening after Deep Research: comparison, legal footer, clearer trust copy */
.hero-disclaimer {
  display: inline-flex;
  align-items: center;
  margin: -10px 0 24px;
  padding: 10px 14px;
  border: 1px solid rgba(102,114,63,.18);
  border-radius: 999px;
  background: rgba(238,244,223,.72);
  color: var(--olive);
  font-weight: 900;
  line-height: 1.25;
}
.comparison-section,
.site-footer {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 253, 247, .91), rgba(255, 247, 234, .74));
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.comparison-grid article {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}
.comparison-grid .comparison-premium {
  background: linear-gradient(145deg, rgba(45,27,18,.96), rgba(74,48,25,.92));
  color: #fff8ec;
}
.comparison-grid .comparison-premium li,
.comparison-grid .comparison-premium h3 {
  color: #fff8ec;
}
.comparison-grid .comparison-premium .comparison-badge {
  background: rgba(226,169,56,.18);
  color: #ffe4a9;
  border-color: rgba(226,169,56,.35);
}
.comparison-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(238,244,223,.78);
  color: var(--olive);
  font-weight: 950;
  font-size: .82rem;
}
.comparison-grid ul { padding-left: 1.15rem; }
.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.site-footer p {
  max-width: 640px;
  margin: 0;
  line-height: 1.45;
  font-weight: 700;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.site-footer a {
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  font-weight: 900;
}
.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 80px;
}
.legal-page h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
}
.legal-page p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 700;
}
.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.64);
  font-weight: 950;
}
@media (max-width: 760px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .site-footer nav { justify-content: flex-start; }
  .hero-disclaimer { border-radius: 20px; }
}

/* HeuHeldin logo + typography fix 2026-05-07
   Purpose: make the new logo reliable on Vercel and make the page feel easier to read on first glance. */
:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body,
.site-shell,
button,
input,
select,
textarea {
  font-family: var(--font-body) !important;
}

body {
  font-weight: 500 !important;
  letter-spacing: -0.005em;
}

.topbar {
  align-items: center !important;
  gap: clamp(10px, 3vw, 26px) !important;
}

.brand.brand-with-logo {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  flex: 0 1 auto !important;
  text-decoration: none !important;
  overflow: visible !important;
}

.brand-logo-img {
  display: block !important;
  width: clamp(162px, 31vw, 276px) !important;
  height: auto !important;
  max-height: 76px !important;
  object-fit: contain !important;
}

.brand-logo-fallback {
  display: block !important;
  width: clamp(158px, 31vw, 270px) !important;
  height: auto !important;
}

.brand-logo-fallback svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.topnav {
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

.topnav > a:not(.top-action) {
  font-family: var(--font-body) !important;
  font-weight: 650 !important;
}

.top-action,
.btn,
button {
  font-family: var(--font-body) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

h1,
h2,
.hero h1,
.section-head h2,
.pricing-strip h2,
.unlock-copy h3 {
  font-family: var(--font-display) !important;
  font-weight: 660 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.052em !important;
}

.hero h1,
h1 {
  font-size: clamp(2.72rem, 9.6vw, 5.55rem) !important;
  max-width: 920px !important;
}

h2,
.section-head h2,
.pricing-strip h2 {
  font-size: clamp(2rem, 6.8vw, 3.85rem) !important;
}

p,
li,
.hero-text,
.problem-grid p,
.flow-grid p,
.mode-card p,
.pricing-strip p,
.unlock-copy p,
label small,
.form-note,
.trust-mini,
.result-lead,
.result-card p,
.payment-message {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  line-height: 1.58 !important;
}

.hero-text {
  font-size: clamp(1.12rem, 2.2vw, 1.42rem) !important;
  letter-spacing: -0.018em !important;
}

.hero-disclaimer,
.eyebrow,
.trust-row span,
.comparison-card small,
.price-card span,
.status-badge {
  font-family: var(--font-body) !important;
  font-weight: 750 !important;
}

.form-group h3,
.problem-grid h3,
.flow-grid h3,
.result-card h3,
.unlock-paybox h3,
label span {
  font-family: var(--font-body) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

@media (max-width: 760px) {
  .topbar {
    padding-inline: 18px !important;
    gap: 10px !important;
  }
  .brand-logo-img {
    width: clamp(142px, 43vw, 188px) !important;
    max-height: 54px !important;
  }
  .brand-logo-fallback {
    width: clamp(140px, 43vw, 184px) !important;
  }
  .top-action {
    max-width: 132px !important;
    min-width: 116px !important;
    padding: 12px 14px !important;
    font-size: .93rem !important;
    line-height: 1.05 !important;
    text-align: center !important;
  }
  .hero h1,
  h1 {
    font-size: clamp(2.55rem, 11.1vw, 3.92rem) !important;
    line-height: 1.01 !important;
    letter-spacing: -0.058em !important;
  }
  .hero-text {
    font-size: 1.12rem !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 420px) {
  .topbar {
    padding-inline: 14px !important;
  }
  .brand-logo-img {
    width: clamp(126px, 39vw, 152px) !important;
    max-height: 48px !important;
  }
  .brand-logo-fallback {
    width: clamp(126px, 39vw, 152px) !important;
  }
  .top-action {
    max-width: 118px !important;
    min-width: 108px !important;
    padding: 11px 12px !important;
    font-size: .86rem !important;
  }
  .hero h1,
  h1 {
    font-size: clamp(2.38rem, 10.6vw, 3.32rem) !important;
  }
}
.brand-logo-fallback[hidden] { display: none !important; }


/* HeuHeldin inline logo patch 2026-05-07
   Keine externe Logo-Datei mehr nötig: verhindert kaputtes Bildsymbol auf GitHub/Vercel. */
:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
select,
textarea,
.site-shell {
  font-family: var(--font-body) !important;
}

.brand-inline {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  flex: 0 1 auto !important;
  overflow: visible !important;
  line-height: 0 !important;
}

.brand-inline-logo {
  display: block !important;
  width: clamp(178px, 31vw, 292px) !important;
  max-width: 100% !important;
  line-height: 0 !important;
}

.brand-inline-logo svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}

.brand-mark,
.brand-stack,
.brand-logo-img,
.brand-logo-fallback {
  display: none !important;
}

h1,
h2,
.hero h1,
.section-head h2,
.pricing-strip h2,
.unlock-copy h3 {
  font-family: var(--font-display) !important;
  font-weight: 650 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.054em !important;
}

.hero h1,
h1 {
  font-size: clamp(2.65rem, 9.1vw, 5.35rem) !important;
}

p,
li,
.hero-text,
.problem-grid p,
.flow-grid p,
.pricing-strip p,
.result-card p,
.payment-message {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.top-action,
.btn,
button {
  font-family: var(--font-body) !important;
  font-weight: 800 !important;
}

@media (max-width: 760px) {
  .topbar {
    align-items: center !important;
    gap: 10px !important;
    padding-inline: 0 !important;
  }
  .brand-inline-logo {
    width: clamp(138px, 44vw, 188px) !important;
  }
  .top-action {
    max-width: 132px !important;
    min-width: 112px !important;
    padding: 11px 13px !important;
    font-size: .9rem !important;
    line-height: 1.05 !important;
    text-align: center !important;
  }
  .hero h1,
  h1 {
    font-size: clamp(2.42rem, 10.2vw, 3.55rem) !important;
    line-height: 1.02 !important;
  }
}

@media (max-width: 420px) {
  .brand-inline-logo {
    width: clamp(128px, 39vw, 154px) !important;
  }
  .top-action {
    max-width: 118px !important;
    min-width: 104px !important;
    padding: 10px 11px !important;
    font-size: .84rem !important;
  }
  .hero h1,
  h1 {
    font-size: clamp(2.28rem, 9.85vw, 3.12rem) !important;
  }
}

@media (max-width: 360px) {
  .brand-inline-logo { width: 118px !important; }
  .top-action { min-width: 96px !important; font-size: .78rem !important; }
}


/* HeuHeldin typography reset 2026-05-07
   Ziel: weniger schwer/altmodisch, moderner Premium-App-Look, bessere mobile Lesbarkeit. */
:root {
  --font-display: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

html,
body,
button,
input,
select,
textarea,
.site-shell {
  font-family: var(--font-body) !important;
  font-feature-settings: "kern" 1, "liga" 1;
}

body {
  font-weight: 500 !important;
  letter-spacing: -0.012em !important;
}

/* Alte schwere Serif-Headline komplett ersetzen */
h1,
h2,
h3,
h4,
.hero h1,
.section-head h2,
.pricing-strip h2,
.unlock-copy h3,
.result-title,
.report-card h2,
.report-card h3,
.price-card strong {
  font-family: var(--font-display) !important;
  color: var(--ink);
  text-wrap: balance;
}

h1,
.hero h1 {
  font-weight: 800 !important;
  font-size: clamp(2.45rem, 7.25vw, 4.92rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.072em !important;
  max-width: 790px !important;
  margin-bottom: 24px !important;
}

h2,
.section-head h2,
.pricing-strip h2 {
  font-weight: 780 !important;
  font-size: clamp(1.85rem, 3.6vw, 3.38rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.06em !important;
}

h3,
.report-card h3,
.problem-grid h3,
.flow-grid h3 {
  font-weight: 760 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.16 !important;
}

p,
li,
label,
.hero-text,
.problem-grid p,
.flow-grid p,
.pricing-strip p,
.result-card p,
.payment-message,
.field-hint,
.fineprint {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.64 !important;
}

.hero-text {
  font-size: clamp(1.05rem, 1.55vw, 1.24rem) !important;
  font-weight: 530 !important;
  line-height: 1.66 !important;
  color: #6f5d51 !important;
  max-width: 690px !important;
}

.eyebrow,
.trust-row span,
.comparison-badge,
.badge,
.topnav a,
.btn,
button,
.price-card small,
.price-card span,
label {
  font-family: var(--font-body) !important;
}

.eyebrow {
  font-size: .78rem !important;
  font-weight: 800 !important;
  letter-spacing: .18em !important;
}

.btn,
.top-action,
button {
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

.hero-disclaimer {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.38 !important;
}

input,
select,
textarea {
  font-weight: 560 !important;
  letter-spacing: -0.012em !important;
}

.brand-inline-logo text {
  font-family: "Source Sans 3", "Manrope", Arial, sans-serif !important;
}

@media (max-width: 760px) {
  h1,
  .hero h1 {
    font-size: clamp(2.26rem, 9.35vw, 3.38rem) !important;
    line-height: 1.055 !important;
    letter-spacing: -0.068em !important;
  }

  .hero-text {
    font-size: 1.055rem !important;
    line-height: 1.62 !important;
  }

  .hero-copy {
    padding: clamp(28px, 8vw, 42px) !important;
  }
}

@media (max-width: 420px) {
  h1,
  .hero h1 {
    font-size: clamp(2.12rem, 9.05vw, 3rem) !important;
    line-height: 1.065 !important;
    letter-spacing: -0.064em !important;
  }

  h2,
  .section-head h2,
  .pricing-strip h2 {
    font-size: clamp(1.72rem, 7vw, 2.35rem) !important;
  }

  .hero-text {
    font-size: 1.02rem !important;
  }
}

/* HeuHeldin final typography 2026-05-07
   Research decision: Atkinson Hyperlegible Next for the complete website.
   Goal: calm, trustworthy, accessible, less tech-dashboard and less heavy-retro. */
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/atkinson-hyperlegible-next:vf@latest/latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --font-display: "Atkinson Hyperlegible Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  --font-body: "Atkinson Hyperlegible Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

html,
body,
button,
input,
select,
textarea,
.site-shell,
.topbar,
.hero,
section,
article,
.result-section,
.payment-card {
  font-family: var(--font-body) !important;
  font-feature-settings: "kern" 1, "liga" 1, "tnum" 0 !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-weight: 400 !important;
  letter-spacing: -0.006em !important;
}

h1,
h2,
h3,
h4,
.hero h1,
.section-head h2,
.pricing-strip h2,
.unlock-copy h3,
.result-title,
.report-card h2,
.report-card h3,
.price-card strong {
  font-family: var(--font-display) !important;
  color: var(--ink) !important;
  text-wrap: balance;
}

h1,
.hero h1 {
  font-weight: 700 !important;
  font-size: clamp(2.18rem, 7.35vw, 4.35rem) !important;
  line-height: 1.075 !important;
  letter-spacing: -0.048em !important;
  max-width: 780px !important;
  margin-bottom: 24px !important;
}

h2,
.section-head h2,
.pricing-strip h2 {
  font-weight: 700 !important;
  font-size: clamp(1.75rem, 3.35vw, 3.05rem) !important;
  line-height: 1.13 !important;
  letter-spacing: -0.038em !important;
}

h3,
.report-card h3,
.problem-grid h3,
.flow-grid h3 {
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.22 !important;
}

p,
li,
label,
.hero-text,
.problem-grid p,
.flow-grid p,
.pricing-strip p,
.result-card p,
.payment-message,
.field-hint,
.fineprint {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  letter-spacing: -0.006em !important;
  line-height: 1.66 !important;
}

.hero-text {
  font-size: clamp(1.04rem, 1.5vw, 1.22rem) !important;
  font-weight: 400 !important;
  line-height: 1.68 !important;
  color: #6d5c50 !important;
  max-width: 690px !important;
}

.hero-disclaimer {
  font-family: var(--font-body) !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.45 !important;
}

.eyebrow,
.trust-row span,
.comparison-badge,
.badge,
.topnav a,
.btn,
button,
.price-card small,
.price-card span,
label {
  font-family: var(--font-body) !important;
}

.eyebrow {
  font-size: .76rem !important;
  font-weight: 720 !important;
  letter-spacing: .17em !important;
}

.btn,
.top-action,
button {
  font-weight: 720 !important;
  letter-spacing: -0.01em !important;
}

input,
select,
textarea {
  font-family: var(--font-body) !important;
  font-weight: 450 !important;
  letter-spacing: -0.005em !important;
}

.brand-inline-logo text {
  font-family: "Atkinson Hyperlegible Next", Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -3px !important;
}

@media (max-width: 760px) {
  h1,
  .hero h1 {
    font-size: clamp(2.08rem, 8.65vw, 3.08rem) !important;
    line-height: 1.095 !important;
    letter-spacing: -0.044em !important;
  }

  .hero-text {
    font-size: 1.045rem !important;
    line-height: 1.65 !important;
  }

  .hero-copy {
    padding: clamp(28px, 8vw, 42px) !important;
  }
}

@media (max-width: 420px) {
  h1,
  .hero h1 {
    font-size: clamp(2rem, 8.45vw, 2.72rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.04em !important;
  }

  h2,
  .section-head h2,
  .pricing-strip h2 {
    font-size: clamp(1.62rem, 6.65vw, 2.22rem) !important;
  }

  .hero-text {
    font-size: 1.01rem !important;
  }
}

/* HeuHeldin logo presence patch 2026-05-07
   Ziel: Das neue Logo soll im Header sichtbar und selbstbewusst wirken, ohne den CTA zu verdrängen. */
.topbar {
  min-height: 88px !important;
}

.brand-inline {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.brand-inline-logo {
  width: clamp(238px, 30vw, 340px) !important;
  transform-origin: left center !important;
}

@media (max-width: 760px) {
  .topbar {
    min-height: 94px !important;
    align-items: center !important;
    gap: 10px !important;
    padding-top: 14px !important;
    padding-bottom: 16px !important;
  }

  .brand-inline-logo {
    width: clamp(176px, 51vw, 222px) !important;
  }

  .top-action {
    max-width: 132px !important;
    min-width: 118px !important;
    min-height: 54px !important;
    padding: 10px 13px !important;
    font-size: .86rem !important;
    line-height: 1.05 !important;
  }
}

@media (max-width: 420px) {
  .topbar {
    gap: 8px !important;
  }

  .brand-inline-logo {
    width: clamp(166px, 48vw, 190px) !important;
  }

  .top-action {
    max-width: 124px !important;
    min-width: 112px !important;
    min-height: 52px !important;
    padding: 9px 11px !important;
    font-size: .82rem !important;
  }
}

@media (max-width: 370px) {
  .brand-inline-logo {
    width: 158px !important;
  }

  .top-action {
    max-width: 112px !important;
    min-width: 104px !important;
    font-size: .78rem !important;
  }
}


/* Legal + checkout consent patch 2026-05-07 */
.withdrawal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 250, 241, .22);
  border-radius: 18px;
  background: rgba(255, 250, 241, .075);
  color: rgba(255, 250, 241, .88);
  font-size: .86rem;
  line-height: 1.45;
}
.withdrawal-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}
.withdrawal-consent a {
  color: #fff7d9;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 720;
}
.legal-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.legal-header a {
  font-weight: 720;
  color: var(--olive);
}
.legal-document {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 253, 247, .94), rgba(255, 247, 234, .82));
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 5vw, 52px);
}
.legal-document h1 {
  font-size: clamp(2rem, 6vw, 3.35rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 10px !important;
}
.legal-document h2 {
  font-size: clamp(1.35rem, 3vw, 2rem) !important;
  margin-top: 34px;
  margin-bottom: 10px;
}
.legal-document h3 {
  margin-top: 24px;
}
.legal-document p,
.legal-document li {
  max-width: 74ch;
  color: var(--muted);
  line-height: 1.7;
}
.legal-document ul { padding-left: 1.25rem; }
.legal-card {
  margin: 20px 0;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid var(--line);
}
.legal-warning {
  margin: 18px 0 26px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(154, 61, 47, .22);
  background: rgba(245, 218, 210, .55);
  color: #7a2b20;
  font-weight: 650;
}
.legal-muted { color: var(--soft); font-size: .95rem; }
.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: var(--olive);
  font-weight: 720;
}
@media (max-width: 620px) {
  .legal-header { align-items: flex-start; flex-direction: column; }
  .legal-document { border-radius: 24px; }
}

/* HeuHeldin logo correction 2026-05-07
   Reason: previous horse/hay emblem was too detailed and unclear at mobile header size.
   New direction: clear HH feeding-plan mark + readable wordmark, bigger and more confident. */
.brand-inline-logo {
  width: clamp(286px, 34vw, 388px) !important;
  min-width: 0 !important;
}

.heuheldin-brand-svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}

.hh-logo-mark {
  filter: drop-shadow(0 10px 18px rgba(110, 72, 18, .14));
}

.topbar {
  min-height: 102px !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.brand-inline {
  flex: 1 1 auto !important;
  overflow: visible !important;
}

@media (max-width: 760px) {
  .topbar {
    min-height: 108px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    gap: 8px !important;
  }

  .brand-inline-logo {
    width: clamp(214px, 58vw, 242px) !important;
  }

  .top-action {
    max-width: 126px !important;
    min-width: 112px !important;
    min-height: 54px !important;
    padding: 9px 11px !important;
    font-size: .82rem !important;
    line-height: 1.05 !important;
  }
}

@media (max-width: 420px) {
  .brand-inline-logo {
    width: clamp(202px, 55vw, 224px) !important;
  }

  .top-action {
    max-width: 118px !important;
    min-width: 108px !important;
    font-size: .8rem !important;
  }
}

@media (max-width: 370px) {
  .brand-inline-logo {
    width: 192px !important;
  }

  .top-action {
    max-width: 108px !important;
    min-width: 100px !important;
    font-size: .76rem !important;
  }
}

/* HeuHeldin final header logo fix 2026-05-07
   Diagnosis: Vercel was deploying correctly. The repo still contained the older, visually noisy inline logo and small mobile logo sizing.
   This final override makes the header brand simpler, larger, and readable on small screens. */
.topbar {
  min-height: 96px !important;
  padding-top: 16px !important;
  padding-bottom: 18px !important;
  gap: 14px !important;
}

.brand-inline {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  align-items: center !important;
}

.brand-inline-logo {
  display: block !important;
  width: clamp(260px, 31vw, 350px) !important;
  max-width: 100% !important;
  line-height: 0 !important;
  transform: none !important;
}

.brand-inline-logo svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}

.heuheldin-brand-svg text {
  font-family: "Atkinson Hyperlegible Next", Arial, sans-serif !important;
}

.topnav {
  flex: 0 0 auto !important;
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 1180px) !important;
  }

  .topbar {
    min-height: 92px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    gap: 8px !important;
  }

  .brand-inline-logo {
    width: clamp(208px, 58vw, 238px) !important;
  }

  .top-action {
    min-width: 104px !important;
    max-width: 118px !important;
    min-height: 50px !important;
    padding: 9px 10px !important;
    border-radius: 999px !important;
    font-size: .8rem !important;
    line-height: 1.05 !important;
  }
}

@media (max-width: 390px) {
  .site-shell {
    width: min(100% - 20px, 1180px) !important;
  }

  .topbar {
    gap: 6px !important;
  }

  .brand-inline-logo {
    width: clamp(194px, 56vw, 214px) !important;
  }

  .top-action {
    min-width: 96px !important;
    max-width: 104px !important;
    padding: 8px 9px !important;
    font-size: .76rem !important;
  }
}

@media (max-width: 350px) {
  .brand-inline-logo {
    width: 178px !important;
  }

  .top-action {
    min-width: 90px !important;
    max-width: 96px !important;
    font-size: .72rem !important;
  }
}

/* HeuHeldin correctness patch: hay range, readable consent, value preview before paywall */
.metrics small:first-letter { text-transform: none; }
.report-card.is-locked .premium-content {
  max-height: none !important;
  overflow: visible !important;
  mask-image: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  user-select: auto !important;
  margin-top: 18px;
}
.report-card.is-locked .premium-content::after {
  display: none !important;
  content: none !important;
}
.report-card.is-locked .report-actions {
  display: none !important;
}
.report-card.is-locked .ai-box {
  background: linear-gradient(145deg, #2d1b12, #3a2419);
}
.report-card.is-locked .ai-box p,
.report-card.is-locked .ai-box li {
  color: rgba(255,248,236,.86);
}
.unlock-card {
  margin-top: 20px;
}
.withdrawal-info {
  margin: 16px 0 10px;
  padding: 14px 14px 13px;
  border-radius: 18px;
  background: rgba(255, 250, 241, .10);
  border: 1px solid rgba(255, 250, 241, .22);
  color: #fff8ec;
}
.withdrawal-info strong {
  display: block;
  margin-bottom: 6px;
  color: #fff8ec;
  font-size: .98rem;
  font-weight: 900;
}
.withdrawal-info p {
  margin: 0 0 9px;
  color: rgba(255,248,236,.82) !important;
  line-height: 1.42;
  font-size: .88rem;
  font-weight: 650;
}
.withdrawal-info a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,248,236,.14);
  color: #fff8ec;
  text-decoration: none;
  font-weight: 850;
}
.withdrawal-consent {
  background: rgba(255, 250, 241, .12) !important;
  border-color: rgba(255, 250, 241, .28) !important;
}
.withdrawal-consent span {
  color: #fff8ec !important;
  opacity: 1 !important;
  font-weight: 720;
}
.withdrawal-consent input {
  background: #fff8ec;
  border: 2px solid rgba(255,248,236,.84);
}
@media (max-width: 700px) {
  .unlock-card { margin-top: 18px; }
  .withdrawal-info,
  .withdrawal-consent { border-radius: 16px; }
  .withdrawal-consent { font-size: .82rem; }
}
