/* Heute rauche ich nicht — Landing & Dashboard
   Warm, calm, premium. No medical tropes, no red, no shouting. */

:root {
  --bg: #F7F3EA;
  --card: #FFFDF7;
  --ink: #1E2A2F;
  --ink-soft: #5F6B66;
  --green: #6FA77A;
  --green-dark: #3F6F50;
  --mint: #DDEBDD;
  --beige: #EADBC8;
  --gold: #D8B46A;
  --orange: #DFA46D;
  --reset: #B97855;
  --border: #E5DED2;

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 1px 2px rgba(30, 42, 47, 0.04), 0 2px 8px rgba(30, 42, 47, 0.04);
  --shadow: 0 2px 6px rgba(30, 42, 47, 0.04), 0 18px 40px -18px rgba(30, 42, 47, 0.12);
  --shadow-lg: 0 4px 10px rgba(30, 42, 47, 0.05), 0 40px 80px -28px rgba(30, 42, 47, 0.22);

  --serif: 'Cormorant Garamond', 'Playfair Display', 'Libre Baskerville', Georgia, serif;
  --sans: 'Inter', 'Source Sans 3', 'Nunito Sans', -apple-system, system-ui, sans-serif;

  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ───────── Typography ───────── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(48px, 7vw, 88px); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2vw, 26px); line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em 0; color: var(--ink-soft); text-wrap: pretty; }
p strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 500;
}

.lead { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 56ch; }

/* ───────── Layout ───────── */

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

section { padding: 120px 0; position: relative; }
section + section { padding-top: 0; }

/* ───────── Nav ───────── */

.hin-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.hin-nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}

.brand {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--green) 14%, transparent);
}

.nav-links { display: flex; gap: 34px; font-size: 14.5px; color: var(--ink-soft); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--ink); }

@media (max-width: 820px) { .nav-links { display: none; } }

/* ───────── Buttons ───────── */

.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  background: transparent;
  color: var(--ink);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green-dark);
  color: #FAF8F2;
  box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--green-dark) 60%, transparent),
              0 0 0 0 color-mix(in srgb, var(--green) 35%, transparent);
  animation: breathe 4.2s ease-in-out infinite;
}
.btn-primary:hover { background: #345e44; }

@keyframes breathe {
  0%, 100% { box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--green-dark) 60%, transparent),
                        0 0 0 0 color-mix(in srgb, var(--green) 30%, transparent); }
  50%      { box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--green-dark) 60%, transparent),
                        0 0 0 12px color-mix(in srgb, var(--green) 0%, transparent); }
}

.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { background: #fffaf0; }

.btn-quiet {
  background: transparent;
  color: var(--ink-soft);
  padding: 10px 0;
}
.btn-quiet:hover { color: var(--ink); }

.btn-block { width: 100%; justify-content: center; padding: 18px 24px; font-size: 16px; }

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ───────── Hero ───────── */

.hero { padding-top: 96px; padding-bottom: 110px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero h1 { margin-bottom: 28px; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--green-dark); }

.hero-sub { font-size: 20px; line-height: 1.55; max-width: 48ch; color: var(--ink-soft); margin-bottom: 28px; }

.hero-stanza {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 32px 0 36px;
}
.hero-stanza span { display: block; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.trust { font-size: 13.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.trust .pill {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
}

/* ───────── Dashboard card ───────── */

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.dash {
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.dash::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 100% 0%, color-mix(in srgb, var(--mint) 55%, transparent), transparent 50%);
  pointer-events: none;
}

.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.dash-day {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.dash-day small { font-family: var(--sans); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 10px; font-weight: 500; }

.ring {
  width: 96px; height: 96px;
}
.ring-track { stroke: var(--border); }
.ring-fill { stroke: var(--green); transition: stroke-dashoffset 1.2s ease-out; }
.ring text {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  fill: var(--ink);
}

.dash-mantra {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.25;
  margin: 28px 0 26px;
  color: var(--ink);
  position: relative;
}

.dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.dash-stat {
  background: color-mix(in srgb, var(--bg) 55%, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.dash-stat .lbl { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.dash-stat .val { font-family: var(--serif); font-size: 26px; color: var(--ink); }

.dash-status {
  margin-top: 26px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--mint) 50%, var(--card));
  border-radius: var(--radius);
  display: flex; gap: 14px; align-items: flex-start;
  position: relative;
  font-size: 15px;
}
.dash-status .glyph {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-top: 1px;
  display: grid; place-items: center;
  color: #FAF8F2; font-size: 14px;
}

.dash-cta { margin-top: 22px; }

/* ───────── Section header ───────── */

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 19px; line-height: 1.55; }

/* ───────── Card grid ───────── */

.tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .tri { grid-template-columns: 1fr; } }

.note-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.note-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.note-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--green-dark);
  margin-bottom: 16px;
  display: block;
}
.note-card h3 { margin-bottom: 12px; }
.note-card p { margin: 0; }

