:root {
  --cream: #fffaf0;
  --cream-2: #fff3d5;
  --sun: #ffd54a;
  --orange: #ff8a3d;
  --orange-dark: #dd5b1f;
  --coral: #f35b4b;
  --red: #e32626;
  --teal: #147d7a;
  --ink: #29313d;
  --muted: #65707e;
  --white: #ffffff;
  --border: rgba(41, 49, 61, 0.12);
  --shadow: 0 24px 70px rgba(158, 87, 28, 0.16);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 12px 16px; background: var(--ink); color: var(--white); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.sun-strip {
  display: flex;
  justify-content: center;
  gap: 42px;
  padding: 7px 20px;
  color: #5b3b00;
  background: linear-gradient(90deg, #ffe77d, #ffb766 50%, #ffe77d);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.sun-strip span::before { content: "☀"; margin-right: 9px; color: #e86d19; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, .92);
  border-bottom: 1px solid rgba(41, 49, 61, .08);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 19px; letter-spacing: .07em; }
.brand strong { color: var(--coral); }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: 15px; }
.main-nav a { text-decoration: none; }
.main-nav a:not(.nav-cta):hover { color: var(--orange-dark); }
.nav-cta { padding: 12px 18px; color: var(--white); background: var(--ink); border-radius: 999px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--white); box-shadow: 0 8px 24px rgba(41,49,61,.1); }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 2px; }

