

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: fallback;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: fallback;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: fallback;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: fallback;
}

@font-face {
  font-family: 'Source Serif';
  src: url('../fonts/SourceSerif-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: fallback;
}
@font-face {
  font-family: 'Source Serif';
  src: url('../fonts/SourceSerif-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: fallback;
}
@font-face {
  font-family: 'Source Serif';
  src: url('../fonts/SourceSerif-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: fallback;
}

:root {
  --ink: #1D1D1F;
  --body-c: #424245;
  --muted: #6E6E73;
  --paper: #FFFFFF;
  --soft: #F5F5F7;
  --dark: #161617;
  --line: #E8E8ED;
  --yellow: #ECCF01;
  --gold: #C4AB00;
  --gold-deep: #877600;
  --yellow-soft: #FBF5B0;
  --display: 'Inter Display', 'Inter', 'Segoe UI', Arial, sans-serif;
  --sans: 'Inter', 'Segoe UI', Arial, sans-serif;
  --serif: 'Source Serif', Charter, 'Iowan Old Style', Georgia, serif;
  --edge: max(22px, calc(50vw - 540px));   
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

html, body {
  
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--body-c);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
section { scroll-margin-top: 64px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 99;
  background: var(--ink); color: #fff; padding: 8px 16px; border-radius: 8px;
}
.skip-link:focus-visible { left: 8px; }

.wrap { padding-inline: var(--edge); }


.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 56px;
}
.logo img { height: 36px; width: auto; }

.nav { display: flex; align-items: center; gap: 20px; }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--ink); opacity: 0.85; white-space: nowrap; }
.nav a:hover { opacity: 1; }


.menu-btn {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin-right: -10px;
  background: none; border: 0; border-radius: 10px;
  cursor: pointer;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, background 0.2s ease;
}
.menu-icon { position: relative; }
.menu-icon::before,
.menu-icon::after { content: ''; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.site-header.nav-open .menu-icon { background: transparent; }
.site-header.nav-open .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.site-header.nav-open .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

.btn-pill {
  background: var(--yellow);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 16px;
  transition: transform 0.15s ease;
}
.btn-pill:hover { transform: scale(1.04); }

.offerbar {
  background: var(--yellow-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 13.5px;
  color: var(--ink);
  padding: 8px var(--edge);
}
.offerbar a { font-weight: 600; color: var(--gold-deep); white-space: nowrap; }
.offerbar a:hover { text-decoration: underline; }


.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
h1, h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.section { padding-block: 110px; }
.section-soft { background: var(--soft); }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.sec-head h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin-bottom: 16px; }
.sec-head .sub { font-size: 19px; color: var(--muted); }
.sec-head .u {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
}

.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  border-radius: 999px;
  padding: 13px 30px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: scale(1.03); box-shadow: 0 8px 26px rgba(196, 171, 0, 0.35); }
.link-more { font-size: 17px; font-weight: 500; color: var(--gold-deep); }
.link-more:hover { text-decoration: underline; }


.hero { text-align: center; padding: 96px var(--edge) 104px; }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1.03;
  margin-bottom: 24px;
}
.hero h1 .quiet { color: var(--muted); }
.hero .lead {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--muted);
  max-width: 62ch;
  margin: 0 auto 34px;
}
.hero-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 26px; align-items: center; margin-bottom: 40px; }
.claims { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; }
.claims li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--muted); white-space: nowrap; }
.claims .tick { color: var(--gold-deep); font-weight: 600; }


