/* ============================================================
   Smiile Coffee — Design System
   Farben und Formen abgeleitet vom Verpackungsentwurf.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,700;12..96,800&family=Outfit:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --yellow:      #FFDC3E;
  --yellow-deep: #F0C41A;
  --peach:       #FAD3AE;
  --peach-deep:  #F2B885;
  --cream:       #F1EBD8;
  --paper:       #FBF6F0;
  --ink:         #2E2318;
  --ink-70:      rgba(46, 35, 24, .70);
  --ink-45:      rgba(46, 35, 24, .45);
  --ink-12:      rgba(46, 35, 24, .12);
  --roast:       #4A3222;
  --roast-deep:  #33210F;

  --display: 'Bricolage Grotesque', 'Outfit', system-ui, -apple-system, sans-serif;
  --body:    'Outfit', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono:    'DM Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --r-sm: 14px;
  --r-md: 24px;
  --r-lg: 36px;
  --arch: 999px 999px 28px 28px;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Kein overflow-x:hidden auf body — das macht den Body zum Scroll-Container
   und bricht window.scrollTo sowie position:sticky. Stattdessen clippen die
   Sektionen selbst, in denen die versetzten Wasserzeichen sitzen. */
.band, .hero { overflow: hidden; }

/* Körnung über allem — macht die flachen Flächen "gedruckt" statt digital */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .95;
  margin: 0 0 .4em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: .9; }
h2 { font-size: clamp(2rem, 4.1vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 700; letter-spacing: -.02em; }
p  { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-70); max-width: 56ch; }
.tiny { font-size: .78rem; color: var(--ink-45); }

/* ---------- Auszeichnungen ---------- */

.eyebrow {
  font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 1.1rem;
}

.sticker {
  display: inline-flex; align-items: center; gap: .45em;
  background: var(--ink); color: var(--yellow);
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase;
  padding: .55em 1em; border-radius: 999px;
  box-shadow: 0 0 0 4px var(--paper);
  rotate: -3deg;
}
.sticker--peach { background: var(--peach); color: var(--ink); }
.sticker--cream { background: var(--cream); color: var(--ink); }
.sticker--flip  { rotate: 3deg; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: .95em 1.8em; border-radius: 999px;
  border: 2px solid var(--ink); background: var(--ink); color: var(--paper);
  text-decoration: none; cursor: pointer;
  transition: transform .16s cubic-bezier(.3,1.6,.5,1), background .16s, color .16s;
}
.btn:hover  { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: scale(.96); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: var(--yellow); color: var(--ink); border-color: var(--ink); }
.btn--lg { font-size: 1.06rem; padding: 1.1em 2.2em; }

/* ---------- Navigation ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav__in {
  max-width: var(--wrap); margin-inline: auto;
  padding: .8rem var(--gut);
  display: flex; align-items: center; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text {
  font-family: var(--display); font-weight: 800; font-size: 1.45rem; letter-spacing: -.045em;
  display: flex; flex-direction: column; line-height: .84;
}
.brand__text small {
  font-family: var(--body); font-size: .33em; font-weight: 600;
  letter-spacing: .34em; opacity: .6; padding-left: .12em; margin-top: .2em;
}

.nav__links { display: flex; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  text-decoration: none; font-weight: 500; font-size: .95rem;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav__links a:hover { border-color: var(--ink); }
.nav__links a[aria-current] { border-color: var(--ink); font-weight: 600; }

.nav__toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* Farbstreifen zeigt, auf welcher Seite man ist */
.nav::after {
  content: ''; display: block; height: 5px;
  background: var(--page-accent, var(--yellow));
}

/* ---------- Sektionen und Bögen ---------- */

section { position: relative; }