/* ───────── Problem section ───────── */

.problem-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: start;
}
@media (max-width: 880px) { .problem-lead { grid-template-columns: 1fr; gap: 40px; } }

.problem-lead h2 { font-size: clamp(36px, 4.8vw, 60px); }
.problem-lead em { font-style: italic; color: var(--green-dark); }

.stanza {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  border-left: 1.5px solid var(--border);
  padding-left: 22px;
  margin: 0;
}
.stanza span { display: block; }

/* ───────── Dashboard preview (live) ───────── */

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 980px) { .preview-grid { grid-template-columns: 1fr; } }

.dash-live { padding: 40px; }
.dash-live .top { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }

.kpi-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.kpi {
  background: color-mix(in srgb, var(--bg) 55%, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.kpi .lbl { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.kpi .val { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-top: 2px; }
.kpi.gold .val { color: var(--gold); }

.checkin-group { margin-top: 32px; }
.checkin-group > .lbl {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
  display: block; margin-bottom: 12px; font-weight: 500;
}

.choice-row { display: flex; gap: 10px; flex-wrap: wrap; }
.choice {
  font-size: 14px;
  font-family: var(--sans);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.choice:hover { border-color: color-mix(in srgb, var(--green) 50%, var(--border)); }
.choice.active {
  background: var(--green-dark);
  color: #FAF8F2;
  border-color: var(--green-dark);
}
.choice.active.warn { background: var(--reset); border-color: var(--reset); }
.choice.active.amber { background: var(--orange); border-color: var(--orange); color: #2a1d10; }

.scale {
  display: flex; gap: 6px; margin-top: 4px;
}
.scale button {
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  padding: 10px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s ease;
}
.scale button:hover { color: var(--ink); }
.scale button.on { background: var(--ink); color: #FAF8F2; border-color: var(--ink); }
.scale.druck button.on { background: var(--orange); border-color: var(--orange); color: #2a1d10; }
.scale.mood button.on { background: var(--green-dark); border-color: var(--green-dark); color: #FAF8F2; }

.trigger-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
@media (max-width: 520px) { .trigger-grid { grid-template-columns: repeat(2, 1fr); } }
.trigger-grid .choice { text-align: center; justify-content: center; display: flex; }

textarea.note {
  width: 100%;
  margin-top: 4px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  resize: none;
  min-height: 78px;
  outline: none;
}
textarea.note:focus { border-color: color-mix(in srgb, var(--green) 60%, var(--border)); }
textarea.note::placeholder { color: var(--ink-soft); }

.hint {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 16px;
}

.preview-copy h2 { margin-bottom: 22px; }
.preview-copy .lead { margin-bottom: 28px; }
.preview-copy ul {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 14px;
  font-size: 15.5px;
}
.preview-copy li { padding-left: 26px; position: relative; color: var(--ink); }
.preview-copy li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 1.5px; background: var(--green-dark);
}

.emergency-launch {
  margin-top: 32px;
  padding: 22px 24px;
  background: color-mix(in srgb, var(--beige) 40%, var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.emergency-launch .left h4 { margin-bottom: 4px; }
.emergency-launch .left p { margin: 0; font-size: 14px; }

/* ───────── Emergency tile ───────── */

.emerg-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .emerg-grid { grid-template-columns: 1fr; } }

.emerg-card {
  background: linear-gradient(180deg, #fffdf6 0%, #f6efde 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 56px 48px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.emerg-card::after {
  content:"";
  position:absolute; inset:auto -40% -60% -40%;
  height: 70%;
  background: radial-gradient(50% 100% at 50% 0%, color-mix(in srgb, var(--orange) 30%, transparent), transparent 70%);
  pointer-events:none;
}

.emerg-card h3 { font-size: 32px; margin-bottom: 18px; }
.emerg-card p { color: var(--ink); font-size: 15.5px; }
.emerg-card .timer {
  font-family: var(--serif);
  font-size: 76px;
  line-height: 1;
  margin: 26px 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.emerg-card .stanza-quiet {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.emerg-card .stanza-quiet span { display: block; }
.emerg-card .actions {
  margin-top: 30px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.emerg-card .actions .small { font-size: 13.5px; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; background: none; border: 0; font-family: inherit; }

/* ───────── Reset section ───────── */

.reset-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px;
}
@media (max-width: 760px) { .reset-grid { grid-template-columns: 1fr; } }

.reset-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.reset-card .ribbon {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.reset-card.old .ribbon { color: color-mix(in srgb, var(--reset) 70%, var(--ink-soft)); }
.reset-card.new .ribbon { color: var(--green-dark); }

.reset-card h3 { font-size: 28px; margin-bottom: 16px; }
.reset-card .days {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.reset-card .learned {
  margin-top: 18px;
  padding: 16px;
  background: color-mix(in srgb, var(--beige) 35%, var(--card));
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--ink);
}
.reset-card .learned .lbl {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px;
}
.reset-card.new .badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 13px; font-weight: 500;
  margin-top: 12px;
}

/* ───────── Story ───────── */

.story-grid {
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }

.story-portrait {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg, rgba(30,42,47,.04) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, var(--beige), color-mix(in srgb, var(--beige) 50%, var(--card)));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}

.story-copy h2 { margin-bottom: 24px; }
.story-copy p { font-size: 17.5px; line-height: 1.65; color: var(--ink); }
.story-copy p.muted { color: var(--ink-soft); }
.story-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--green-dark);
  margin: 24px 0;
  padding-left: 22px;
  border-left: 1.5px solid var(--green);
}

/* ───────── Price ───────── */

.price-wrap { display: grid; place-items: center; }
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 56px 48px;
  max-width: 620px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card::before {
  content:""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(80% 50% at 50% 0%, color-mix(in srgb, var(--mint) 40%, transparent), transparent 60%);
  pointer-events:none;
}
.price-card .eyebrow { margin-bottom: 8px; display: block; }
.price-card h3 { font-size: 28px; margin-bottom: 28px; }
.price-amount {
  font-family: var(--serif);
  font-size: 96px; line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  position: relative;
}
.price-amount small {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 14px;
  font-weight: 500;
}
.price-includes {
  text-align: left;
  margin: 36px auto 28px;
  max-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  padding: 0;
}
@media (max-width: 520px) { .price-includes { grid-template-columns: 1fr; } }
.price-includes li {
  list-style: none;
  display: flex; gap: 10px; align-items: flex-start;
}
.price-includes li::before {
  content: "✓";
  color: var(--green-dark);
  font-weight: 600;
}
.price-card .small { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }

/* ───────── FAQ ───────── */

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.faq[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq .ans { padding: 0 28px 26px; color: var(--ink-soft); font-size: 16px; max-width: 64ch; }

/* ───────── Final CTA ───────── */

.final {
  text-align: center;
  padding: 140px 0;
}
.final h2 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 28px; }
.final h2 em { font-style: italic; color: var(--green-dark); }
.final .stanza-final {
  font-size: 18px; line-height: 1.7; color: var(--ink-soft);
  max-width: 44ch; margin: 0 auto 36px;
}
.final .stanza-final span { display: block; }

/* ───────── Footer ───────── */

footer.hin-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 56px;
  background: color-mix(in srgb, var(--bg) 60%, #fff);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 36px; } }

footer.hin-footer .brand { font-size: 22px; margin-bottom: 14px; }
footer.hin-footer p { font-size: 14.5px; color: var(--ink-soft); max-width: 36ch; }

.foot-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 600;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.foot-col a:hover { color: var(--ink); }

.disclaimer {
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 12.5px; line-height: 1.7; color: var(--ink-soft); max-width: 86ch;
}

/* ───────── Fade-up animation ───────── */

.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease-out, transform .9s ease-out;
  transition-delay: var(--delay, 0ms);
}
.fade.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
  .btn-primary { animation: none; }
}

/* ───────── Notfallmodus fullscreen overlay ───────── */

.hin-overlay {
  position: fixed; inset: 0;
  background: radial-gradient(120% 80% at 50% 30%, #f6efde 0%, #efe5ce 60%, #e8dbbf 100%);
  z-index: 200;
  display: grid; place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
  padding: 32px;
}
.hin-overlay.show { opacity: 1; pointer-events: auto; }

.overlay-inner {
  text-align: center;
  max-width: 640px;
  transform: translateY(20px);
  transition: transform .8s ease;
}
.hin-overlay.show .overlay-inner { transform: none; }

.hin-overlay h2 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 30px;
}
.hin-overlay .breath-ring {
  width: 200px; height: 200px;
  margin: 14px auto 24px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--orange) 30%, var(--border));
  display: grid; place-items: center;
  background: color-mix(in srgb, #fffdf6 70%, transparent);
  animation: pulseBreath 6s ease-in-out infinite;
}
@keyframes pulseBreath {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 color-mix(in srgb, var(--orange) 18%, transparent); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 22px color-mix(in srgb, var(--orange) 0%, transparent); }
}
.hin-overlay .timer-large {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hin-overlay .lines {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 26px auto 32px;
  max-width: 36ch;
}
.hin-overlay .lines span { display: block; }
.hin-overlay .o-actions { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hin-overlay .o-actions .small { background: none; border: 0; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; font-family: inherit; font-size: 14px; }
.hin-overlay .quiet {
  font-size: 14px; color: var(--ink-soft);
  max-width: 36ch; margin-left: auto; margin-right: auto;
}

.divider { height: 1px; background: var(--border); margin: 0 auto; max-width: var(--max); }