.hero { position: relative; overflow: hidden; padding: 90px 0 100px; background: radial-gradient(circle at 85% 22%, #ffe465 0, #ffe465 10%, transparent 32%), linear-gradient(145deg, #fffaf0 0%, #fff0cc 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 480px; height: 480px; left: -270px; top: 80px; background: rgba(255, 177, 86, .22); }
.hero::after { width: 260px; height: 260px; right: -90px; bottom: -70px; border: 45px solid rgba(243, 91, 75, .11); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 80px; }
.eyebrow { margin: 0 0 13px; color: var(--orange-dark); font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 750px; margin-bottom: 24px; font-size: clamp(45px, 6vw, 75px); }
h2 { margin-bottom: 20px; font-size: clamp(34px, 4vw, 52px); }
h3 { margin-bottom: 12px; font-size: 24px; }
p { margin-top: 0; }
.hero-text { max-width: 680px; margin-bottom: 30px; color: #4c5866; font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 14px 24px; border: 2px solid transparent; border-radius: 999px; font-weight: 850; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .main-nav a:focus-visible, .legal-links a:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--coral), var(--orange-dark)); box-shadow: 0 16px 32px rgba(221, 91, 31, .25); }
.button-primary:hover { box-shadow: 0 20px 36px rgba(221, 91, 31, .32); }
.button-secondary { border-color: rgba(41, 49, 61, .16); background: rgba(255,255,255,.66); }
.button-light { color: var(--orange-dark); background: var(--white); box-shadow: 0 16px 38px rgba(121, 57, 11, .18); }
.button-large { min-height: 62px; padding-inline: 30px; }
.quick-facts { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.quick-facts li { padding: 8px 12px; background: rgba(255,255,255,.7); border: 1px solid rgba(41,49,61,.09); border-radius: 999px; font-size: 13px; font-weight: 750; }
.quick-facts li::before { content: "✓"; margin-right: 7px; color: var(--teal); font-weight: 900; }

.hero-visual { position: relative; width: min(100%, 530px); margin-inline: auto; }
.hero-visual picture img { position: relative; z-index: 2; border-radius: 50%; box-shadow: var(--shadow); }
.heat-orbit { position: absolute; inset: -25px; z-index: 1; border: 2px dashed rgba(221, 91, 31, .35); border-radius: 50%; animation: rotate 28s linear infinite; }
.heat-orbit span { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 9px rgba(255,138,61,.16); }
.heat-orbit span:nth-child(1) { top: 8%; left: 16%; }
.heat-orbit span:nth-child(2) { top: 55%; right: -8px; background: var(--teal); }
.heat-orbit span:nth-child(3) { bottom: 7%; left: 20%; background: var(--sun); }
.temperature-badge { position: absolute; z-index: 3; right: -18px; bottom: 38px; width: 128px; height: 128px; display: grid; place-content: center; text-align: center; color: var(--white); background: var(--teal); border: 8px solid var(--cream); border-radius: 50%; box-shadow: 0 14px 34px rgba(20,125,122,.24); }
.temperature-badge strong { display: block; font-size: 35px; line-height: 1; }
.temperature-badge span { font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
@keyframes rotate { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .heat-orbit { animation: none; } * { transition-duration: .01ms !important; } }

.comparison { background: var(--white); }
.section-heading { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }
.state-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.state-card { position: relative; padding: 24px 24px 28px; background: #f8fafb; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.state-card.featured { background: linear-gradient(180deg, #fff8df, #fff); border-color: rgba(255, 138, 61, .35); box-shadow: 0 20px 50px rgba(211, 124, 36, .11); }
.state-card img { width: min(100%, 400px); margin: 8px auto 22px; border-radius: 50%; }
.state-card p { margin-bottom: 0; color: var(--muted); }
.state-label { display: inline-flex; align-items: center; min-height: 34px; padding: 6px 13px; border-radius: 999px; font-size: 13px; font-weight: 850; }
.state-label.cool { color: #155a74; background: #dff5ff; }
.state-label.hot { color: #8a2b14; background: #ffe1d3; }

.benefits { background: linear-gradient(180deg, #fff8e8 0%, #fffdf8 100%); }
.benefits-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 78px; align-items: start; }
.benefits-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.notice { margin-top: 28px; padding: 20px 22px; border-left: 5px solid var(--teal); background: rgba(20,125,122,.08); border-radius: 0 16px 16px 0; }
.benefit-cards { display: grid; gap: 16px; }
.benefit-cards article { position: relative; overflow: hidden; padding: 25px 28px; background: var(--white); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 12px 36px rgba(88,65,31,.07); }
.benefit-cards article::after { content: ""; position: absolute; right: -25px; bottom: -35px; width: 110px; height: 110px; background: rgba(255, 213, 74, .24); border-radius: 50%; }
.card-number { display: block; margin-bottom: 10px; color: var(--coral); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.benefit-cards h3 { margin-bottom: 7px; }
.benefit-cards p { margin-bottom: 0; color: var(--muted); }

.product-section { padding-top: 0; background: linear-gradient(180deg, #fffdf8, #fff); }
.product-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 48px 54px; background: var(--ink); color: var(--white); border-radius: 32px; box-shadow: 0 28px 70px rgba(41,49,61,.18); }
.product-panel .eyebrow { color: #ffc675; }
.product-panel h2 { max-width: 760px; margin-bottom: 14px; }
.product-panel p:last-child { max-width: 780px; margin-bottom: 0; color: #d8dee6; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; align-items: start; }
.accordion { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { position: relative; padding: 24px 44px 24px 0; cursor: pointer; list-style: none; font-size: 19px; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; top: 17px; font-size: 30px; font-weight: 400; color: var(--orange-dark); }
details[open] summary::after { content: "–"; }
details p { padding-right: 35px; margin: -4px 0 24px; color: var(--muted); }

.final-cta { padding: 70px 0; color: var(--white); background: linear-gradient(120deg, var(--orange-dark), var(--coral) 55%, #f17a32); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.final-cta .eyebrow { color: #ffe4b7; }
.final-cta h2 { max-width: 760px; margin-bottom: 0; }

.site-footer { padding: 64px 0 28px; color: #d7dde4; background: #222a34; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.footer-brand { color: var(--white); }
.footer-grid > div:first-child p { max-width: 520px; margin-top: 18px; color: #b9c1cb; }
.site-footer h2 { margin-bottom: 16px; color: var(--white); font-size: 18px; letter-spacing: 0; }
.legal-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.legal-links a { color: #d7dde4; text-decoration: none; }
.legal-links a:hover { color: #ffc675; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 45px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.footer-bottom a { color: #ffc675; text-decoration: none; }
.mobile-shop-button { display: none; }

@media (max-width: 980px) {
  .hero-grid, .benefits-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 58px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .quick-facts { justify-content: center; }
  .hero-visual { max-width: 500px; }
  .benefits-grid { gap: 44px; }
  .product-panel { grid-template-columns: 1fr; gap: 28px; }
  .product-panel .button { justify-self: start; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .sun-strip { gap: 14px; font-size: 10px; }
  .sun-strip span:nth-child(2) { display: none; }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: var(--white); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 22px 60px rgba(41,49,61,.17); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .hero { padding: 64px 0 76px; }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  h2 { font-size: 38px; }
  .hero-text { font-size: 18px; }
  .state-grid { grid-template-columns: 1fr; }
  .temperature-badge { right: -4px; bottom: 12px; width: 105px; height: 105px; border-width: 6px; }
  .temperature-badge strong { font-size: 29px; }
  .heat-orbit { inset: -12px; }
  .product-panel { padding: 36px 26px; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding-bottom: 70px; }
  .mobile-shop-button { position: fixed; z-index: 90; left: 14px; right: 14px; bottom: 12px; display: flex; align-items: center; justify-content: center; min-height: 52px; color: var(--white); background: linear-gradient(135deg, var(--coral), var(--orange-dark)); border: 2px solid rgba(255,255,255,.8); border-radius: 999px; box-shadow: 0 14px 36px rgba(80,32,11,.3); font-weight: 900; text-decoration: none; }
}

@media (max-width: 440px) {
  .brand { font-size: 16px; }
  .brand img { width: 40px; height: 40px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .quick-facts { align-items: stretch; flex-direction: column; }
  .quick-facts li { text-align: left; }
  .state-card { padding-inline: 16px; }
  .product-panel .button { width: 100%; }
}

/* ===== Breitere Desktop-Darstellung und Funktionsanimation ===== */
:root { --container: 1640px; }

.hero { padding: 96px 0 108px; }
.hero-grid { grid-template-columns: minmax(0, 1.42fr) minmax(430px, .78fr); gap: clamp(58px, 5vw, 105px); }
.hero-copy { max-width: 1040px; }
h1 { max-width: 1040px; font-size: clamp(50px, 4vw, 68px); line-height: 1.03; text-wrap: balance; }
.hero-text { max-width: 920px; }
.hero-visual { width: min(100%, 565px); }
.section-heading { max-width: 1160px; }
.section-heading > p:last-child { max-width: 1100px; margin-inline: auto; }
.benefits-grid { grid-template-columns: minmax(0, 1.35fr) minmax(380px, .65fr); gap: clamp(60px, 6vw, 120px); }
.product-panel h2, .product-panel p:last-child, .final-cta h2 { max-width: 1050px; }
.footer-grid > div:first-child p { max-width: 720px; }

.function-demo {
  display: grid;
  grid-template-columns: minmax(540px, .95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(50px, 6vw, 110px);
  padding: clamp(34px, 4vw, 64px);
  background: linear-gradient(135deg, #fffaf0 0%, #fff4d5 52%, #ffe9aa 100%);
  border: 1px solid rgba(221, 91, 31, .14);
  border-radius: 40px;
  box-shadow: 0 28px 80px rgba(115, 74, 24, .12);
}
.function-visual {
  position: relative;
  min-height: 640px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.function-visual::before,
.function-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.function-visual::before { width: 310px; height: 310px; right: -150px; top: -155px; border: 42px solid rgba(255,138,61,.10); }
.function-visual::after { width: 190px; height: 190px; left: -90px; bottom: -95px; background: rgba(20,125,122,.08); }
.function-temperature { position: relative; z-index: 8; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.function-temperature span { color: var(--muted); font-size: 13px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.function-temperature strong { color: var(--teal); font-size: clamp(32px, 3vw, 46px); line-height: 1; letter-spacing: -.04em; transition: color .3s ease; }
.function-demo.is-hot .function-temperature strong { color: var(--red); }
.sticker-stage { position: relative; z-index: 4; width: min(100%, 465px); aspect-ratio: 1; margin: 18px auto 24px; }
.sticker-state { position: absolute; inset: 0; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.sticker-state img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: 0 25px 60px rgba(70,45,19,.18); }
.sticker-cool { opacity: 1; transform: scale(1); }
.sticker-hot { opacity: 0; transform: scale(.94); filter: saturate(.8); }
.function-demo.is-hot .sticker-cool { opacity: 0; transform: scale(.96); }
.function-demo.is-hot .sticker-hot { opacity: 1; transform: scale(1); filter: saturate(1); }
.threshold-badge { position: absolute; z-index: 7; right: -26px; bottom: 30px; display: grid; place-content: center; width: 126px; height: 126px; color: #fff; background: var(--teal); border: 7px solid #fff7de; border-radius: 50%; box-shadow: 0 18px 42px rgba(20,125,122,.25); text-align: center; transition: background .9s ease, transform .9s ease, box-shadow .9s ease; }
.threshold-badge span { font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.threshold-badge strong { font-size: 17px; line-height: 1.15; }
.function-demo.is-hot .threshold-badge { background: color-mix(in srgb, var(--teal) calc((1 - var(--heat-progress)) * 100%), var(--coral) calc(var(--heat-progress) * 100%)); transform: scale(calc(1 + (var(--heat-progress) * 0.06))) rotate(calc(var(--heat-progress) * 4deg)); }
.heat-rays { position: absolute; z-index: 1; inset: -34px; opacity: 0; transform: scale(.85) rotate(-10deg); transition: opacity .6s ease, transform .8s ease; }
.heat-rays span { position: absolute; left: 50%; top: 50%; width: 8px; height: 48%; background: linear-gradient(to top, rgba(255,138,61,.1), rgba(243,91,75,.7)); border-radius: 99px; transform-origin: 50% 0; }
.heat-rays span:nth-child(1) { transform: rotate(0deg) translateY(-108%); }
.heat-rays span:nth-child(2) { transform: rotate(60deg) translateY(-108%); }
.heat-rays span:nth-child(3) { transform: rotate(120deg) translateY(-108%); }
.heat-rays span:nth-child(4) { transform: rotate(180deg) translateY(-108%); }
.heat-rays span:nth-child(5) { transform: rotate(240deg) translateY(-108%); }
.heat-rays span:nth-child(6) { transform: rotate(300deg) translateY(-108%); }
.function-demo.is-hot .heat-rays { opacity: .62; transform: scale(1) rotate(0deg); animation: heatPulse 1.8s ease-in-out infinite alternate; }
.temperature-meter { position: relative; z-index: 8; }
.meter-labels { display: flex; justify-content: space-between; margin-bottom: 7px; color: var(--muted); font-size: 11px; font-weight: 800; }
.meter-track { position: relative; height: 14px; overflow: visible; background: #e1e8ec; border: 3px solid rgba(255,255,255,.9); border-radius: 999px; box-shadow: inset 0 2px 5px rgba(41,49,61,.09); }
.meter-track span { display: block; width: 8%; height: 100%; background: linear-gradient(90deg, #4aa8cc 0%, #ffd54a 58%, #ff8a3d 78%, #e32626 100%); border-radius: inherit; transition: width .12s linear; }
.meter-track i { position: absolute; left: 65%; top: -8px; width: 3px; height: 24px; background: var(--coral); border-radius: 99px; box-shadow: 0 0 0 4px rgba(243,91,75,.12); }

.function-explanation { min-width: 0; }
.function-explanation > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 18px; }
.function-status { display: flex; align-items: center; gap: 18px; margin: 0 0 18px; padding: 22px 24px; background: rgba(255,255,255,.82); border: 1px solid rgba(41,49,61,.09); border-radius: 22px; box-shadow: 0 12px 32px rgba(83,58,24,.07); }
.status-dot { flex: 0 0 auto; width: 17px; height: 17px; background: #4aa8cc; border-radius: 50%; box-shadow: 0 0 0 9px rgba(74,168,204,.14); transition: background .35s ease, box-shadow .35s ease; }
.function-demo.is-hot .status-dot { background: var(--red); box-shadow: 0 0 0 9px rgba(227,38,38,.13); animation: statusPulse 1.1s ease-in-out infinite alternate; }
.function-status small { display: block; margin-bottom: 3px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.function-status h3 { margin: 0; font-size: clamp(25px, 2.4vw, 36px); }
.function-steps { display: grid; gap: 10px; margin: 28px 0 30px; }
.function-steps > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: center; padding: 14px 16px; border: 1px solid rgba(41,49,61,.08); border-radius: 16px; background: rgba(255,255,255,.55); }
.function-steps strong { display: grid; place-items: center; width: 42px; height: 42px; color: var(--orange-dark); background: #fff0d0; border-radius: 13px; font-size: 12px; }
.function-steps p, .function-steps b, .function-steps span { display: block; margin: 0; }
.function-steps b { margin-bottom: 2px; }
.function-steps span { color: var(--muted); font-size: 14px; line-height: 1.4; }
.animation-controls { display: flex; flex-wrap: wrap; gap: 10px; }
.animation-controls button { min-height: 48px; padding: 11px 16px; border: 1px solid rgba(41,49,61,.13); border-radius: 999px; cursor: pointer; font-weight: 900; transition: transform .2s ease, background .2s ease, color .2s ease; }
.animation-controls button:hover { transform: translateY(-2px); }
.animation-state-button { color: var(--ink); background: rgba(255,255,255,.75); }
.animation-state-button.hot-button { color: #8a2b14; background: #ffe2d5; }
.animation-play-button { display: inline-flex; align-items: center; gap: 9px; color: #fff; background: var(--ink); }
.play-symbol { display: inline-grid; place-items: center; width: 22px; height: 22px; font-size: 13px; }

@keyframes heatPulse { from { filter: blur(0); } to { filter: blur(1px); } }
@keyframes statusPulse { from { transform: scale(.92); } to { transform: scale(1.08); } }

@media (max-width: 1260px) {
  :root { --container: 1180px; }
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr); gap: 58px; }
  h1 { font-size: clamp(48px, 5vw, 64px); }
  .function-demo { grid-template-columns: 1fr 1fr; gap: 44px; padding: 38px; }
  .function-visual { min-height: 585px; }
}

@media (max-width: 980px) {
  .hero-title-break { display: none; }
  .function-demo { grid-template-columns: 1fr; }
  .function-visual { width: min(100%, 650px); min-height: 620px; margin-inline: auto; }
  .function-explanation { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .function-demo { padding: 20px; border-radius: 26px; }
  .function-visual { min-height: 500px; padding: 18px; border-radius: 22px; }
  .sticker-stage { width: min(86%, 390px); margin-top: 26px; }
  .threshold-badge { right: -18px; bottom: 12px; width: 104px; height: 104px; border-width: 6px; }
  .threshold-badge strong { font-size: 14px; }
  .function-temperature { align-items: flex-end; }
  .function-temperature span { max-width: 120px; font-size: 10px; }
  .function-explanation > p:not(.eyebrow) { font-size: 16px; }
  .function-status { padding: 18px; }
  .animation-controls { flex-direction: column; }
  .animation-controls button { width: 100%; }
}

@media (max-width: 440px) {
  .function-demo { padding: 14px; }
  .function-visual { min-height: 430px; padding: 14px; }
  .sticker-stage { width: 82%; }
  .threshold-badge { right: -25px; width: 88px; height: 88px; }
  .threshold-badge span { font-size: 8px; }
  .threshold-badge strong { font-size: 12px; }
  .function-steps > div { grid-template-columns: 40px 1fr; padding: 12px; }
  .function-steps strong { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .function-demo.is-hot .heat-rays, .function-demo.is-hot .status-dot { animation: none; }
}

/* Mobile Korrektur nach der breiteren Desktop-Struktur */
@media (max-width: 980px) {
  .hero-grid,
  .benefits-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy,
  .hero-visual,
  .benefits-copy,
  .benefit-cards { min-width: 0; width: 100%; }
  .hero-visual { width: min(88%, 500px); }
}

@media (max-width: 440px) {
  h1 { font-size: clamp(34px, 10vw, 43px); line-height: 1.07; }
}

/* Überschrift auf großen Bildschirmen bewusst in nur zwei Zeilen */
h1 { max-width: 1120px; font-size: clamp(50px, 3.45vw, 60px); }
.hero-title-line { display: inline-block; }
@media (min-width: 1261px) {
  .hero-title-line { white-space: nowrap; }
}
@media (max-width: 980px) {
  .hero-title-line { display: inline; white-space: normal; }
}


/* Neue automatische 2-Spalten-Funktionsdarstellung */
.function-loop {
  --heat-progress: 0;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(420px, 1.22fr);
  gap: clamp(22px, 2.8vw, 42px);
  align-items: stretch;
  padding: clamp(22px, 2.8vw, 40px);
  background: linear-gradient(135deg, #fffaf0 0%, #fff5dc 52%, #ffe9aa 100%);
  border: 1px solid rgba(221, 91, 31, .14);
  border-radius: 40px;
  box-shadow: 0 28px 80px rgba(115, 74, 24, .12);
}
.function-loop-column { min-width: 0; }
.loop-card {
  height: 100%;
  padding: clamp(22px, 2.4vw, 34px);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 30px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.loop-card-header h3 { margin-bottom: 10px; font-size: clamp(25px, 2.1vw, 34px); }
.loop-card-header p:last-child { margin-bottom: 0; color: var(--muted); font-size: 17px; }

.thermometer-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  min-height: 420px;
  margin: 26px 0 20px;
  padding: 22px;
  background: linear-gradient(180deg, #f8fcff, #eef5f8);
  border: 1px solid rgba(41,49,61,.08);
  border-radius: 26px;
}
.thermometer-scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 300px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
}
.thermometer-scale span:nth-child(2) { color: var(--coral); }
.thermometer-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 120px;
  height: 330px;
}
.thermometer-body {
  position: relative;
  width: 54px;
  height: 280px;
  border: 6px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5f9fb 0%, #e7eef2 100%);
  box-shadow: inset 0 8px 18px rgba(41,49,61,.08), 0 18px 42px rgba(41,49,61,.08);
}
.thermometer-body::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 82px;
  height: 82px;
  background: linear-gradient(180deg, #ff8a3d 0%, #e32626 100%);
  border: 8px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 18px 36px rgba(227,38,38,.2);
}
.thermometer-fill {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 9px;
  display: block;
  height: 12%;
  background: linear-gradient(180deg, #ffd54a 0%, #ff8a3d 52%, #e32626 100%);
  border-radius: 999px;
  transition: height .14s linear;
}
.thermometer-marker {
  position: absolute;
  left: calc(100% + 12px);
  bottom: 18%;
  width: 16px;
  height: 16px;
  background: var(--teal);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(20,125,122,.14);
  transform: translateY(50%);
  transition: bottom .14s linear, background .3s ease, box-shadow .3s ease;
}
.thermometer-marker::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 18px;
  height: 3px;
  background: currentColor;
  opacity: .4;
  transform: translateY(-50%);
}
.function-loop.is-hot .thermometer-marker {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(227,38,38,.14);
}
.thermometer-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(41,49,61,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
}
.thermometer-readout span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.thermometer-readout strong {
  color: var(--teal);
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
  transition: color .3s ease;
}
.function-loop.is-hot .thermometer-readout strong { color: var(--red); }

.loop-sticker-stage {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin: 28px auto 24px;
}
.loop-sticker-stage .sticker-state {
  position: absolute;
  inset: 0;
  transition: opacity 1.25s ease-in-out, transform 1.25s cubic-bezier(.22,.74,.2,1), filter 1.25s ease-in-out;
}
.loop-sticker-stage .sticker-state img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(70,45,19,.18);
}
.loop-sticker-stage .sticker-cool {
  opacity: calc(1 - var(--heat-progress));
  transform: scale(calc(1 - (var(--heat-progress) * 0.04)));
  filter: saturate(calc(1 - (var(--heat-progress) * 0.08))) brightness(calc(1 - (var(--heat-progress) * 0.03)));
}
.loop-sticker-stage .sticker-hot {
  opacity: var(--heat-progress);
  transform: scale(calc(.95 + (var(--heat-progress) * 0.05)));
  filter: saturate(calc(.82 + (var(--heat-progress) * 0.18))) brightness(calc(.96 + (var(--heat-progress) * 0.04)));
}
.loop-sticker-stage .threshold-badge {
  position: absolute;
  z-index: 7;
  right: -26px;
  bottom: 28px;
  display: grid;
  place-content: center;
  width: 126px;
  height: 126px;
  color: #fff;
  background: var(--teal);
  border: 7px solid #fff7de;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(20,125,122,.25);
  text-align: center;
  transition: background .4s ease, transform .4s ease;
}
.loop-sticker-stage .threshold-badge span { font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.loop-sticker-stage .threshold-badge strong { font-size: 17px; line-height: 1.15; }
.function-loop.is-hot .loop-sticker-stage .threshold-badge { background: var(--coral); transform: scale(1.06) rotate(4deg); }
.loop-sticker-stage .heat-rays {
  position: absolute;
  z-index: 1;
  inset: -34px;
  opacity: 0;
  transform: scale(.85) rotate(-10deg);
  transition: opacity .6s ease, transform .8s ease;
}
.loop-sticker-stage .heat-rays span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 48%;
  background: linear-gradient(to top, rgba(255,138,61,.1), rgba(243,91,75,.7));
  border-radius: 99px;
  transform-origin: 50% 0;
}
.loop-sticker-stage .heat-rays span:nth-child(1) { transform: rotate(0deg) translateY(-108%); }
.loop-sticker-stage .heat-rays span:nth-child(2) { transform: rotate(60deg) translateY(-108%); }
.loop-sticker-stage .heat-rays span:nth-child(3) { transform: rotate(120deg) translateY(-108%); }
.loop-sticker-stage .heat-rays span:nth-child(4) { transform: rotate(180deg) translateY(-108%); }
.loop-sticker-stage .heat-rays span:nth-child(5) { transform: rotate(240deg) translateY(-108%); }
.loop-sticker-stage .heat-rays span:nth-child(6) { transform: rotate(300deg) translateY(-108%); }
.function-loop.is-hot .loop-sticker-stage .heat-rays {
  opacity: .62;
  transform: scale(1) rotate(0deg);
  animation: heatPulse 1.8s ease-in-out infinite alternate;
}
.loop-status {
  padding: 22px 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(41,49,61,.09);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(83,58,24,.07);
}
.loop-status small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.loop-status h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2vw, 34px);
}
.loop-status p { margin-bottom: 0; color: var(--muted); font-size: 17px; }

@media (max-width: 1260px) {
  .function-loop {
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: 22px;
    padding: 24px;
  }
}

@media (max-width: 980px) {
  .function-loop { grid-template-columns: 1fr; }
  .function-loop .loop-card { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .function-loop { padding: 16px; border-radius: 28px; }
  .loop-card { padding: 18px; border-radius: 22px; }
  .thermometer-panel { min-height: 360px; padding: 18px; }
  .thermometer-visual { width: 100px; height: 300px; }
  .thermometer-body { width: 46px; height: 238px; }
  .thermometer-body::before { width: 72px; height: 72px; bottom: -26px; border-width: 7px; }
  .loop-sticker-stage { width: min(88%, 390px); }
  .loop-sticker-stage .threshold-badge { right: -18px; bottom: 12px; width: 104px; height: 104px; border-width: 6px; }
  .loop-sticker-stage .threshold-badge strong { font-size: 14px; }
  .thermometer-readout { align-items: flex-start; flex-direction: column; }
  .loop-status p, .loop-card-header p:last-child { font-size: 16px; }
}

@media (max-width: 440px) {
  .thermometer-panel { gap: 12px; min-height: 330px; }
  .thermometer-scale { height: 250px; font-size: 12px; }
  .thermometer-visual { width: 82px; height: 270px; }
  .thermometer-body { width: 40px; height: 210px; border-width: 5px; }
  .thermometer-body::before { width: 62px; height: 62px; bottom: -22px; border-width: 6px; }
  .thermometer-fill { left: 7px; right: 7px; bottom: 7px; }
  .thermometer-marker { left: calc(100% + 8px); width: 14px; height: 14px; }
  .loop-sticker-stage .threshold-badge { right: -22px; width: 88px; height: 88px; }
  .loop-sticker-stage .threshold-badge span { font-size: 8px; }
  .loop-sticker-stage .threshold-badge strong { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .function-loop.is-hot .loop-sticker-stage .heat-rays { animation: none; }
}


/* Korrektur: ruhiger Funktionsblock ohne Hitzestrahlen und mit gleicher Innenhöhe */
.function-loop { align-items: stretch; }
.function-loop-column { display: flex; }
.function-loop-column > .loop-card {
  display: grid;
  grid-template-rows: auto minmax(420px, 1fr) auto;
  row-gap: 24px;
  width: 100%;
}
.loop-card-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 150px;
}
.loop-card-header p:last-child {
  margin-bottom: 0;
}
.loop-card-thermometer .thermometer-panel,
.loop-card-sticker .loop-sticker-stage {
  align-self: stretch;
}
.loop-card-thermometer .thermometer-panel {
  min-height: 470px;
  margin: 0;
}
.loop-card-sticker .loop-sticker-stage {
  display: grid;
  place-items: center;
  min-height: 470px;
  margin: 0 auto;
}
.loop-card-thermometer .thermometer-readout,
.loop-card-sticker .loop-status {
  align-self: end;
}
@media (max-width: 760px) {
  .function-loop-column > .loop-card {
    grid-template-rows: auto minmax(340px, 1fr) auto;
    row-gap: 18px;
  }
  .loop-card-header {
    min-height: 0;
  }
  .loop-card-thermometer .thermometer-panel,
  .loop-card-sticker .loop-sticker-stage {
    min-height: 360px;
  }
}


/* Textkorrekturen gemäß Freigabe */
.benefits-title-compact,
.final-cta-title-compact {
  text-wrap: nowrap;
  letter-spacing: -.03em;
}
.benefits-title-compact {
  font-size: clamp(30px, 2.55vw, 44px);
  line-height: 1.08;
}
.final-cta-title-compact {
  font-size: clamp(30px, 2.7vw, 46px);
  line-height: 1.08;
}
.footer-info-compact {
  max-width: 660px;
}
@media (max-width: 1100px) {
  .benefits-title-compact,
  .final-cta-title-compact {
    text-wrap: balance;
    white-space: normal;
  }
}
@media (max-width: 760px) {
  .benefits-title-compact,
  .final-cta-title-compact {
    font-size: clamp(30px, 7vw, 40px);
  }
  .footer-info-compact br {
    display: none;
  }
}

/* ==========================================================
   Finale mobile Optimierung – Desktop ab 981 px unverändert
   ========================================================== */
@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 36px, 760px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 72px 0 82px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .hero-copy,
  .hero-visual,
  .benefits-copy,
  .benefit-cards,
  .product-panel,
  .faq-grid,
  .final-cta-inner,
  .footer-grid,
  .function-loop,
  .function-loop-column,
  .loop-card {
    min-width: 0;
    max-width: 100%;
  }

  h1 {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(44px, 7vw, 58px);
    line-height: 1.05;
  }

  .hero-title-line {
    display: inline;
    white-space: normal;
  }

  .hero-text {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-visual {
    width: min(72vw, 460px);
  }

  .section-heading {
    max-width: 720px;
    margin-bottom: 38px;
  }

  .function-loop {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    width: 100%;
  }

  .function-loop-column {
    display: block;
    width: 100%;
  }

  .function-loop-column > .loop-card {
    grid-template-rows: auto auto auto;
    height: auto;
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .loop-card-header {
    min-height: 0;
  }

  .loop-card-thermometer .thermometer-panel {
    min-height: 390px;
    margin: 0;
  }

  .loop-card-sticker .loop-sticker-stage {
    width: min(100%, 420px);
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .loop-sticker-stage .sticker-state,
  .loop-sticker-stage .sticker-state img {
    width: 100%;
    height: 100%;
  }

  .loop-sticker-stage .sticker-state img {
    object-fit: contain;
  }

  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .benefit-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .final-cta-inner,
  .footer-grid {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 58px 0;
  }

  .sun-strip {
    gap: 10px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .sun-strip span:nth-child(2),
  .sun-strip span:nth-child(3) {
    display: none;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 48px 0 62px;
  }

  .hero-grid {
    gap: 38px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(34px, 9.6vw, 43px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.08;
  }

  h3 {
    font-size: 23px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .hero-text,
  .section-heading > p:last-child {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .quick-facts li {
    width: 100%;
    text-align: left;
  }

  .hero-visual {
    width: min(82vw, 340px);
  }

  .heat-orbit {
    inset: -8px;
  }

  .temperature-badge {
    right: 0;
    bottom: 8px;
    width: 88px;
    height: 88px;
    border-width: 5px;
  }

  .temperature-badge strong {
    font-size: 25px;
  }

  .temperature-badge span {
    font-size: 9px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .function-loop {
    gap: 18px;
    padding: 10px;
    border-radius: 24px;
  }

  .function-loop-column > .loop-card {
    grid-template-rows: auto auto auto;
    row-gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }

  .loop-card-header h3 {
    margin-bottom: 8px;
    font-size: clamp(24px, 7vw, 29px);
  }

  .loop-card-header p:last-child,
  .loop-status p {
    font-size: 15px;
    line-height: 1.55;
  }

  .loop-card-thermometer .thermometer-panel {
    min-height: 300px;
    padding: 14px;
    border-radius: 20px;
  }

  .thermometer-panel {
    gap: 14px;
  }

  .thermometer-scale {
    height: 230px;
    font-size: 12px;
  }

  .thermometer-visual {
    width: 82px;
    height: 250px;
  }

  .thermometer-body {
    width: 40px;
    height: 196px;
    border-width: 5px;
  }

  .thermometer-body::before {
    bottom: -22px;
    width: 62px;
    height: 62px;
    border-width: 6px;
  }

  .thermometer-fill {
    left: 7px;
    right: 7px;
    bottom: 7px;
  }

  .thermometer-marker {
    left: calc(100% + 8px);
    width: 14px;
    height: 14px;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(20,125,122,.14);
  }

  .thermometer-marker::before {
    width: 12px;
  }

  .thermometer-readout {
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .thermometer-readout span {
    max-width: 150px;
    font-size: 10px;
    line-height: 1.35;
  }

  .thermometer-readout strong {
    flex: 0 0 auto;
    font-size: 31px;
  }

  .loop-card-sticker .loop-sticker-stage {
    width: min(100%, 310px);
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: visible;
  }

  .loop-sticker-stage .sticker-state img {
    object-fit: contain;
  }

  .loop-sticker-stage .threshold-badge {
    right: 2px;
    bottom: 6px;
    width: 78px;
    height: 78px;
    border-width: 5px;
  }

  .loop-sticker-stage .threshold-badge span {
    font-size: 7px;
  }

  .loop-sticker-stage .threshold-badge strong {
    font-size: 11px;
  }

  .loop-status {
    padding: 16px;
    border-radius: 18px;
  }

  .loop-status small {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .loop-status h3 {
    margin-bottom: 6px;
    font-size: 23px;
  }

  .benefits-title-compact,
  .final-cta-title-compact {
    font-size: clamp(30px, 8vw, 37px);
    text-wrap: balance;
    white-space: normal;
  }

  .benefits-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .notice {
    padding: 17px 18px;
    font-size: 15px;
  }

  .benefit-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .benefit-cards article {
    padding: 20px;
    border-radius: 18px;
  }

  .product-panel {
    gap: 22px;
    padding: 28px 20px;
    border-radius: 24px;
  }

  .product-panel .button {
    width: 100%;
  }

  .faq-grid {
    gap: 20px;
  }

  summary {
    padding: 20px 40px 20px 0;
    font-size: 17px;
    line-height: 1.35;
  }

  details p {
    padding-right: 12px;
    font-size: 15px;
  }

  .final-cta {
    padding: 52px 0;
  }

  .final-cta-inner {
    align-items: stretch;
    gap: 24px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding: 48px 0 30px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-info-compact {
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-info-compact br {
    display: block;
  }

  .legal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .legal-links a {
    min-width: 0;
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-bottom: 68px;
  }
}

@media (max-width: 440px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero-visual {
    width: min(84vw, 315px);
  }

  .function-loop {
    padding: 8px;
  }

  .function-loop-column > .loop-card {
    padding: 14px;
  }

  .loop-card-thermometer .thermometer-panel {
    min-height: 280px;
  }

  .thermometer-scale {
    height: 215px;
  }

  .thermometer-visual {
    height: 235px;
  }

  .thermometer-body {
    height: 184px;
  }

  .loop-card-sticker .loop-sticker-stage {
    width: min(100%, 286px);
  }

  .loop-sticker-stage .threshold-badge {
    width: 72px;
    height: 72px;
  }

  .legal-links {
    grid-template-columns: minmax(0, 1fr);
  }
}