.band { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.band--yellow { background: var(--yellow); }
.band--peach  { background: var(--peach); }
.band--cream  { background: var(--cream); }
.band--paper  { background: var(--paper); }
.band--roast  { background: var(--roast); color: var(--cream); }
.band--roast h1, .band--roast h2, .band--roast h3 { color: var(--paper); }
.band--roast .lead { color: rgba(241,235,216,.75); }
/* Helle Karten auf dunklem Band behalten dunklen Text */
.band--roast .card, .band--roast .tile, .band--roast .quote, .band--roast .report,
.band--roast .card h3, .band--roast .tile h3, .band--roast .compare__col { color: var(--ink); }
.band--roast .card .lead, .band--roast .tile .lead { color: var(--ink-70); }

/* ---------- Übergänge zwischen Sektionen ----------
   Die Kurve liegt am Ende der aktuellen Sektion und ist in der Farbe der
   NÄCHSTEN gefüllt. Dadurch treffen immer genau zwei Farben aufeinander —
   nie blitzt eine dritte an den Ecken durch. */

.div { display: block; width: 100%; height: clamp(52px, 7.5vw, 116px); margin-bottom: -1px; }
.div svg { display: block; width: 100%; height: 100%; }

/* Alte Variante bleibt als No-Op, damit nichts kaputtgeht */
.band--arched { margin-top: -1px; }

.wave { display: block; width: 100%; height: auto; margin-bottom: -1px; }

/* ---------- Der Smiley als Bauteil ---------- */

.smile-divider { display: block; width: 100%; height: auto; margin-bottom: -2px; }

.eyes { display: inline-flex; gap: 5px; vertical-align: middle; margin-right: .55em; }
.eyes i { width: 7px; height: 11px; border-radius: 50%; background: currentColor; display: block; }

/* Grosser, blasser Smiley als Hintergrundzeichen */
.watermark {
  position: absolute; pointer-events: none; z-index: 0;
  width: clamp(220px, 34vw, 560px); opacity: .07;
}
.watermark--tr { top: -4%; right: -6%; rotate: 12deg; }
.watermark--bl { bottom: -8%; left: -7%; rotate: -14deg; }
.band > .wrap { position: relative; z-index: 1; }

/* Reihe kleiner Smileys als Zierlinie */
.smile-rule {
  display: flex; gap: 1.1rem; justify-content: center; align-items: center;
  padding: .2rem 0; opacity: .5;
}
.smile-rule svg { width: 22px; height: 22px; flex: none; }
.smile-rule svg:nth-child(even) { rotate: -8deg; }

/* Augen blinzeln */
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 96% { transform: scaleY(.1); } }
.blink { transform-box: fill-box; transform-origin: center; animation: blink 5.5s infinite; }
.blink--b { animation-delay: .08s; }

/* ---------- Laufband ---------- */

.ticker {
  background: var(--ink); color: var(--yellow);
  border-block: 2px solid var(--ink);
  overflow: hidden; padding: .85rem 0;
}
.ticker__track {
  display: flex; gap: 3rem; width: max-content;
  animation: slide 38s linear infinite;
}
.ticker__track span {
  font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: -.01em; white-space: nowrap;
  display: flex; align-items: center; gap: 3rem;
}
.ticker__track span::after { content: '●'; font-size: .5em; opacity: .6; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Hero ---------- */

.hero { background: var(--yellow); padding-top: clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--roast); display: block; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.hero__media { position: relative; }
.hero__photo {
  border-radius: var(--arch); overflow: hidden;
  border: 2px solid var(--ink);
  aspect-ratio: 4/5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; bottom: -18px; left: -18px; }
.hero__face { position: absolute; top: -14px; right: -10px; width: clamp(64px, 8vw, 96px); }

/* 40/60-Leiste — das Mischverhältnis als Grafik */
.ratio { display: flex; border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; margin-top: 3.2rem; }
.ratio__part { padding: .75rem 1.2rem; font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.ratio__light { flex: 40; background: var(--cream); color: var(--ink); }
.ratio__dark  { flex: 60; background: var(--roast); color: var(--cream); justify-content: flex-end; }
.ratio__dot { width: 10px; height: 10px; border-radius: 50%; background: currentColor; flex: none; }

/* ---------- Raster ---------- */

.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--40 { grid-template-columns: 40fr 60fr; }

/* ---------- Karten ---------- */

.card {
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 2.4vw, 2rem);
}
/* Sanfter Bogen für Karten — 999px würde auf breiten Boxen eine Halbkuppel geben */
.card--arch { border-radius: 130px 130px var(--r-lg) var(--r-lg); padding-top: clamp(2.4rem, 4vw, 3.4rem); }
.card__num {
  font-family: var(--display); font-weight: 800; font-size: 2.6rem;
  line-height: 1; color: var(--ink-12); margin-bottom: .4rem;
}
.card h3 { margin-bottom: .45rem; }
.card p:last-child { margin-bottom: 0; }

.photo { border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--ink); }
.photo--arch { border-radius: var(--arch); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--tall { aspect-ratio: 4/5; }
.photo--wide { aspect-ratio: 16/10; }
.photo--sq   { aspect-ratio: 1/1; }

/* ---------- Werte-Feld: aussieht wie ein Laborbeleg ---------- */

.report {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--r-md) var(--r-md) 0 0;
  padding: 1.8rem 1.8rem 1.4rem;
  max-width: 460px;
  rotate: -1.4deg;
  position: relative;
  box-shadow: 10px 12px 0 var(--ink);
  font-family: var(--mono);
}
.report--flat { rotate: 0deg; }
.report__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  border-bottom: 2px dashed var(--ink-12); padding-bottom: .7rem; margin-bottom: .9rem;
}
/* Platz freihalten, wo der Stempel sitzt */
.report:has(.report__stamp) .report__head { padding-right: 5.6rem; }
.report__title { font-family: var(--body); font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.report__batch { font-size: .82rem; font-weight: 500; }
.report__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .45rem 0; font-size: .88rem;
  border-bottom: 1px dotted var(--ink-12);
}
.report__row b { font-weight: 500; font-variant-numeric: tabular-nums; }
.report__row--gap { margin-top: .6rem; }
.report__foot { font-family: var(--body); font-size: .75rem; color: var(--ink-45); margin-top: 1rem; line-height: 1.45; }
/* Abrisskante unten */
.report::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: -13px; height: 14px;
  background:
    linear-gradient(-45deg, transparent 50%, var(--cream) 50%) 0 0/14px 14px repeat-x,
    linear-gradient(45deg,  transparent 50%, var(--cream) 50%) 0 0/14px 14px repeat-x;
  filter: drop-shadow(0 2px 0 var(--ink));
}
.report__stamp {
  position: absolute; top: 1.1rem; right: 1.4rem;
  font-family: var(--body); font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--ink); border-radius: 6px;
  padding: .3em .6em; rotate: -9deg; opacity: .5;
}