.build-track { height: auto; }
.build-stage {
  position: static;
  min-height: min(100vh, 760px);
  padding-block: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
  background: var(--dark);
  color: #F5F5F7;
  padding-inline: var(--edge);
}
.build-head { text-align: center; }
.build-head .eyebrow { color: var(--yellow); }
.build-head h2 { font-size: clamp(30px, 3.8vw, 46px); color: #fff; }

.blocks { display: flex; flex-direction: column; gap: 14px; width: min(600px, 92vw); }
.block {
  position: relative;   
  border-radius: var(--radius);
  padding: 22px 28px;
}
.layer-icon {
  position: absolute; top: 20px; right: 22px;
  width: 24px; height: 24px;
  opacity: 0.55;
}
.layer-icon svg { display: block; width: 100%; height: 100%; }
.block h3 { font-family: var(--display); font-size: 21px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.block p { font-size: 15.5px; line-height: 1.5; }
.b-evidence { background: var(--yellow); color: var(--ink); box-shadow: 0 14px 44px rgba(236, 207, 1, 0.35); }
.b-evidence p { color: #3F3A00; }
.b-compliance { background: #2A2A2C; border: 1px solid #3A3A3C; color: #F5F5F7; }
.b-compliance p, .b-data p { color: #A1A1A6; }
.b-data { background: #202022; border: 1px solid #313133; color: #F5F5F7; }


html.js:not(.no-anim) .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js:not(.no-anim) .reveal.in { opacity: 1; transform: none; }
html.js:not(.no-anim) .reveal:nth-child(2) { transition-delay: 0.08s; }
html.js:not(.no-anim) .reveal:nth-child(3) { transition-delay: 0.16s; }
html.js:not(.no-anim) .reveal:nth-child(4) { transition-delay: 0.24s; }

html.js:not(.no-anim) .reveal-right {
  opacity: 0;
  transform: translateX(84px);
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js:not(.no-anim) .reveal-right.in { opacity: 1; transform: none; }
html.js:not(.no-anim) .reveal-right:nth-child(2) { transition-delay: 0.1s; }
html.js:not(.no-anim) .reveal-right:nth-child(3) { transition-delay: 0.2s; }
html.js:not(.no-anim) .reveal-right:nth-child(4) { transition-delay: 0.3s; }


.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.persona {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.persona .role {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.persona blockquote {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
  min-height: 84px;
}
.persona p { font-size: 15.5px; color: var(--muted); }


.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.module {
  display: flex; flex-direction: column;
  background: var(--soft);
  border-radius: var(--radius);
  padding: 30px 28px 24px;
}
.module .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow);
  border-radius: 12px;
  color: var(--ink);
  margin-bottom: 18px;
}
.module .icon svg { width: 24px; height: 24px; }
.module h3 { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 8px; }
.module p { font-size: 15.5px; color: var(--muted); margin-bottom: 18px; }
.law {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-deep);
  background: var(--yellow-soft);
  border-radius: 999px;
  padding: 4px 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.law:hover { background: var(--yellow); color: var(--ink); }


@media (min-width: 901px) { .module { min-height: 350px; } }
.module { perspective: 1400px; }

html.js .module:has(.card-inner) { padding: 0; background: none; }
.card-inner {
  position: relative;
  flex: 1;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
html.no-anim .card-inner, html:not(.js) .card-inner { transition: none; }
.module.flipped .card-inner { transform: rotateY(180deg); }
.card-face {
  display: flex; flex-direction: column;
  background: var(--soft);
  border-radius: var(--radius);
  padding: 30px 28px 24px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.card-front { position: relative; min-height: 100%; }
.card-back {
  position: absolute; inset: 0;
  transform: rotateY(180deg);
  background: var(--ink);
}
.card-back h3 { color: #fff; font-size: 15px; line-height: 1.35; margin-bottom: 10px; }
.card-back .law-citation {
  color: var(--yellow);
  font-size: 12.5px;
  line-height: 1.5;
  height: auto;
  overflow: visible;
  flex: 0 0 auto;
  margin-bottom: 12px;
}

.card-back .law-scroll {
  position: relative;
  flex: 1;
  min-height: 0;
  margin-bottom: 14px;
}
.card-back .law-scroll::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 34px;
  background: linear-gradient(to top, var(--ink), rgba(29, 29, 31, 0));
  pointer-events: none;
}
.card-back p {
  white-space: pre-line;
  font-size: 12.5px;
  line-height: 1.5;
  color: #C7C7CC;
  height: 100%;
  overflow-y: auto;
  margin: 0;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #6E6E73 transparent;
  overscroll-behavior: contain;
}
.card-back p::-webkit-scrollbar { width: 6px; }
.card-back p::-webkit-scrollbar-thumb { background: #6E6E73; border-radius: 3px; }
.card-back p::-webkit-scrollbar-track { background: transparent; }
.law-back { background: var(--yellow); color: var(--ink); }
.law-back:hover { background: #fff; }
.module-note { text-align: center; font-size: 15px; color: var(--muted); margin-top: 40px; }


#ansatz { overflow: hidden; }   
.pillar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.pillar {
  background: var(--paper);
  border-top: 6px solid var(--yellow);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 26px 22px 30px;
  min-height: 340px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.pillar .num {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--gold-deep);
  background: var(--yellow-soft);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 14px;
}
.pillar h3 { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 8px; }
.pillar p { font-size: 15.5px; color: var(--muted); }


.founder-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); grid-auto-rows: 1fr; justify-content: center; gap: 26px; }
.founder {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.founder img {
  width: 116px; height: 116px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--yellow);
}
.founder .role {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.founder h3 { font-family: var(--display); font-size: 23px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 10px; }
.founder p { font-size: 15px; color: var(--muted); text-align: left; }
.founder .bio { margin-top: 6px; }

.stats { display: flex; justify-content: center; gap: 70px; margin-top: 64px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .n { font-family: var(--display); font-size: 52px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.stat .l { font-size: 14.5px; color: var(--muted); margin-top: 8px; }


.pilot { background: #304E78; color: #F5F7FA; text-align: center; }
.pilot .eyebrow { color: var(--yellow); }
.pilot h2 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.08; margin-bottom: 18px; }
.pilot .lead { font-size: 19px; color: #D9E3F2; max-width: 68ch; margin: 0 auto 36px; }
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: 14px 40px;
  margin-bottom: 44px;
  text-align: left;
}
.benefits li { display: flex; align-items: baseline; gap: 10px; font-size: 16px; color: #F1F5FA; }
.benefits .tick { color: var(--yellow); font-weight: 600; }


html.js:not(.no-anim) .benefits li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js:not(.no-anim) .benefits li:nth-child(2) { transition-delay: 0.5s; }
html.js:not(.no-anim) .benefits li:nth-child(3) { transition-delay: 1s; }
html.js:not(.no-anim) .benefits li:nth-child(4) { transition-delay: 1.5s; }
html.js:not(.no-anim) .benefits.run li { opacity: 1; transform: none; }
html.js:not(.no-anim) .benefits .tick { opacity: 0; transform: scale(0.2); }
html.js:not(.no-anim) .benefits.run .tick {
  animation: tick-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
html.js:not(.no-anim) .benefits.run li:nth-child(1) .tick { animation-delay: 0.3s; }
html.js:not(.no-anim) .benefits.run li:nth-child(2) .tick { animation-delay: 0.8s; }
html.js:not(.no-anim) .benefits.run li:nth-child(3) .tick { animation-delay: 1.3s; }
html.js:not(.no-anim) .benefits.run li:nth-child(4) .tick { animation-delay: 1.8s; }
@keyframes tick-pop {
  0% { opacity: 0; transform: scale(0.2); }
  60% { opacity: 1; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}
.pilot .btn { font-size: 18px; padding: 15px 38px; }
.btn.holo { position: relative; overflow: hidden; }
.btn.holo::after {
  content: '';
  position: absolute;
  top: -20%; bottom: -20%;
  width: 34%; left: -60%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.btn.holo.flash::after { animation: holo-sweep 1.15s ease-out 1 both; }
@keyframes holo-sweep {
  0% { left: -60%; opacity: 0; }
  12% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
.pilot-contact { margin-top: 44px; font-size: 16px; color: #D9E3F2; }
.pilot-contact a { color: #F5F5F7; font-weight: 500; }
.pilot-contact a:hover { text-decoration: underline; }
.pilot .privacy { font-size: 13px; color: #AABFE0; margin-top: 26px; }


.site-footer { background: var(--soft); }
.site-footer .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 28px;
  padding-block: 22px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer .foot-brand { display: flex; align-items: center; gap: 12px; }
.site-footer .foot-brand img { height: 26px; width: auto; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }
.site-footer .ai-disclosure {
  flex: 0 0 100%;
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.site-footer .ai-disclosure strong { color: var(--ink); font-weight: 600; }


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

@media (max-width: 900px) {
  .persona-grid { grid-template-columns: 1fr; }
  .persona blockquote { min-height: 0; }
  .module-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .pillar { min-height: 0; }
  .founder-grid { grid-template-columns: minmax(0, 460px); grid-auto-rows: auto; }
  .benefits { grid-template-columns: minmax(0, 420px); }
  .section { padding-block: 72px; }
  .sec-head { margin-bottom: 40px; }
}
@media (max-width: 720px) {
  
  .logo img { height: 32px; }
  html.js .menu-btn { display: flex; }
  html.js .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
    padding: 4px var(--edge) 16px;
  }
  html.js .site-header.nav-open .nav { display: flex; }
  html.js .nav a { padding: 13px 2px; font-size: 16px; border-bottom: 1px solid var(--line); }
  html.js .nav .btn-pill {
    margin-top: 14px;
    border-bottom: 0;
    text-align: center;
    padding: 12px 16px;
    font-size: 15px;
  }
  
  html:not(.js) .site-header .wrap { height: auto; flex-wrap: wrap; padding-block: 10px; row-gap: 6px; }
  html:not(.js) .nav { flex-wrap: wrap; gap: 8px 18px; }

  .build-stage { gap: 24px; }
  .block { padding: 16px 18px; }
  .layer-icon { top: 14px; right: 16px; width: 20px; height: 20px; }
  .block h3 { font-size: 18px; }
  .block p { font-size: 14px; }
  html.js:not(.no-anim) .reveal-right { transform: translateX(36px); }
  .hero { padding-block: 64px 72px; }
  .build-stage { min-height: 0; padding-block: 72px; }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
    margin-top: 44px;
  }
  .stat .n { font-size: 32px; }
  .stat .l { font-size: 12.5px; margin-top: 4px; }
  .site-footer .wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    padding-block: 26px 30px;
  }
  .site-footer .foot-brand {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }
  .site-footer .foot-brand span {
    display: block;
    width: 100%;
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .site-footer nav a { min-width: 0; padding-block: 3px; overflow-wrap: anywhere; }
  .site-footer nav a[href^="mailto:"] { grid-column: 1 / -1; }
  .site-footer .ai-disclosure {
    width: 100%;
    margin-top: 0;
    padding-top: 18px;
  }
  .pillar-grid { grid-template-columns: 1fr; }
}




.sov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sov {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.sov h3 {
  font-family: var(--display);
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.sov p { font-size: 15.5px; color: var(--muted); }

.contrast {
  margin-top: 40px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px 34px;
  color: #F5F5F7;
}
.contrast h3 {
  font-family: var(--display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.contrast-rows > div { padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.contrast-rows > div:first-child { border-top: 0; }
.contrast-rows dt {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.contrast-rows dd {
  font-size: 15.5px; line-height: 1.55;
  color: #FFFFFF;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.contrast-rows .vs {
  display: block;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(245, 245, 247, 0.6);
}


.evidence {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  max-width: 780px;
  margin-inline: auto;
}
.ev-head {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: space-between;
  background: var(--dark);
  padding: 16px 22px;
}
.ev-title {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  color: #FFFFFF;
}
.ev-seal {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--dark);
  background: var(--yellow);
  border-radius: 999px;
  padding: 5px 12px;
}
.ev-body { padding: 6px 22px 18px; }
.ev-body > div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.ev-body > div:last-child { border-bottom: 0; }
.ev-body dt {
  font-size: 13px; font-weight: 600;
  color: var(--muted);
}
.ev-body dd { font-size: 14.5px; color: var(--body-c); }
.ev-result { font-weight: 600; color: var(--gold-deep); }
.ev-hash {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  word-break: break-all;
}
.ev-note {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  padding: 16px 22px 20px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}


.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.teaser-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column;
}
.card-article h2, .card-article h3 {
  font-family: var(--display);
  font-size: 21px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.24;
  margin-bottom: 12px;
}
.card-article h2 a, .card-article h3 a { color: var(--ink); }
.card-article h2 a:hover, .card-article h3 a:hover { color: var(--gold-deep); }
.card-teaser { font-size: 15.5px; color: var(--muted); flex: 1; }
.card-meta {
  margin-top: 16px;
  font-size: 13px; color: var(--muted);
  display: flex; gap: 8px; align-items: center;
}
.badge-aufmacher, .badge-kurz {
  display: inline-block;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 9px;
  margin-left: 6px;
  vertical-align: 1px;
}
.badge-aufmacher { background: var(--yellow); color: var(--dark); }
.badge-kurz      { background: var(--soft); color: var(--muted); border: 1px solid var(--line); }

.hero-section { padding-bottom: 64px; }
.no-gate {
  margin-top: 26px;
  font-size: 15px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}

.rubrik-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none;
}
.rubrik-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14.5px;
  color: var(--body-c);
}


.wrap-narrow {
  
  padding-inline: 22px;
  max-width: 1080px;
  margin-inline: auto;
}
.article { padding: 48px 0 80px; }
.crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 30px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-deep); text-decoration: underline; }

.article-head { max-width: 720px; margin-bottom: 40px; }
.article-head h1 {
  font-family: var(--display);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.article-teaser {
  font-family: var(--serif);
  font-size: 21px; line-height: 1.5;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 26px;
}
.article-meta {
  font-size: 13.5px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.article-meta img {
  width: 40px; height: 40px;
  border-radius: 50%; object-fit: cover;
  margin-right: 2px;
}
.article-meta .by { color: var(--ink); font-weight: 600; }


.article-body { max-width: 720px; }
.article-body p {
  font-family: var(--serif);
  font-size: 19px; line-height: 1.75;
  color: var(--ink);
  margin-bottom: 22px;
}
.article-body h2 {
  font-family: var(--display);
  font-size: 25px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 44px 0 16px;
}
.article-body strong { color: var(--ink); font-weight: 700; }

.article-body > p:first-of-type::first-letter {
  float: left;
  font-family: var(--display);
  font-size: 62px; font-weight: 700;
  line-height: 0.86;
  margin: 6px 10px 0 0;
  color: var(--ink);
}

.article-body h2::before {
  content: "";
  display: block;
  width: 56px;
  border-top: 1px solid var(--line);
  margin-bottom: 26px;
}

.verpflichtete {
  margin-top: 44px;
  background: var(--soft);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 30px 10px;
}
.verpflichtete h2 { margin-top: 0; font-size: 22px; }

.verpflichtete h2::before { content: none; }
.verpflichtete p { font-size: 17.5px; }

.sources, .authorbox {
  max-width: 720px;
  margin-top: 36px;
  border-radius: var(--radius);
}
.sources {
  border: 1px solid var(--line);
  padding: 24px 26px;
}
.sources h2 {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.sources ul { list-style: none; }
.sources li {
  font-size: 14.5px; color: var(--body-c);
  padding: 6px 0 6px 16px;
  position: relative;
}
.sources li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
}

.authorbox {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--soft);
  padding: 26px 28px;
}
.authorbox img { width: 72px; height: auto; border-radius: 50%; flex: none; }
.authorbox h2 {
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.authorbox p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }

.legal-note {
  max-width: 720px;
  margin-top: 24px;
  font-size: 13px; line-height: 1.6;
  color: var(--muted);
  font-style: italic;
}

.article-back { max-width: 720px; margin-top: 32px; }

@media (max-width: 900px) {
  .sov-grid, .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .ev-body > div { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 720px) {
  .sov-grid, .teaser-grid { grid-template-columns: 1fr; }
  .contrast { padding: 28px 22px; }
  
  .contrast-rows dd { grid-template-columns: 1fr; gap: 12px; }
  .contrast-rows .vs {
    padding-left: 0; padding-top: 12px;
    border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .authorbox { flex-direction: column; gap: 16px; }
  .article { padding: 32px 0 60px; }
  .verpflichtete { padding: 22px 22px 6px; }
}



.hero-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.brand-term {
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 700;
  letter-spacing: 2.2px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 7px;
}
.law-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.law-badge {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: none;
  color: var(--body-c);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
}




.hero h1 .quiet { font-size: 0.72em; }


.section-soft .module { background: var(--paper); border: 1px solid var(--line); }
html.js .section-soft .module:has(.card-inner) { background: none; border: 0; }
.section-soft .module .card-front { background: var(--paper); border: 1px solid var(--line); }


.card-article { display: flex; flex-direction: column; }
.card-read {
  margin-top: auto;
  padding-top: 16px;
  text-align: right;
}
.card-read a { font-size: 14.5px; font-weight: 600; color: var(--gold-deep); }
.card-read a:hover { text-decoration: underline; }


.ev-explain {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--muted);
  word-break: normal;
  overflow-wrap: normal;
}


@media (max-width: 900px) {
  .persona-grid > :nth-child(1) { order: 1; }
  .persona-grid > :nth-child(4) { order: 2; }
  .persona-grid > :nth-child(2) { order: 3; }
  .persona-grid > :nth-child(5) { order: 4; }
  .persona-grid > :nth-child(3) { order: 5; }
  .persona-grid > :nth-child(6) { order: 6; }
}


.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.vs-table { width: 100%; margin-top: 26px; border-collapse: separate; border-spacing: 0; }
.vs-table th, .vs-table td { text-align: left; vertical-align: top; padding: 16px 18px; }
.vs-table thead th {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding-top: 14px; padding-bottom: 14px;
}
.vs-table thead .col-regurio {
  color: var(--yellow);
  background: rgba(236, 207, 1, 0.10);
  border-radius: 12px 12px 0 0;
}
.vs-table thead .col-other { color: rgba(245, 245, 247, 0.65); }
.vs-table tbody .crit {
  font-size: 14px; font-weight: 600;
  color: rgba(245, 245, 247, 0.85);
  width: 30%;
  padding-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.vs-table tbody td {
  font-size: 15px; line-height: 1.55; font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.vs-table td.cell-regurio { background: rgba(236, 207, 1, 0.10); color: #FFFFFF; }
.vs-table tbody tr:last-child .cell-regurio { border-radius: 0 0 12px 12px; }
.vs-table td.cell-regurio::before { content: "\2713"; color: var(--yellow); font-weight: 700; margin-right: 9px; }
.vs-table td.cell-other { color: rgba(245, 245, 247, 0.6); }
@media (max-width: 720px) {
  .vs-table, .vs-table tbody, .vs-table tr, .vs-table th, .vs-table td { display: block; width: 100%; }
  .vs-table thead { display: none; }
  .vs-table tbody tr { padding: 16px 0 10px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .vs-table tbody tr:first-child { border-top: 0; padding-top: 4px; }
  .vs-table tbody .crit { border: 0; padding: 0 0 10px; width: auto; }
  .vs-table tbody td { border: 0; border-radius: 10px; margin-bottom: 8px; padding: 12px 14px; }
  .vs-table tbody tr:last-child .cell-regurio { border-radius: 10px; }
  .vs-table td.cell-other { background: rgba(255, 255, 255, 0.05); }
  .vs-table td::before {
    display: block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    margin-bottom: 5px;
  }
  .vs-table td.cell-regurio::before { content: "REGURIO"; margin-right: 0; }
  .vs-table td.cell-other::before { content: "Andere Anbieter"; color: rgba(245, 245, 247, 0.65); }
}


html.js .module:not(.flipped) .card-back { pointer-events: none; }
html.js .module.flipped .card-front { pointer-events: none; }


.fine { font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.hero .fine { margin-top: 12px; }
.module .fine { margin-top: 10px; }
.module-foot { margin-top: 26px; text-align: center; }
.rts-note {
  margin: 30px auto 0; max-width: 880px;
  background: var(--paper); border: 1px solid #E3E3E6; border-radius: var(--radius);
  padding: 26px 30px;
}
.rts-note h3 { font-family: var(--display); font-size: 21px; letter-spacing: -0.01em; margin-bottom: 8px; }
.rts-note p { font-size: 15.5px; line-height: 1.55; }
.rts-note .fine { margin-top: 10px; }

.b-compliance { background: #1F2B41; border-color: #35507C; }
.b-compliance p { color: #AABFE0; }
.b-data { background: #1D3028; border-color: #2F5A45; }
.b-data p { color: #9EC5AE; }
.module-foot + .module-foot { margin-top: 10px; max-width: 860px; margin-left: auto; margin-right: auto; }
.flyer-dl { margin-top: 16px; }
.pilot .flyer-dl .link-more { color: var(--yellow); }

@media (min-width: 1121px) and (max-width: 1220px) {
  .nav { gap: 12px; }
  .nav a { font-size: 13px; }
}
.hero .hero-cta { margin-bottom: 14px; }
.hero-flyer { text-align: center; margin-bottom: 40px; }
.hero-flyer .link-more { font-size: 15px; }
.founder .bio { font-size: 14px; line-height: 1.5; color: var(--muted); }


.nav a[aria-current="page"] { opacity: 1; }
.nav a[aria-current="page"]:not(.btn-pill) {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}
.nav .nav-section-link {
  position: relative;
}
.nav .nav-section-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 160ms ease;
}
.nav .nav-section-link:hover::after { transform: scaleX(1); }
.nav .nav-section-link[aria-current="location"] {
  color: var(--ink);
  font-weight: 600;
  opacity: 1;
}
.nav .nav-section-link[aria-current="location"]::after { transform: scaleX(1); }
.nav .nav-page-link {
  position: relative;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  font-size: 13.5px;
  opacity: 1;
  transition: border-color 160ms ease, background 160ms ease;
}
.nav .nav-page-link:hover {
  border-color: #D7C438;
  background: var(--yellow-soft);
}
.nav .nav-page-start { margin-left: 3px; }
.nav .nav-page-start::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -12px;
  width: 1px;
  background: var(--line);
}
.nav-arrow { margin-left: 2px; color: var(--gold-deep); }
.nav .nav-page-link[aria-current="page"] .nav-arrow { color: var(--ink); }


@media (min-width: 721px) and (max-width: 1120px) {
  html.js .menu-btn { display: flex; }
  html.js .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px var(--edge) 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  }
  html.js .site-header.nav-open .nav { display: flex; }
  html.js .nav a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 16px; }
  html.js .nav .nav-page-link {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--soft);
  }
  html.js .nav .nav-page-start { margin: 10px 0 0; }
  html.js .nav .nav-page-start::before,
  html.js .nav .nav-section-link::after { display: none; }
  html.js .nav .nav-section-link[aria-current="location"] {
    padding-left: 12px;
    border-left: 3px solid var(--yellow);
    border-radius: 8px 0 0 8px;
    background: linear-gradient(90deg, var(--yellow-soft), transparent 72%);
  }
  html.js .nav .nav-page-link + .nav-page-link { margin-top: 8px; }
  html.js .nav .btn-pill {
    margin-top: 14px;
    padding: 12px 16px;
    border-bottom: 0;
    font-size: 15px;
    text-align: center;
  }
}

.feature-hero { padding-bottom: 56px; }
.feature-hero .lead { max-width: 850px; }
.feature-summary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 42px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 14.5px;
}
.feature-summary span { display: inline-flex; align-items: baseline; gap: 8px; }
.feature-summary strong {
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
  color: var(--ink);
}

.feature-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-block: 28px 48px;
}
.feature-index a {
  min-height: 96px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.feature-index a:hover {
  transform: translateY(-2px);
  border-color: #D7C438;
  background: var(--yellow-soft);
}
.feature-index span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.feature-section { scroll-margin-top: 56px; }
.feature-section-head {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto 54px;
}
.feature-number {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
}
.feature-section-head h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.feature-section-head > div > p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.feature-item {
  padding: 27px 0 29px;
  border-bottom: 1px solid var(--line);
}
.feature-item h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.feature-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}
.feature-section.section-dark { background: var(--dark); }
.feature-section.section-dark .eyebrow { color: var(--yellow); }
.feature-section.section-dark .feature-number { color: var(--yellow); }
.feature-section.section-dark .feature-section-head h2,
.feature-section.section-dark .feature-item h3 { color: #FFFFFF; }
.feature-section.section-dark .feature-section-head > div > p:last-child,
.feature-section.section-dark .feature-item p { color: rgba(245, 245, 247, 0.70); }
.feature-section.section-dark .feature-list,
.feature-section.section-dark .feature-item { border-color: rgba(255, 255, 255, 0.14); }

.feature-cta {
  text-align: center;
  background: linear-gradient(145deg, #FFFBE0, var(--yellow-soft));
}
.feature-cta h2 {
  margin: 0 auto 18px;
  max-width: 780px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.feature-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--body-c);
}

@media (max-width: 900px) {
  .feature-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list { column-gap: 34px; }
}

@media (max-width: 720px) {
  html.js .nav .nav-section-link::after { display: none; }
  html.js .nav .nav-section-link[aria-current="location"] {
    padding-left: 12px;
    border-left: 3px solid var(--yellow);
    border-radius: 8px 0 0 8px;
    background: linear-gradient(90deg, var(--yellow-soft), transparent 72%);
  }
  html.js .nav .nav-page-link {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--soft);
  }
  html.js .nav .nav-page-start { margin: 10px 0 0; }
  html.js .nav .nav-page-start::before { display: none; }
  html.js .nav .nav-page-link + .nav-page-link { margin-top: 8px; }
  .feature-hero { padding-top: 72px; padding-bottom: 38px; }
  .feature-summary { align-items: flex-start; gap: 18px 28px; }
  .feature-summary span { flex-direction: column; align-items: center; gap: 4px; }
  .feature-index { grid-template-columns: 1fr; padding-block: 18px 28px; }
  .feature-index a { min-height: 0; padding: 16px 18px; }
  .feature-index span { display: inline-block; margin: 0 10px 0 0; }
  .feature-section { padding-block: 78px; }
  .feature-section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 38px; }
  .feature-number { font-size: 24px; }
  .feature-section-head h2 { font-size: clamp(33px, 10vw, 44px); }
  .feature-list { grid-template-columns: 1fr; }
  .feature-item { padding-block: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-index a { transition: none; }
  .feature-index a:hover { transform: none; }
}


.b-compliance {
  background: #304E78;
  border-color: #6E8FBE;
  box-shadow: 0 14px 40px rgba(48, 78, 120, 0.32);
}
.b-compliance p { color: #E1EBFA; }
.b-data {
  background: #2F5847;
  border-color: #5E8E74;
  box-shadow: 0 14px 40px rgba(47, 88, 71, 0.30);
}
.b-data p { color: #DFF1E7; }
.b-evidence h3,
.b-evidence .layer-more,
.b-evidence .layer-icon { color: #3A3A3C; }
.b-evidence p { color: #4B481B; }


#plattform {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-reverse-x: 0px;
  --parallax-reverse-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
}
#plattform::before,
#plattform::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
#plattform::before {
  inset: -110px -90px;
  opacity: 0.72;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='960' height='520' viewBox='0 0 960 520'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.052' stroke-width='1.2'%3E%3Cpath d='M-90 392C108 95 282 580 548 242S875 172 1040-65'/%3E%3Cpath d='M-105 435C112 126 310 614 578 277S895 214 1050-22'/%3E%3Cpath d='M-122 478C118 158 330 652 610 315S920 258 1062 24'/%3E%3Cpath d='M-55 316C92 72 250 516 505 194S842 126 1010-112'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: 960px 520px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.06);
}
#plattform::after {
  inset: -30%;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 42% 34% at 18% 72%, rgba(236, 207, 1, 0.12), transparent 72%),
    radial-gradient(ellipse 38% 30% at 82% 20%, rgba(78, 129, 190, 0.16), transparent 74%),
    radial-gradient(ellipse 30% 30% at 72% 88%, rgba(78, 137, 105, 0.13), transparent 75%);
  transform: translate3d(var(--parallax-reverse-x), var(--parallax-reverse-y), 0) scale(1.08);
}
#plattform .build-stage {
  position: relative;
  z-index: 1;
  background: transparent;
}

.layer-link {
  display: block;
  color: inherit;
  cursor: pointer;
}
.layer-link:hover { filter: brightness(1.08); }
.layer-link:focus-visible { outline-color: var(--yellow); outline-offset: 5px; }
.layer-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: currentColor;
  opacity: 0.9;
}

.persona {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.persona:hover,
.persona:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
}
.card-deep-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 600;
}
.card-deep-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
}

.parallax-break {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-reverse-x: 0px;
  --parallax-reverse-y: 0px;
  --parallax-opacity: 0.56;
  --surface-a: #202633;
  --surface-b: #15191F;
  --glow-a: rgba(236, 207, 1, 0.48);
  --glow-b: rgba(80, 130, 108, 0.48);
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  background: linear-gradient(128deg, var(--surface-a), var(--surface-b));
}
.parallax-break::before,
.parallax-break::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  will-change: transform, opacity;
}
.parallax-break::before {
  inset: -110px -90px;
  opacity: 0.78;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='960' height='520' viewBox='0 0 960 520'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.06' stroke-width='1.2'%3E%3Cpath d='M-90 392C108 95 282 580 548 242S875 172 1040-65'/%3E%3Cpath d='M-105 435C112 126 310 614 578 277S895 214 1050-22'/%3E%3Cpath d='M-122 478C118 158 330 652 610 315S920 258 1062 24'/%3E%3Cpath d='M-55 316C92 72 250 516 505 194S842 126 1010-112'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: 960px 520px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.06);
}
.parallax-break::after {
  inset: -42%;
  opacity: var(--parallax-opacity);
  background:
    radial-gradient(ellipse 35% 34% at 18% 72%, var(--glow-a), transparent 72%),
    radial-gradient(ellipse 34% 32% at 82% 24%, var(--glow-b), transparent 74%);
  filter: blur(8px);
  transform: translate3d(var(--parallax-reverse-x), var(--parallax-reverse-y), 0) scale(1.08);
}
.parallax-break-workflow {
  --surface-a: #161617;
  --surface-b: #18232B;
  --glow-a: rgba(236, 207, 1, 0.62);
  --glow-b: rgba(81, 143, 110, 0.58);
}
.parallax-break-evidence {
  --surface-a: #161617;
  --surface-b: #262510;
  --glow-a: rgba(236, 207, 1, 0.58);
  --glow-b: rgba(255, 247, 187, 0.14);
}
.parallax-break-news {
  --surface-a: #161617;
  --surface-b: #16251F;
  --glow-a: rgba(236, 207, 1, 0.50);
  --glow-b: rgba(76, 123, 184, 0.62);
}
.parallax-break-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(128px, 20vh, 220px);
}
.parallax-break .eyebrow { color: var(--yellow); }
.parallax-break h2 {
  max-width: 850px;
  margin: 0 auto 28px;
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.parallax-break .btn {
  box-shadow: 0 12px 34px rgba(236, 207, 1, 0.28);
}

@media (max-width: 720px) {
  .parallax-break { min-height: 260px; }
  .parallax-break::before { inset: -100px -280px; background-size: 820px 445px; }
  .parallax-break::after { inset: -48% -72%; filter: blur(6px); }
  .parallax-break-inner { padding-block: clamp(96px, 14vh, 128px); }
  .parallax-break h2 { font-size: clamp(32px, 10vw, 44px); }
  #plattform::before { inset-inline: -280px; background-size: 820px 445px; }
}

@media (prefers-reduced-motion: reduce) {
  .layer-link,
  .persona { transition: none; }
  .persona:hover,
  .persona:focus-within { transform: none; }
  #plattform::before,
  #plattform::after,
  .parallax-break::before,
  .parallax-break::after { will-change: auto; }
}


.feature-page {
  --feature-blue: #426892;
  --feature-green: #3F735C;
  --feature-warm: #B59E00;
  background: #F7F7F8;
}


.feature-page .feature-hero {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-reverse-x: 0px;
  --parallax-reverse-y: 0px;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 390px;
  padding: 86px var(--edge) 94px;
  color: #FFFFFF;
  text-align: center;
  background: linear-gradient(132deg, #111315 8%, #172333 58%, #19372A 112%);
}
.feature-page .feature-hero::before,
.feature-page .feature-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}
.feature-page .feature-hero::before {
  inset: -100px -180px;
  opacity: 0.75;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1180' height='680' viewBox='0 0 1180 680'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.055' stroke-width='1.2'%3E%3Cpath d='M-90 526C134 153 354 742 663 313S1042 205 1250-96'/%3E%3Cpath d='M-110 580C140 188 382 784 699 357S1077 256 1266-45'/%3E%3Cpath d='M-126 634C151 222 411 827 738 403S1110 308 1282 8'/%3E%3Cpath d='M-62 460C116 117 324 687 624 266S1007 154 1228-146'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: 1180px 680px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.05);
}
.feature-page .feature-hero::after {
  width: 560px;
  height: 560px;
  right: -190px;
  top: -270px;
  border-radius: 50%;
  border: 1px solid rgba(236, 207, 1, 0.15);
  box-shadow:
    0 0 0 78px rgba(236, 207, 1, 0.025),
    0 0 0 156px rgba(236, 207, 1, 0.018);
  transform: translate3d(var(--parallax-reverse-x), var(--parallax-reverse-y), 0);
}
.feature-hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  will-change: transform;
}
.feature-hero-glow-a {
  width: 520px;
  height: 420px;
  left: -220px;
  bottom: -270px;
  background: radial-gradient(circle, rgba(236, 207, 1, 0.26), transparent 68%);
  transform: translate3d(var(--parallax-reverse-x), var(--parallax-reverse-y), 0);
}
.feature-hero-glow-b {
  width: 620px;
  height: 500px;
  right: -130px;
  top: 80px;
  background: radial-gradient(circle, rgba(69, 129, 97, 0.30), transparent 68%);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
}
.feature-hero-title { width: 100%; max-width: 1080px; margin: 0 auto; }
.feature-page .feature-hero h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(58px, 6.2vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.feature-intro {
  padding: 72px 0 78px;
  background: #FFFFFF;
}
.feature-intro-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: max(24px, calc(50vw - 620px));
}
.feature-intro-lead {
  max-width: 920px;
  margin: 0 auto 50px;
  color: #5E6065;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
  text-align: center;
}

.feature-flow {
  position: relative;
  padding: 28px;
  border: 1px solid #E2E3E6;
  border-radius: 24px;
  background: #F6F6F8;
  box-shadow: 0 20px 48px rgba(29, 29, 31, 0.07);
}
.feature-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(236, 207, 1, 0.09), transparent 34%);
  pointer-events: none;
}
.feature-flow-label {
  margin-bottom: 22px;
  color: #777A80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.feature-flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.feature-flow-track::before {
  content: '';
  position: absolute;
  top: 33px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), rgba(63, 115, 92, 0.32));
}
.feature-flow-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 154px;
  padding: 14px 18px 18px;
  border: 1px solid #E2E3E6;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
}
.feature-flow-node > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 38px;
  margin-bottom: 24px;
  border: 1px solid rgba(155, 135, 0, 0.52);
  border-radius: 50%;
  color: #877600;
  background: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
}
.feature-flow-node strong { color: var(--ink); font-size: 17px; }
.feature-flow-node small { margin-top: 2px; color: #777A80; font-size: 12px; }
.feature-flow-node-final {
  border-color: rgba(196, 171, 0, 0.50);
  background: #FFFBE1;
}
html.js:not(.no-anim) .feature-flow-node {
  opacity: 0;
  transform: translateY(16px);
  animation: feature-flow-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
html.js:not(.no-anim) .feature-flow-node:nth-child(2) { animation-delay: 0.12s; }
html.js:not(.no-anim) .feature-flow-node:nth-child(3) { animation-delay: 0.24s; }
html.js:not(.no-anim) .feature-flow-node:nth-child(4) { animation-delay: 0.36s; }
@keyframes feature-flow-in { to { opacity: 1; transform: none; } }


.feature-page .feature-index {
  position: sticky;
  top: 56px;
  z-index: 18;
  display: flex;
  gap: 7px;
  max-width: none;
  padding-block: 11px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}
.feature-page .feature-index::-webkit-scrollbar { display: none; }
.feature-page .feature-index a {
  flex: 1 0 124px;
  min-height: 54px;
  padding: 10px 12px;
  scroll-snap-align: center;
  border-color: transparent;
  border-radius: 13px;
  background: transparent;
  color: #55555A;
  font-size: 11.5px;
  line-height: 1.25;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.feature-page .feature-index a:hover {
  transform: none;
  border-color: transparent;
  background: #F1F1F3;
}
.feature-page .feature-index a[aria-current="location"] {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 7px 20px rgba(196, 171, 0, 0.22);
}
.feature-page .feature-index span {
  margin-bottom: 4px;
  color: inherit;
  font-size: 9px;
  letter-spacing: 1px;
  opacity: 0.66;
}


.feature-page .feature-section {
  --feature-accent: var(--feature-blue);
  --feature-tint: rgba(66, 104, 146, 0.13);
  --feature-bg: #F0F4F8;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 116px 126px;
  background: var(--feature-bg);
}
.feature-page .feature-section::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  right: -330px;
  top: -350px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--feature-tint), transparent 69%);
  pointer-events: none;
}
.feature-page .feature-section:nth-of-type(even)::before {
  right: auto;
  left: -340px;
}
.feature-page .feature-tone-green {
  --feature-accent: var(--feature-green);
  --feature-tint: rgba(63, 115, 92, 0.14);
  --feature-bg: #EFF5F1;
}
.feature-page .feature-tone-yellow {
  --feature-accent: #9B8700;
  --feature-tint: rgba(236, 207, 1, 0.20);
  --feature-bg: #F8F6E9;
}
.feature-page .feature-tone-neutral {
  --feature-accent: #5E6268;
  --feature-tint: rgba(94, 98, 104, 0.12);
  --feature-bg: #F1F1F3;
}
.feature-page .feature-section > .wrap { position: relative; }
.feature-page .feature-section-head {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 42px;
  max-width: 1120px;
  margin-bottom: 58px;
}
.feature-page .feature-number {
  position: relative;
  padding-top: 2px;
  color: var(--feature-accent);
  font-size: clamp(58px, 6vw, 82px);
  line-height: 0.84;
  letter-spacing: -0.06em;
}
.feature-page .feature-number::after {
  content: '';
  position: absolute;
  top: 86px;
  left: 2px;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: var(--yellow);
}
.feature-page .feature-section .eyebrow {
  margin-bottom: 12px;
  color: var(--feature-accent);
}
.feature-page .feature-section-head h2 {
  max-width: 850px;
  margin-bottom: 17px;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.048em;
}
.feature-page .feature-section-head > div > p:last-child {
  max-width: 760px;
  color: #5D6065;
  font-size: 18px;
  line-height: 1.6;
}
.feature-page .feature-list {
  counter-reset: feature-card;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  border: 0;
}
.feature-page .feature-item {
  counter-increment: feature-card;
  position: relative;
  overflow: hidden;
  min-height: 218px;
  padding: 34px 34px 32px;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(29, 29, 31, 0.055);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
}
.feature-page .feature-item::before {
  content: counter(feature-card, decimal-leading-zero);
  position: absolute;
  top: 25px;
  right: 28px;
  color: var(--feature-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.feature-page .feature-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--feature-accent), transparent 66%);
  transform: scaleX(0.20);
  transform-origin: left;
  transition: transform 260ms ease;
}
.feature-page .feature-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--feature-accent) 34%, transparent);
  box-shadow: 0 24px 52px rgba(29, 29, 31, 0.11);
}
.feature-page .feature-item:hover::after { transform: scaleX(1); }
.feature-page .feature-item h3 {
  max-width: calc(100% - 32px);
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.feature-page .feature-item p {
  color: #66696E;
  font-size: 15px;
  line-height: 1.62;
}


.feature-page .feature-tone-dark {
  --feature-accent: var(--yellow);
  --feature-tint: rgba(236, 207, 1, 0.18);
  --feature-bg: #17191B;
  background:
    radial-gradient(ellipse 50% 62% at 92% 10%, rgba(236, 207, 1, 0.13), transparent 68%),
    radial-gradient(ellipse 45% 55% at 5% 90%, rgba(62, 105, 82, 0.16), transparent 70%),
    #17191B;
}
.feature-page .feature-tone-dark::before {
  width: 780px;
  height: 780px;
  right: -420px;
  left: auto;
  top: -420px;
  border: 1px solid rgba(236, 207, 1, 0.09);
  background: transparent;
  box-shadow: 0 0 0 90px rgba(236, 207, 1, 0.018), 0 0 0 180px rgba(236, 207, 1, 0.012);
}
.feature-page .feature-tone-dark .feature-item {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.feature-page .feature-tone-dark .feature-item:hover {
  border-color: rgba(236, 207, 1, 0.34);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.30);
}
.feature-page .feature-tone-dark .feature-section-head > div > p:last-child,
.feature-page .feature-tone-dark .feature-item p { color: rgba(255, 255, 255, 0.64); }

.feature-page .feature-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 108px;
  color: #FFFFFF;
  background: linear-gradient(125deg, #18362A, #1B2B43);
}
.feature-page .feature-cta::before,
.feature-page .feature-cta::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
}
.feature-page .feature-cta::before {
  left: -260px;
  bottom: -390px;
  background: radial-gradient(circle, rgba(236, 207, 1, 0.30), transparent 67%);
}
.feature-page .feature-cta::after {
  right: -270px;
  top: -410px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
}
.feature-page .feature-cta .eyebrow { color: var(--yellow); }
.feature-page .feature-cta p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display);
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

@media (max-width: 1080px) {
  .feature-page .feature-hero h1 { font-size: clamp(54px, 7vw, 74px); }
  .feature-flow-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .feature-page .feature-index a { flex-basis: 136px; }
  .feature-page .feature-section-head { grid-template-columns: 112px minmax(0, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
  .feature-page .feature-hero { min-height: 340px; padding-block: 76px 82px; }
  .feature-intro { padding-block: 62px 68px; }
  .feature-flow { width: 100%; padding: 22px; }
  .feature-flow-node { min-height: 150px; padding-inline: 14px; }
  .feature-flow-node strong { font-size: 15px; }
  .feature-flow-node small { font-size: 11px; }
  .feature-page .feature-section { padding-block: 96px 104px; }
  .feature-page .feature-section-head { grid-template-columns: 90px minmax(0, 1fr); }
  .feature-page .feature-number { font-size: 58px; }
  .feature-page .feature-number::after { top: 64px; width: 40px; }
  .feature-page .feature-section-head h2 { font-size: clamp(40px, 6vw, 54px); }
  .feature-page .feature-item { min-height: 230px; padding: 30px 28px; }
}

@media (max-width: 720px) {
  .feature-page .feature-hero {
    min-height: 252px;
    padding: 48px 22px 54px;
    background: linear-gradient(150deg, #111315 5%, #182537 65%, #19372A 120%);
  }
  .feature-page .feature-hero::before { inset-inline: -430px; background-size: 960px 553px; }
  .feature-page .feature-hero::after { width: 360px; height: 360px; right: -220px; top: -190px; }
  .feature-page .feature-hero h1 { font-size: clamp(42px, 13vw, 54px); }
  .feature-intro { padding-block: 40px 46px; }
  .feature-intro-lead { margin-bottom: 30px; font-size: 16.5px; line-height: 1.58; text-align: left; }
  .feature-flow { padding: 16px; border-radius: 20px; }
  .feature-flow-label { margin: 2px 2px 18px; }
  .feature-flow-track {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .feature-flow-track::before {
    display: block;
    top: 30px;
    right: auto;
    bottom: 30px;
    left: 26px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--yellow), rgba(63, 115, 92, 0.32));
  }
  .feature-flow-node {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    min-height: 70px;
    padding: 13px 14px 13px 6px;
  }
  .feature-flow-node > span { grid-row: 1 / span 2; margin-bottom: 0; }
  .feature-flow-node strong { align-self: end; font-size: 16px; }
  .feature-flow-node small { align-self: start; font-size: 12px; }

  .feature-page .feature-index {
    top: 56px;
    gap: 6px;
    padding: 8px 22px;
  }
  .feature-page .feature-index a {
    flex: 0 0 116px;
    min-height: 50px;
    padding: 9px 10px;
    font-size: 10.5px;
  }
  .feature-page .feature-index span { display: block; margin: 0 0 3px; }

  .feature-page .feature-section { padding-block: 66px 72px; }
  .feature-page .feature-section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .feature-page .feature-number { font-size: 44px; }
  .feature-page .feature-number::after { top: auto; bottom: -10px; width: 38px; height: 3px; }
  .feature-page .feature-section .eyebrow { margin-bottom: 10px; font-size: 11px; letter-spacing: 1.35px; }
  .feature-page .feature-section-head h2 { font-size: clamp(31px, 8.8vw, 37px); line-height: 1.02; }
  .feature-page .feature-section-head > div > p:last-child { font-size: 15.5px; line-height: 1.55; }
  .feature-page .feature-list { grid-template-columns: 1fr; gap: 12px; }
  .feature-page .feature-item { min-height: 0; padding: 25px 22px 24px; border-radius: 18px; }
  .feature-page .feature-item::before { top: 21px; right: 22px; }
  .feature-page .feature-item h3 { font-size: 18.5px; line-height: 1.23; }
  .feature-page .feature-item p { font-size: 14.5px; line-height: 1.58; }
  .feature-page .feature-cta { padding-block: 72px; text-align: left; }

  .feature-page .site-footer .wrap {
    width: 100%;
    gap: 22px;
    padding: 28px 22px 32px;
    font-size: 13.5px;
  }
  .feature-page .site-footer .foot-brand {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 9px;
  }
  .feature-page .site-footer .foot-brand img { height: 28px; }
  .feature-page .site-footer .foot-brand span {
    display: block;
    width: 100%;
    line-height: 1.48;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .feature-page .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px 18px;
    padding-top: 18px;
    border-top: 1px solid #DEDEE2;
  }
  .feature-page .site-footer nav a { min-width: 0; padding-block: 3px; overflow-wrap: anywhere; }
  .feature-page .site-footer nav a:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-page .feature-hero::before,
  .feature-page .feature-hero::after,
  .feature-hero-glow { will-change: auto; }
  .feature-page .feature-item { transition: none; }
  .feature-page .feature-item:hover { transform: none; }
  html.js:not(.no-anim) .feature-flow-node { animation: none; opacity: 1; transform: none; }
}


#warum .sec-head > .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(15px, 1.45vw, 18px);
  letter-spacing: 1.8px;
}

#ansatz .pillar h3 {
  font-size: 24px;
  line-height: 1.18;
}

.feature-page .feature-tone-audit {
  --feature-accent: #3E5F80;
  --feature-tint: rgba(62, 95, 128, 0.17);
  --feature-bg: #E8EEF3;
  background:
    radial-gradient(ellipse 54% 68% at 92% 8%, rgba(62, 95, 128, 0.13), transparent 70%),
    radial-gradient(ellipse 42% 54% at 4% 92%, rgba(94, 112, 126, 0.10), transparent 72%),
    var(--feature-bg);
}

.feature-page .feature-tone-audit .feature-item {
  border-color: rgba(62, 95, 128, 0.14);
  background: rgba(255, 255, 255, 0.88);
}

:root { --dark: #37455A; }

#plattform,
.parallax-break,
.pilot,
.feature-page .feature-hero,
.feature-page .feature-tone-dark,
.feature-page .feature-cta {
  background: #37455A;
}
