:root {
  color-scheme: light;
  --bg: #f5f9fd;
  --surface: #ffffff;
  --surface-soft: #eaf2f9;
  --surface-teal: #ddf8fa;
  --text: #071f3d;
  --text-soft: #5d7088;
  --primary: #2dc7d3;
  --primary-strong: #0faaba;
  --primary-dark: #087e8c;
  --blue: #2563eb;
  --blue-dark: #1749b4;
  --navy: #07182c;
  --navy-soft: #0c233d;
  --border: #d6e3ee;
  --success: #159a8c;
  --danger: #b63b55;
  --shadow: 0 24px 70px rgba(7, 31, 61, .13);
  --shadow-soft: 0 12px 34px rgba(7, 31, 61, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #061426;
  --surface: #0c2038;
  --surface-soft: #132a45;
  --surface-teal: #123f49;
  --text: #f3faff;
  --text-soft: #a8b9cc;
  --primary: #35c9d3;
  --primary-strong: #35c9d3;
  --primary-dark: #55d9e1;
  --blue: #65a2ff;
  --blue-dark: #90bcff;
  --navy: #030d19;
  --navy-soft: #0b1c31;
  --border: #24415e;
  --success: #55d5bf;
  --danger: #ff9eb1;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--primary) 70%, white); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-soft { background: color-mix(in srgb, var(--surface-soft) 58%, transparent); border-block: 1px solid color-mix(in srgb, var(--border) 70%, transparent); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head .lead { margin-top: 18px; }
.section-head-wide { max-width: none; display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 50px; }
.section-head-wide .lead { margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--primary) 42%, var(--border));
  border-radius: 999px;
  background: var(--surface-teal);
  color: var(--primary-dark);
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.eyebrow-inverse { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: #fff; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6.2vw, 5.45rem); }
h2 { font-size: clamp(2.05rem, 4.2vw, 3.55rem); }
h3 { font-size: 1.3rem; }
p { margin: 0; }
.lead { color: var(--text-soft); font-size: clamp(1.08rem, 1.9vw, 1.25rem); max-width: 720px; }
.muted { color: var(--text-soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 950; font-size: 1.22rem; letter-spacing: -.03em; }
.brand img { width: 44px; height: 44px; border-radius: 13px; }
.brand > span > span { color: var(--primary-strong); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { text-decoration: none; color: var(--text-soft); padding: 10px 11px; border-radius: 10px; font-weight: 740; font-size: .95rem; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); background: var(--surface-soft); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 12px; text-decoration: none; color: #fff; background: var(--navy); font-size: .9rem; font-weight: 850; }
html[data-theme="dark"] .nav-cta { color: #061426; background: var(--primary); }
.icon-button, .menu-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  cursor: pointer;
}
.icon-button:hover, .menu-button:hover { border-color: var(--primary); }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 84% 20%, rgba(45, 199, 211, .12), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(37, 99, 235, .08), transparent 30%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(48px, 7vw, 96px); }
.status-line { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--text-soft); font-size: .86rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary) 15%, transparent); }
.hero-copy h1 span { display: block; color: var(--primary-strong); }
.hero-copy .lead { margin-top: 25px; max-width: 670px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 880;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--blue), var(--primary-strong)); color: #fff; box-shadow: 0 14px 32px rgba(18, 184, 200, .24); }
.button-secondary { background: var(--surface); border-color: var(--border); color: var(--text); }
.button-light { background: #fff; color: #071f3d; border-color: rgba(255,255,255,.3); }
.button-disabled { cursor: default; opacity: .76; }
.button-disabled:hover { transform: none; }
.release-note { display: flex; align-items: center; gap: 9px; margin-top: 18px; color: var(--text-soft); font-size: .9rem; }
.release-note svg { flex: 0 0 auto; color: var(--primary-dark); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 19px; margin-top: 27px; color: var(--text-soft); font-size: .93rem; font-weight: 720; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { color: var(--success); }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 740px; isolation: isolate; }
.hero-glow { position: absolute; z-index: -1; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(45,199,211,.28), rgba(37,99,235,.1) 52%, transparent 72%); }
.device { position: relative; overflow: hidden; background: #020a14; border: 10px solid #020a14; border-radius: 40px; box-shadow: 0 34px 80px rgba(3, 14, 29, .28); }
.device::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 29px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.device img { width: 100%; height: auto; }
.device-hero { width: min(100%, 356px); transform: rotate(1.5deg); }
.device-speaker { position: absolute; z-index: 2; top: 7px; left: 50%; width: 86px; height: 6px; transform: translateX(-50%); border-radius: 999px; background: rgba(255,255,255,.15); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid color-mix(in srgb, var(--border) 76%, transparent); border-radius: 17px; background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); }
.floating-card span { display: block; color: var(--text-soft); font-size: .78rem; font-weight: 740; }
.floating-card strong { display: block; line-height: 1.25; }
.floating-card small { display: block; color: var(--text-soft); font-size: .72rem; }
.floating-cost { top: 17%; left: -2%; flex-direction: column; align-items: flex-start; gap: 2px; }
.floating-cost strong { font-size: 1.4rem; }
.floating-local { right: -3%; bottom: 17%; }
.floating-icon { width: 40px; height: 40px; display: grid !important; place-items: center; border-radius: 12px; background: var(--surface-teal); color: var(--primary-dark) !important; font-size: 1.15rem !important; font-weight: 950 !important; }