/* ---------- Verlust-Grafik ---------- */

.loss { display: grid; gap: 1.6rem; }
.loss__bar {
  display: grid; grid-template-columns: 130px 1fr 74px;
  gap: 1rem; align-items: center;
}
.loss__label { font-size: .88rem; font-weight: 600; }
.loss__track {
  display: block;
  height: 30px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--paper); overflow: hidden;
}
.loss__fill {
  display: block;
  height: 100%; width: var(--w, 0%);
  background: repeating-linear-gradient(45deg, var(--c, var(--yellow)) 0 9px, transparent 9px 18px), var(--c, var(--yellow));
  border-right: 2px solid var(--ink);
  transition: width 1.1s cubic-bezier(.22,1,.36,1);
}
.loss__val { font-family: var(--mono); font-size: .9rem; font-variant-numeric: tabular-nums; }
.loss__bar--ours .loss__label { font-weight: 700; }

/* ---------- Vergleich ---------- */

.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: end; }
.compare__col { border: 2px solid var(--ink); border-radius: var(--r-lg); padding: 1.6rem; background: var(--paper); }
.compare__col--us { background: var(--yellow); transform: translateY(-16px) rotate(-1deg); box-shadow: 8px 10px 0 var(--ink); }
.compare__col h3 { font-size: 1.15rem; }
.compare__list { list-style: none; margin: 1rem 0 0; padding: 0; font-size: .92rem; }
.compare__list li { padding: .5rem 0; border-top: 1px solid var(--ink-12); display: flex; gap: .6rem; }
.compare__list li::before { content: '—'; opacity: .4; }
.compare__col--us .compare__list li::before { content: '✓'; opacity: 1; font-weight: 700; }

/* ---------- Kacheln ---------- */

.tile { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-md); padding: 1.5rem; }
.tile--hi { background: var(--yellow); }
.tile__k { font-family: var(--mono); font-size: .78rem; letter-spacing: .05em; color: var(--ink-45); }
.tile h3 { font-size: 1.15rem; margin: .35rem 0 .5rem; }
.tile p { font-size: .92rem; margin: 0; color: var(--ink-70); }
.tile--hi p { color: var(--ink); }

/* ---------- Zeitleiste ---------- */

.steps { display: grid; gap: 0; counter-reset: s; }
.stepline { display: grid; grid-template-columns: 64px 1fr; gap: 1.4rem; padding: 1.4rem 0; border-top: 2px solid var(--ink-12); }
.stepline:first-child { border-top: 0; }
.stepline__n {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--ink);
  display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.1rem;
  background: var(--yellow);
}
.stepline h3 { margin-bottom: .3rem; }
.stepline p { margin: 0; color: var(--ink-70); font-size: .95rem; }

/* ---------- Testimonials ---------- */

.quote { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-md); padding: 1.6rem; }
.quote p { font-size: 1.02rem; }
.quote footer { font-size: .85rem; color: var(--ink-45); display: flex; align-items: center; gap: .5rem; }
.stars { letter-spacing: .1em; font-size: .8rem; }

/* ---------- Produkt ---------- */