.proof-strip { border-block: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 78%, transparent); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { padding: 22px 26px; text-align: center; border-right: 1px solid var(--border); }
.proof-grid > div:first-child { border-left: 1px solid var(--border); }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { font-size: 1rem; }
.proof-grid span { margin-top: 2px; color: var(--text-soft); font-size: .84rem; }

.app-showcase { overflow: hidden; }
.screen-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.screen-card { position: relative; overflow: hidden; min-height: 650px; display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 28px; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-soft); }
.screen-card-featured { grid-column: 1 / -1; min-height: 610px; grid-template-columns: 1.05fr .7fr; padding-inline: clamp(34px, 6vw, 78px); }
.screen-card:not(.screen-card-featured) { grid-template-columns: 1fr; align-items: start; }
.screen-card:not(.screen-card-featured) .device { margin-top: 4px; }
.screen-copy { position: relative; z-index: 2; }
.screen-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 22px; border-radius: 13px; background: var(--surface-teal); color: var(--primary-dark); font-weight: 950; }
.screen-copy h3 { font-size: clamp(1.6rem, 3vw, 2.45rem); }
.screen-copy > p { margin-top: 15px; color: var(--text-soft); font-size: 1.03rem; }
.check-list { display: grid; gap: 9px; margin: 23px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--text-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 950; }
.device-showcase { width: min(100%, 300px); justify-self: center; border-width: 8px; border-radius: 34px; box-shadow: 0 26px 60px rgba(3, 14, 29, .2); }
.screen-card-featured .device-showcase { width: min(100%, 330px); }
.screen-card::before { content: ""; position: absolute; right: -120px; bottom: -150px; width: 360px; height: 360px; border-radius: 50%; background: var(--surface-teal); opacity: .68; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.benefit-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--surface-teal); color: var(--primary-dark); }
.benefit-kicker { margin-top: 24px; color: var(--primary-dark); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.benefit-card h3 { margin-top: 8px; font-size: 1.4rem; }
.benefit-card > p:last-child { margin-top: 13px; color: var(--text-soft); }

.privacy-band { position: relative; overflow: hidden; padding: clamp(34px, 6vw, 68px); border-radius: var(--radius-xl); background: linear-gradient(135deg, #07182c, #0b3156 58%, #0b6170); color: #fff; display: grid; grid-template-columns: 1.22fr .78fr; align-items: center; gap: 48px; box-shadow: var(--shadow); }
.privacy-band::before { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; top: -210px; border-radius: 50%; background: rgba(53,201,211,.15); }
.privacy-copy, .privacy-visual { position: relative; z-index: 1; }
.privacy-copy h2 { max-width: 760px; }
.privacy-copy > p:not(.eyebrow) { margin-top: 19px; color: rgba(255,255,255,.76); font-size: 1.08rem; max-width: 740px; }
.privacy-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 20px; margin-top: 25px; }
.privacy-list span { display: flex; align-items: center; gap: 9px; font-weight: 760; }
.privacy-visual { min-height: 300px; display: grid; place-items: center; }
.shield-orbit { width: 190px; height: 190px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 30px rgba(255,255,255,.035), 0 0 0 60px rgba(255,255,255,.018); }
.privacy-tag { position: absolute; padding: 10px 14px; border-radius: 13px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); font-size: .84rem; font-weight: 820; }
.privacy-tag-one { top: 17%; right: 0; }
.privacy-tag-two { bottom: 13%; left: 0; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.faq-heading { position: sticky; top: 112px; margin: 0; }
.faq { display: grid; gap: 12px; }
details { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 0 21px; }
summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; flex: 0 0 auto; font-size: 1.5rem; color: var(--primary); }
details[open] { border-color: color-mix(in srgb, var(--primary) 52%, var(--border)); }
details[open] summary::after { content: "–"; }
details p { color: var(--text-soft); padding: 0 0 21px; max-width: 850px; }

.cta { position: relative; overflow: hidden; padding: 46px 50px; border-radius: var(--radius-xl); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.cta::before { content: ""; position: absolute; inset: auto -100px -210px auto; width: 410px; height: 410px; border-radius: 50%; background: var(--surface-teal); opacity: .78; }
.cta > * { position: relative; z-index: 1; }
.cta p:not(.eyebrow) { margin-top: 15px; color: var(--text-soft); max-width: 690px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 190px; }

.site-footer { padding: 58px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr .7fr; gap: 36px; }
.footer-brand p { color: var(--text-soft); max-width: 420px; margin-top: 14px; }
.footer-title { font-weight: 900; margin-bottom: 13px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { text-decoration: none; color: var(--text-soft); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { margin-top: 40px; padding-top: 23px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 20px; color: var(--text-soft); font-size: .9rem; }

/* Unterseiten */
.page-hero { padding: 76px 0 52px; }
.page-hero .lead { margin-top: 18px; }
.prose { max-width: 860px; }
.prose section { padding: 29px 0; border-bottom: 1px solid var(--border); }
.prose h2 { font-size: 1.58rem; letter-spacing: -.02em; }
.prose h3 { margin-top: 22px; font-size: 1.08rem; letter-spacing: -.01em; }
.prose p, .prose ul, .prose ol { margin-top: 13px; color: var(--text-soft); }
.prose li + li { margin-top: 7px; }
.notice { padding: 18px 20px; border: 1px solid #f0b9c5; background: #fdecef; color: #762239; border-radius: 16px; }
html[data-theme="dark"] .notice { background: #3d1c2a; border-color: #71334a; color: #ffced8; }
.info-box { padding: 18px 20px; border: 1px solid color-mix(in srgb, var(--primary) 45%, var(--border)); background: var(--surface-teal); border-radius: 16px; color: var(--text); }
.contact-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 29px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg); }
.contact-card p { margin-top: 8px; color: var(--text-soft); }

/* Kompatibilität mit älteren Inhaltsblöcken */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.card { padding: 27px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--surface-teal); color: var(--primary-dark); }
.card h3 { margin-top: 19px; }
.card p { margin-top: 10px; color: var(--text-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 27px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); }
.step::before { counter-increment: step; content: counter(step); width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--primary)); color: #fff; font-weight: 900; }
.step h3 { margin-top: 18px; }
.step p { margin-top: 9px; color: var(--text-soft); }

@media (max-width: 1080px) {
  .site-nav a { padding-inline: 8px; font-size: .91rem; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 44px; }
  .floating-cost { left: -4%; }
  .floating-local { right: -4%; }
}

@media (max-width: 920px) {
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 68px; padding: 10px; flex-direction: column; align-items: stretch; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 13px; }
  .menu-button { display: inline-grid; }
  .hero { padding-top: 62px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .status-line { justify-content: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .trust-row, .release-note { justify-content: center; }
  .hero-visual { min-height: 720px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(3) { border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
  .proof-grid > div:nth-child(4) { border-top: 1px solid var(--border); }
  .section-head-wide { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .screen-card, .screen-card-featured { grid-template-columns: 1fr .75fr; padding-inline: 34px; }
  .screen-card:not(.screen-card-featured) { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .privacy-band { grid-template-columns: 1fr; }
  .privacy-visual { min-height: 250px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .cta { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .section { padding: 74px 0; }
  .section-tight { padding: 52px 0; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .hero { padding: 48px 0 72px; }
  .hero-copy h1 span { display: inline; }
  .hero-actions .button { width: 100%; }
  .release-note { align-items: flex-start; }
  .trust-row { display: grid; grid-template-columns: 1fr; justify-items: start; width: fit-content; margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 620px; margin-top: 2px; }
  .hero-glow { width: 420px; height: 420px; }
  .device-hero { width: min(84vw, 310px); }
  .floating-card { padding: 11px 13px; }
  .floating-cost { top: 15%; left: 0; }
  .floating-local { right: 0; bottom: 13%; }
  .floating-local small { display: none; }
  .proof-grid > div { padding: 18px 12px; }
  .screen-grid { grid-template-columns: 1fr; gap: 18px; }
  .screen-card, .screen-card-featured, .screen-card:not(.screen-card-featured) { grid-column: auto; grid-template-columns: 1fr; min-height: 0; padding: 28px 22px 0; }
  .screen-card .device-showcase, .screen-card-featured .device-showcase { width: min(78vw, 300px); margin-top: 12px; }
  .check-list { display: none; }
  .benefit-card { padding: 26px 23px; }
  .privacy-band { padding: 30px 22px; gap: 22px; }
  .privacy-list { grid-template-columns: 1fr; }
  .privacy-visual { min-height: 230px; }
  .shield-orbit { width: 150px; height: 150px; box-shadow: 0 0 0 22px rgba(255,255,255,.035), 0 0 0 44px rgba(255,255,255,.018); }
  .privacy-tag-one { right: 0; }
  .privacy-tag-two { left: 0; }
  .cta { padding: 32px 23px; }
  .cta-actions { display: grid; grid-template-columns: 1fr; }
  .cards, .steps, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .status-line { font-size: .75rem; }
  .hero-visual { min-height: 560px; }
  .floating-cost { left: -3px; }
  .floating-local { right: -3px; }
  .floating-card strong { font-size: .86rem; }
  .floating-cost strong { font-size: 1.15rem; }
  .proof-grid strong { font-size: .92rem; }
  .proof-grid span { font-size: .77rem; }
}

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


/* Geschlossener Beta-Ablauf */
.beta-section { scroll-margin-top: 76px; background: color-mix(in srgb, var(--surface-soft) 58%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent); }
.beta-heading { margin-inline: auto; text-align: center; }
.beta-heading .lead { margin-inline: auto; }
.beta-account-note { max-width: 900px; margin: 0 auto 28px; display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; border: 1px solid color-mix(in srgb, var(--primary) 48%, var(--border)); border-radius: 18px; background: var(--surface-teal); }
.beta-account-note svg { flex: 0 0 auto; margin-top: 2px; color: var(--primary-dark); }
.beta-account-note strong, .beta-account-note span { display: block; }
.beta-account-note span { margin-top: 3px; color: var(--text-soft); }
.beta-steps { align-items: stretch; }
.beta-step { display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
.beta-step::before { width: 46px; height: 46px; border-radius: 14px; font-size: 1.08rem; }
.beta-step-label { margin: -42px 0 0 59px !important; min-height: 32px; color: var(--primary-dark) !important; font-size: .76rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.beta-step h3 { margin-top: 20px; font-size: 1.42rem; }
.beta-step > p:not(.beta-step-label) { flex: 1; }
.beta-step-button { width: 100%; margin-top: 24px; }
.beta-aftercare { max-width: 900px; margin: 28px auto 0; padding: 20px 22px; text-align: center; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }
.beta-aftercare strong, .beta-aftercare span { display: block; }
.beta-aftercare span { margin-top: 5px; color: var(--text-soft); }
@media (max-width: 700px) {
  .beta-heading { text-align: left; }
  .beta-account-note { padding: 16px; }
  .beta-step { padding: 23px; }
  .beta-aftercare { text-align: left; padding: 18px; }
}