.price { display: flex; align-items: baseline; gap: .7rem; margin: .4rem 0 .2rem; }
.price b { font-family: var(--display); font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; }
.price s { color: var(--ink-45); }
.opts { display: flex; gap: .6rem; flex-wrap: wrap; margin: .9rem 0; }
.opt {
  border: 2px solid var(--ink); border-radius: 999px; padding: .55em 1.1em;
  font-size: .9rem; font-weight: 500; cursor: pointer; background: transparent;
  font-family: var(--body); transition: .15s;
}
.opt[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.iconrow { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: .7rem; }
.iconrow li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.iconrow svg { flex: none; margin-top: 2px; }

.acc { border-top: 2px solid var(--ink-12); }
.acc__h {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--body); font-size: 1rem; font-weight: 600; color: inherit;
  padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.acc__h::after { content: '+'; font-size: 1.4rem; font-weight: 400; transition: rotate .2s; }
.acc__h[aria-expanded="true"]::after { rotate: 45deg; }
.acc__b { display: none; padding-bottom: 1.2rem; font-size: .95rem; color: var(--ink-70); }
.acc__b[data-open] { display: block; }

/* ---------- Angebot ---------- */

.offer { border: 2px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); }
.offer__top { background: var(--ink); color: var(--yellow); padding: .8rem 1.4rem; font-weight: 600; font-size: .88rem; letter-spacing: .05em; text-align: center; }
.offer__body { padding: clamp(1.5rem, 3vw, 2.4rem); }
.offer__pick { border: 2px solid var(--ink); border-radius: var(--r-md); padding: 1.2rem; display: flex; gap: 1rem; align-items: center; margin-bottom: .9rem; cursor: pointer; }
.offer__pick--on { background: var(--yellow); box-shadow: 5px 6px 0 var(--ink); }
.offer__pick b { font-family: var(--display); font-size: 1.15rem; }

/* ---------- Fussbereich ---------- */

.foot { background: var(--roast); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.foot a { color: var(--cream); }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.foot h4 { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; opacity: .6; margin: 0 0 .9rem; font-weight: 600; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .92rem; }
.foot ul a { text-decoration: none; opacity: .85; }
.foot ul a:hover { opacity: 1; text-decoration: underline; }

/* Der zugelassene Niacin-Satz — steht auf jeder Seite */
.anchor {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(241,235,216,.22);
  font-size: .8rem; line-height: 1.6; color: rgba(241,235,216,.62);
  max-width: 74ch;
}
.anchor strong { color: rgba(241,235,216,.9); font-weight: 600; }

/* ---------- Hilfsklassen ---------- */

.center { text-align: center; }
.center .lead { margin-inline: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.hdr { max-width: 46ch; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.hdr.center { margin-inline: auto; }

/* Nur verstecken, wenn JS läuft — sonst wäre ohne Skript alles unter dem Fold weg */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* Überschriften laufen zeilenweise hoch */
.js .lines .ln { display: block; overflow: hidden; }
.js .lines .ln > span { display: block; transform: translateY(105%); transition: transform .85s cubic-bezier(.22,1,.36,1); }
.js .lines.in .ln > span { transform: none; }
.js .lines .ln:nth-child(2) > span { transition-delay: .07s; }
.js .lines .ln:nth-child(3) > span { transition-delay: .14s; }
.js .lines .ln:nth-child(4) > span { transition-delay: .21s; }

/* Karten heben sich beim Überfahren */
.card, .tile, .quote, .compare__col { transition: transform .28s cubic-bezier(.3,1.4,.5,1), box-shadow .28s; }
.card:hover, .tile:hover, .quote:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: 7px 9px 0 var(--ink); }
.compare__col:hover { transform: translateY(-8px); box-shadow: 7px 9px 0 var(--ink); }
.compare__col--us:hover { transform: translateY(-24px) rotate(-1deg); box-shadow: 12px 14px 0 var(--ink); }

/* Bilder ziehen beim Scrollen leicht nach */
.par { will-change: transform; }

/* Fortschritt oben: 40/60 wie im Produkt */
.progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 100%;
  z-index: 300; pointer-events: none; display: flex;
}
.progress__bar { height: 100%; width: 0%; background: var(--yellow); border-right: 2px solid var(--ink); transition: width .1s linear; }

/* ---------- Mobil ---------- */

@media (max-width: 900px) {
  .hero__grid, .split, .split--40 { grid-template-columns: 1fr; }
  .grid--3, .grid--4, .compare { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .compare__col--us { transform: none; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: grid; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink);
    padding: 1.2rem var(--gut); gap: 1rem;
  }
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .grid--2, .grid--3, .grid--4, .compare { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .loss__bar { grid-template-columns: 96px 1fr 60px; gap: .6rem; }
  .report { rotate: 0deg; box-shadow: 6px 7px 0 var(--ink); }
  .hero__badge { left: 8px; bottom: -14px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .ratio__part { padding: .7rem .9rem; font-size: .74rem; }
  .card--arch { border-radius: 90px 90px var(--r-lg) var(--r-lg); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
