:root {
  --bg-base: #eaf3ea;
  --bg-alt: #f4f8f4;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --line: #eeeeee;
  --line-strong: #dde5dd;
  --device-line: #e6ece6;
  --text-main: #212121;
  --text-muted: #828282;
  --brand: #2e7d32;
  --brand-strong: #17501a;
  --brand-contrast: #edf7ee;
  --danger: #cb0e00;
  --warning: #b5862c;
  --ok: #2e7d32;
  --sidebar-bg: #1d5f22;
  --sidebar-bg-strong: #17501a;
  --sidebar-line: rgba(210, 235, 212, 0.26);
  --sidebar-text: #ffffff;
  --sidebar-muted: rgba(255, 255, 255, 0.72);
  --sidebar-active-bg: rgba(255, 255, 255, 0.16);
  --sidebar-active-line: rgba(255, 255, 255, 0.28);
  --surface-a: #f8faf7;
  --surface-a-bottom: #f3f6f2;
  --surface-b: #edf1eb;
  --surface-b-bottom: #e7ece5;
  --surface-c: #e5efe4;
  --surface-c-bottom: #dbe8da;
  --surface-a-gradient: linear-gradient(
    180deg,
    var(--surface-a) 0%,
    var(--surface-a-bottom) 100%
  );
  --surface-b-gradient: linear-gradient(
    180deg,
    var(--surface-b) 0%,
    var(--surface-b-bottom) 100%
  );
  --surface-c-gradient: linear-gradient(
    180deg,
    var(--surface-c) 0%,
    var(--surface-c-bottom) 100%
  );
  --text: var(--text-main);
  --green: var(--brand);
  --green-dark: var(--brand-strong);
  --white: var(--surface);
  --max-width: 1120px;
  --section-padding: 144px;
  --section-important: 168px;
  --section-peak: 204px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface-a-gradient);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

section[id] {
  scroll-margin-top: 77px;
}

#problem,
#faq,
#abstimmung {
  scroll-margin-top: 77px;
}

@media (max-width: 860px) {
  section[id] {
    scroll-margin-top: 69px;
  }

  #problem,
  #faq,
  #abstimmung {
    scroll-margin-top: 69px;
  }
}

.container {
  width: min(var(--max-width), calc(100vw - 48px));
  margin: 0 auto;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
}

.section {
  padding: var(--section-padding) 0;
  background: var(--surface-a-gradient);
}

.reveal-group > .reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-group.is-revealed > .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(56px, 6vw, 64px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(36px, 4vw, 40px);
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--text-muted);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 30;
  padding-top: 14px;
  background: rgba(244, 248, 244, 0);
  border-bottom: 1px solid transparent;
  transition: padding-top 0.24s ease, background-color 0.24s ease,
    border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-docked {
  padding-top: 0;
  background: #f4f8f4;
  border-color: rgba(221, 229, 221, 0.92);
  box-shadow: 0 6px 16px rgba(23, 80, 26, 0.08);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(221, 229, 221, 0.95);
  border-radius: 16px;
  padding: 0.78rem 0.96rem;
  background: rgba(244, 248, 244, 0.9);
  backdrop-filter: blur(8px);
  transition: padding 0.24s ease, border-radius 0.24s ease,
    border-color 0.24s ease, background-color 0.24s ease;
}

.site-header.is-docked .site-header-inner {
  padding-top: 0.98rem;
  padding-bottom: 0.98rem;
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--text);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.logo-wordmark {
  font-size: 1.35rem;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.46rem 0.62rem;
  border-radius: 8px;
}

nav a:hover,
nav a.is-active {
  color: var(--green-dark);
  background: rgba(46, 125, 50, 0.1);
}

.mobile-nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-a);
  border-radius: 9px;
  padding: 0.48rem 0.72rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  height: 48px;
  padding: 0 28px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  background-image: linear-gradient(140deg, var(--brand-strong), var(--brand));
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-strong);
  background-image: linear-gradient(
    140deg,
    var(--sidebar-bg-strong),
    var(--brand-strong)
  );
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--green-dark);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

.btn-nav {
  font-size: 14px;
  height: 44px;
  padding: 0 20px;
  background: var(--brand);
  background-image: linear-gradient(140deg, var(--brand-strong), var(--brand));
  color: var(--white);
}

.hero {
  padding-top: 192px;
  padding-bottom: 194px;
  background:
    radial-gradient(
      1200px 760px at 82% 20%,
      rgba(23, 80, 26, 0.11) 0%,
      rgba(23, 80, 26, 0) 62%
    ),
    var(--surface-a-gradient);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: clamp(300px, 34vw, 460px);
  aspect-ratio: 1 / 1;
  left: -160px;
  top: 34px;
  border-radius: 46% 54% 40% 60% / 55% 45% 58% 42%;
  border: 1px solid rgba(23, 80, 26, 0.15);
  background: radial-gradient(
    circle at 32% 30%,
    rgba(46, 125, 50, 0.18) 0%,
    rgba(46, 125, 50, 0.06) 58%,
    transparent 100%
  );
  transform: rotate(-16deg);
}

.hero::after {
  width: clamp(280px, 30vw, 420px);
  aspect-ratio: 1 / 1;
  right: -130px;
  bottom: -120px;
  border-radius: 56% 44% 62% 38% / 43% 57% 41% 59%;
  border: 1px solid rgba(23, 80, 26, 0.14);
  background: radial-gradient(
    circle at 40% 34%,
    rgba(23, 80, 26, 0.2) 0%,
    rgba(23, 80, 26, 0.05) 58%,
    transparent 100%
  );
  transform: rotate(11deg);
}

.hero-grid {
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 164px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(234, 243, 234, 0) 0%,
    rgba(244, 248, 244, 0.9) 72%,
    rgba(244, 248, 244, 1) 100%
  );
  z-index: 0;
}

.hero-copy {
  grid-column: 1 / 8;
}

.hero-copy h1 {
  max-width: 11ch;
  font-weight: 800;
  letter-spacing: -0.018em;
}

.hero-kicker {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.hero-subline {
  margin-top: 42px;
  max-width: 38ch;
}

.hero-impact {
  margin-top: 20px;
  max-width: 36ch;
  color: var(--text-muted);
}

.hero-points {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 28px;
}

.hero-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-microcopy {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-media {
  grid-column: 8 / 13;
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  margin-top: -24px;
  margin-right: -24px;
}

.hero-glow {
  position: absolute;
  width: min(80vw, 1040px);
  height: min(62vw, 780px);
  border-radius: 50%;
  background: rgba(23, 80, 26, 0.12);
  filter: blur(172px);
  right: -24%;
  top: -14px;
}

.app-screen {
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: 24px;
  border: 0.5px solid var(--device-line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow:
    0 14px 30px rgba(23, 80, 26, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.hero-screen {
  width: clamp(360px, 35vw, 404px);
  max-width: 100%;
  transform: translate3d(0, var(--parallax-y, 0px), 0) rotate(-1.4deg);
}

.demo-grid {
  align-items: start;
}

.demo-copy {
  grid-column: 2 / 12;
  max-width: none;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow: 0 22px 56px rgba(23, 80, 26, 0.06);
  padding: 62px 64px 58px;
}

.demo-copy h2,
.demo-copy p,
.demo-copy .plain-list {
  max-width: 680px;
}

.demo-copy h2 {
  font-size: clamp(40px, 4.5vw, 45px);
}

.demo-copy p {
  margin-top: 16px;
}

.demo-copy .btn {
  margin-top: 36px;
  margin-bottom: 0;
}

.demo-copy .plain-list {
  gap: 14px;
}

.plain-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.plain-list li {
  position: relative;
  padding-left: 1.2rem;
}

.plain-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.problem-grid {
  align-items: center;
}

#demo-uebersicht {
  padding-top: calc(var(--section-padding) * 0.5);
  padding-bottom: calc(var(--section-padding) * 0.55);
  background: var(--surface-b-gradient);
}

.section-demo .demo-grid {
  align-items: start;
}

#problem {
  padding-top: calc(var(--section-padding) * 0.55);
  padding-bottom: var(--section-important);
  background: var(--surface-a-gradient);
}

.section-problem .problem-grid {
  margin-top: 0;
}

.problem-copy {
  grid-column: 1 / 8;
}

.problem-visual {
  grid-column: 8 / 13;
}

.problem-copy h2,
.problem-copy p,
.problem-copy ul {
  max-width: 40ch;
}

.problem-copy h2 {
  margin-bottom: 16px;
}

.muted-list li {
  color: var(--text-muted);
}

.problem-line {
  margin-top: 22px;
  color: var(--text-main);
  font-weight: 700;
}

.problem-solution {
  margin-top: 6px;
  color: var(--green-dark);
  font-weight: 600;
}

.problem-copy > p:last-child {
  margin-top: 12px;
}

.problem-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: stretch;
  width: 100%;
  min-height: 240px;
}

.problem-forms {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas:
    "break break"
    "channels blind"
    "drop drop";
  gap: 14px 18px;
  align-items: start;
}

.problem-form {
  margin: 0;
  min-height: 122px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(234, 243, 234, 0.62) 100%);
  box-shadow: 0 10px 24px rgba(23, 80, 26, 0.05);
  padding: 14px 14px 12px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.problem-form:nth-child(1) {
  grid-area: break;
  min-height: 106px;
}

.problem-form:nth-child(2) {
  grid-area: channels;
  min-height: 142px;
  transform: translateY(8px);
}

.problem-form:nth-child(3) {
  grid-area: blind;
  min-height: 116px;
  transform: translateY(-4px);
}

.problem-form:nth-child(4) {
  grid-area: drop;
  min-height: 124px;
  width: 88%;
  justify-self: end;
  transform: translateY(6px);
}

.problem-form-label {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--text-main);
  font-weight: 700;
}

.problem-shape {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
}

.problem-shape-break {
  justify-content: space-between;
  gap: 26px;
}

.problem-shape-break span {
  height: 3px;
  border-radius: 999px;
  background: rgba(23, 80, 26, 0.56);
}

.problem-shape-break span:first-child {
  flex: 0 0 64%;
}

.problem-shape-break span:last-child {
  flex: 0 0 24%;
  opacity: 0.58;
}

.problem-shape-channels {
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}

.problem-shape-channels span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(23, 80, 26, 0.54);
}

.problem-shape-channels span:nth-child(1) {
  width: 72%;
}

.problem-shape-channels span:nth-child(2) {
  width: 92%;
}

.problem-shape-channels span:nth-child(3) {
  width: 56%;
}

.problem-shape-blind {
  justify-content: center;
}

.problem-shape-blind span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2.5px dashed rgba(23, 80, 26, 0.46);
  box-shadow: inset 0 0 0 7px rgba(23, 80, 26, 0.06);
}

.problem-shape-drop {
  align-items: flex-end;
  gap: 9px;
}

.problem-shape-drop span {
  width: 17%;
  border-radius: 7px;
  background: rgba(23, 80, 26, 0.58);
}

.problem-shape-drop span:nth-child(1) {
  height: 46px;
}

.problem-shape-drop span:nth-child(2) {
  height: 33px;
}

.problem-shape-drop span:nth-child(3) {
  height: 22px;
}

.problem-shape-drop span:nth-child(4) {
  height: 14px;
}

.section-dark {
  background:
    radial-gradient(circle at 14% 18%, rgba(46, 125, 50, 0.22) 0%, rgba(46, 125, 50, 0) 44%),
    radial-gradient(circle at 86% 82%, rgba(46, 125, 50, 0.16) 0%, rgba(46, 125, 50, 0) 50%),
    linear-gradient(180deg, var(--sidebar-bg) 0%, var(--sidebar-bg-strong) 100%);
  padding-top: calc(var(--section-peak) + 10px);
  padding-bottom: calc(var(--section-peak) + 10px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-dark::before {
  width: clamp(620px, 58vw, 980px);
  height: clamp(280px, 30vw, 460px);
  left: -360px;
  top: 42px;
  border-radius: 62% 38% 58% 42% / 48% 62% 38% 52%;
  transform: rotate(-8deg);
  border: 1px solid rgba(210, 235, 212, 0.18);
  background: transparent;
  box-shadow:
    0 0 0 28px rgba(210, 235, 212, 0.08),
    0 0 0 64px rgba(210, 235, 212, 0.05),
    0 0 0 102px rgba(210, 235, 212, 0.03);
  opacity: 0.58;
}

.section-dark::after {
  width: clamp(680px, 62vw, 1100px);
  height: clamp(300px, 32vw, 500px);
  right: -460px;
  bottom: 18px;
  border-radius: 38% 62% 44% 56% / 52% 40% 60% 48%;
  transform: rotate(11deg);
  border: 1px solid rgba(210, 235, 212, 0.16);
  background: transparent;
  box-shadow:
    0 0 0 24px rgba(210, 235, 212, 0.07),
    0 0 0 56px rgba(210, 235, 212, 0.045),
    0 0 0 92px rgba(210, 235, 212, 0.028);
  opacity: 0.5;
}

.process-grid {
  position: relative;
  z-index: 1;
}

.section-dark h2 {
  color: var(--sidebar-text);
  max-width: 18ch;
}

.section-intro-dark {
  margin-top: 16px;
  max-width: 38ch;
  color: var(--sidebar-muted);
}

.process-grid > h2,
.process-grid > .section-intro-dark {
  grid-column: 1 / 7;
}

.process-grid > .process-panel,
.process-grid > .process-closing {
  grid-column: 1 / 11;
}

.process-panel {
  margin-top: 38px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-radius: 20px;
  background: var(--surface);
  padding: 86px 82px;
  border: 1px solid var(--line-strong);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 26px 68px rgba(23, 80, 26, 0.05);
}

.process-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(46, 125, 50, 0.08) 0%,
    rgba(46, 125, 50, 0.02) 22%,
    rgba(46, 125, 50, 0) 42%
  );
}

.process-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: 0;
}

.process-number {
  font-size: clamp(32px, 3.2vw, 40px);
  line-height: 1;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.process-steps h3 {
  font-size: 25px;
  color: var(--text-main);
}

.process-steps p {
  margin-top: 4px;
}

.process-closing {
  margin-top: 26px;
  color: var(--brand-contrast);
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.steering-grid {
  align-items: start;
}

#clubs {
  background: var(--surface-b-gradient);
  padding-top: calc(var(--section-important) + 10px);
  padding-bottom: calc(var(--section-important) + 16px);
}

.steering-copy {
  grid-column: 2 / 10;
}

.steering-visual {
  grid-column: 2 / 12;
  grid-row: 2;
  margin-top: 56px;
}

.steering-copy h2 {
  max-width: 720px;
}

.steering-copy p {
  margin-top: 14px;
  max-width: 700px;
}

.steering-lead {
  margin-top: 16px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.32;
  color: var(--green-dark);
  font-weight: 700;
}

.steering-core {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.steering-core p {
  margin-top: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.steering-visual {
  padding-top: 0;
}

.metric-architecture {
  display: grid;
  max-width: 860px;
  gap: 46px;
}

.metric-item {
  display: grid;
  grid-template-columns: 176px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 8px 0 18px;
  border-bottom: 1px solid rgba(23, 80, 26, 0.18);
  opacity: 0;
  transform: translateY(18px);
}

.metric-index {
  margin: 0;
  font-size: clamp(84px, 9.4vw, 132px);
  line-height: 0.82;
  color: rgba(23, 80, 26, 0.14);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.metric-term {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 1.02;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.015em;
}

.metrics-visible .metric-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.metrics-visible .metric-item:nth-child(2) {
  transition-delay: 0.14s;
}

.metrics-visible .metric-item:nth-child(3) {
  transition-delay: 0.28s;
}

#zukunft {
  padding-top: calc(var(--section-important) + 30px);
  padding-bottom: calc(var(--section-important) + 20px);
  background: var(--surface-a-gradient);
}

.zukunft-wrap {
  grid-column: 2 / 12;
  max-width: none;
  text-align: center;
}

.zukunft-headline {
  color: var(--green-dark);
  font-size: clamp(34px, 3.8vw, 44px);
  line-height: 1.18;
  font-weight: 700;
}

.zukunft-lead {
  margin: 18px auto 0;
  max-width: 44ch;
  color: var(--text-muted);
}

.zukunft-quote {
  margin: 48px auto 0;
  max-width: 32ch;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.24;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: -0.012em;
}

.zukunft-source {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

#trainer {
  padding-top: calc(var(--section-padding) + 12px);
  padding-bottom: calc(var(--section-important) + 4px);
  background: var(--surface-c-gradient);
  position: relative;
  overflow: hidden;
}

#trainer::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 16%;
  width: 420px;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(46, 125, 50, 0.16) 0%,
    rgba(46, 125, 50, 0) 68%
  );
}

.trainer-grid {
  align-items: center;
  position: relative;
  z-index: 1;
}

.trainer-copy {
  grid-column: 1 / 6;
}

.trainer-copy h2,
.trainer-copy p,
.trainer-copy .plain-list {
  max-width: 38ch;
}

.trainer-copy .plain-list + h2 {
  margin-top: 36px;
}

.trainer-copy p {
  margin-top: 14px;
}

.trainer-media {
  grid-column: 6 / 13;
  display: grid;
  justify-items: start;
}

.trainer-stack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  column-gap: 12px;
  row-gap: 0;
}

.trainer-main-screen {
  width: 100%;
  max-width: 282px;
  transform: translateY(-8px) rotate(-1.6deg);
  z-index: 1;
}

.trainer-detail-screen {
  width: 100%;
  max-width: 282px;
  margin-left: -64px;
  transform: translateY(14px) rotate(2.2deg);
  z-index: 2;
}

#mentoring {
  background: var(--surface-c-gradient);
  padding-top: calc(var(--section-peak) + 18px);
  padding-bottom: calc(var(--section-peak) + 18px);
}

.integration-highlight {
  grid-column: 3 / 11;
  max-width: none;
  margin: 0;
  background: transparent;
  padding: 0 8px;
  text-align: center;
}

.integration-highlight h2 {
  color: var(--green-dark);
  margin: 0 auto;
  font-size: clamp(44px, 4.9vw, 50px);
  line-height: 1.14;
  font-weight: 800;
}

.integration-line {
  margin: 24px auto 0;
  color: var(--green-dark);
  font-weight: 600;
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.4;
  max-width: 560px;
}

.integration-line + .integration-line {
  margin-top: 10px;
}

#faq {
  padding-top: var(--section-important);
  padding-bottom: calc(var(--section-important) + 8px);
  background: var(--surface-a-gradient);
}

.faq-wrap {
  grid-column: 3 / 11;
  max-width: none;
}

.faq-wrap h2 {
  max-width: 16ch;
}

.faq-subline {
  margin-top: 16px;
  font-size: 15px;
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 44px 22px 0;
  font-size: 26px;
  line-height: 1.35;
  color: rgba(33, 33, 33, 0.78);
  font-weight: 600;
}

.faq-item summary .faq-focus {
  color: var(--text-main);
  font-weight: 700;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 34px;
  width: 15px;
  height: 2px;
  background: var(--text-muted);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}

.faq-item[open] .faq-answer {
  max-height: 280px;
  opacity: 1;
}

.faq-answer p {
  margin: 0 0 22px;
  color: var(--text-muted);
}

.faq-conversion {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 0;
}

.faq-conversion-title {
  font-size: 24px;
  color: var(--green-dark);
  font-weight: 700;
}

.faq-conversion p {
  margin-top: 10px;
}

.faq-conversion-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rollout-steps {
  margin-top: 42px;
  display: grid;
  gap: 42px;
}

#einfuehrung {
  padding-top: var(--section-important);
  padding-bottom: var(--section-important);
  background: var(--surface-b-gradient);
}

.rollout-grid {
  align-items: start;
  column-gap: 40px;
}

.rollout-main {
  grid-column: 1 / 8;
}

.rollout-main h2 {
  max-width: 20ch;
}

.rollout-access {
  margin-top: 28px;
  margin-left: 0;
  padding: 0;
  list-style: none;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  counter-reset: rollout-access;
}

.rollout-access li {
  position: relative;
  margin: 0;
  min-height: 34px;
  padding-left: 50px;
  display: flex;
  align-items: center;
  color: var(--text-main);
}

.rollout-access li::before {
  counter-increment: rollout-access;
  content: counter(rollout-access, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(23, 80, 26, 0.28);
}

.rollout-support {
  grid-column: 9 / 13;
  padding-top: 0;
  padding-left: 12px;
  display: grid;
  justify-items: start;
}

.rollout-media img {
  width: min(334px, 100%);
  transform: translateX(0) rotate(1.5deg);
}

.rollout-step {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.rollout-number {
  margin: 0;
  font-size: clamp(80px, 10vw, 120px);
  line-height: 0.76;
  color: rgba(23, 80, 26, 0.07);
  font-weight: 800;
  letter-spacing: -0.03em;
  transform: translateY(-6px);
}

.rollout-step h3 {
  color: var(--green-dark);
}

.rollout-step p {
  margin-top: 6px;
}

.rollout-pilot {
  margin-top: 42px;
  max-width: 46ch;
  color: var(--text-muted);
}

.comms-grid {
  margin-top: 120px;
  align-items: center;
  column-gap: 16px;
}

.comms-grid.standalone-comms {
  margin-top: 76px;
  padding-top: 96px;
  border-top: 1px solid var(--line-strong);
}

.comms-media {
  grid-column: 1 / 6;
  justify-items: start;
}

.comms-copy h2,
.comms-copy p,
.comms-copy .plain-list,
.comms-copy .comms-context-list {
  max-width: 28ch;
}

.comms-copy {
  grid-column: 6 / 13;
}

.comms-copy p {
  margin-top: 16px;
}

.comms-context-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.comms-context-list li {
  margin: 0;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.5;
}

.comms-media img {
  width: min(360px, 100%);
  transform: translateX(-4px) rotate(-1.8deg);
}

.claim-section {
  padding-top: calc(var(--section-important) + 22px);
  padding-bottom: calc(var(--section-important) + 30px);
  background: var(--surface-a-gradient);
}

.claim-wrap {
  grid-column: 1 / 13;
  text-align: center;
  max-width: none;
}

.claim-main {
  margin: 0 auto;
  max-width: 25ch;
  font-size: clamp(44px, 4.9vw, 60px);
  line-height: 1.14;
  color: var(--green-dark);
  font-weight: 700;
}

.claim-sub {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.55;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.form-wrap {
  grid-column: 3 / 11;
  max-width: none;
}

#demo-form {
  padding-top: var(--section-important);
  padding-bottom: var(--section-important);
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--bg-alt) 100%);
}

.form-wrap h2,
.form-wrap p {
  max-width: 30ch;
}

.form-wrap > p {
  margin-top: 14px;
}

.club-demo-form {
  margin-top: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: transparent;
  font: inherit;
  color: var(--text);
  padding: 0.72rem 0.76rem;
  min-height: 52px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(23, 80, 26, 0.2);
  border-color: var(--green-dark);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-consent {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.form-consent label {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.form-consent a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: var(--brand);
}

.form-microcopy {
  margin-top: 14px;
  font-size: 14px;
  max-width: none;
  white-space: nowrap;
}

.form-submit {
  margin-top: 14px;
  width: auto;
  max-width: none;
  font-size: 1rem;
}

.form-confirmation {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: none;
  white-space: nowrap;
}

.final-cta {
  background:
    radial-gradient(circle at 14% 18%, rgba(46, 125, 50, 0.3) 0%, rgba(46, 125, 50, 0) 42%),
    radial-gradient(circle at 86% 82%, rgba(46, 125, 50, 0.22) 0%, rgba(46, 125, 50, 0) 46%),
    linear-gradient(180deg, var(--sidebar-bg) 0%, var(--sidebar-bg-strong) 100%);
  padding-top: calc(var(--section-peak) + 20px);
  padding-bottom: calc(var(--section-peak) + 20px);
}

.final-cta-wrap {
  grid-column: 3 / 11;
  text-align: center;
}

.final-cta-wrap h2 {
  color: var(--sidebar-text);
  max-width: 20ch;
  margin: 0 auto;
  font-size: clamp(44px, 4.9vw, 52px);
  line-height: 1.12;
}

.final-cta-wrap p {
  margin: 16px auto 0;
  max-width: 44ch;
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--sidebar-muted);
}

.final-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn-primary {
  background: var(--brand-contrast);
  color: var(--green-dark);
}

.final-cta .btn-primary:hover {
  background: var(--bg-base);
}

.final-cta .btn-secondary {
  border-color: var(--sidebar-active-line);
  color: var(--sidebar-text);
}

.final-cta .btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

.final-microcopy {
  margin-top: 12px;
  font-size: 14px;
  color: var(--sidebar-muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-a-gradient);
}

.site-footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.footer-logo {
  width: clamp(132px, 14vw, 170px);
  height: auto;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-main);
}

.footer-link:hover {
  color: var(--green-dark);
}

@media (max-width: 1120px) {
  h1 {
    font-size: clamp(56px, 5.8vw, 64px);
  }

  .hero-screen {
    width: clamp(340px, 36vw, 388px);
  }
}

@media (max-width: 980px) {
  :root {
    --section-padding: 124px;
    --section-important: 140px;
    --section-peak: 164px;
  }

  .section {
    padding: var(--section-padding) 0;
  }

  .container {
    width: calc(100vw - 48px);
  }

  .grid-12 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 16px;
  }

  .hero-copy,
  .hero-media,
  .demo-copy,
  .problem-copy,
  .problem-visual,
  .steering-copy,
  .steering-visual,
  .zukunft-wrap,
  .trainer-copy,
  .trainer-media,
  .integration-highlight,
  .faq-wrap,
  .rollout-main,
  .rollout-support,
  .comms-media,
  .comms-copy,
  .claim-wrap,
  .form-wrap,
  .final-cta-wrap,
  .process-grid > h2,
  .process-grid > .section-intro-dark,
  .process-grid > .process-panel,
  .process-grid > .process-closing {
    grid-column: 1 / -1;
  }

  .site-header-inner {
    gap: 0.7rem;
    backdrop-filter: none;
  }

  .site-header.is-docked .site-header-inner {
    padding-top: 0.86rem;
    padding-bottom: 0.86rem;
    padding-left: 0;
    padding-right: 0;
  }

  .site-header .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(244, 248, 244, 0.98);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.35rem;
  }

  .site-header.menu-open nav {
    display: flex;
  }

  nav a {
    padding: 0.62rem 0.7rem;
  }

  .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    background: var(--brand);
    background-image: linear-gradient(140deg, var(--brand-strong), var(--brand));
    color: var(--white);
    margin-top: 4px;
  }

  .hero {
    padding-top: 176px;
    padding-bottom: 152px;
  }

  .hero::before {
    width: clamp(260px, 50vw, 360px);
    left: -140px;
    top: 56px;
    opacity: 0.8;
  }

  .hero::after {
    width: clamp(240px, 44vw, 320px);
    right: -110px;
    bottom: -90px;
    opacity: 0.75;
  }

  .section-dark::before {
    width: clamp(560px, 88vw, 780px);
    height: clamp(240px, 40vw, 340px);
    left: -330px;
    top: 72px;
    box-shadow:
      0 0 0 20px rgba(210, 235, 212, 0.07),
      0 0 0 44px rgba(210, 235, 212, 0.045),
      0 0 0 70px rgba(210, 235, 212, 0.03);
    opacity: 0.52;
  }

  .section-dark::after {
    width: clamp(600px, 96vw, 860px);
    height: clamp(250px, 42vw, 360px);
    right: -420px;
    bottom: 22px;
    box-shadow:
      0 0 0 18px rgba(210, 235, 212, 0.06),
      0 0 0 40px rgba(210, 235, 212, 0.04),
      0 0 0 64px rgba(210, 235, 212, 0.026);
    opacity: 0.44;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-fade {
    height: 132px;
  }

  .hero-subline,
  .hero-impact,
  .hero-points,
  .hero-microcopy,
  .demo-copy h2,
  .demo-copy p,
  .demo-copy .plain-list,
  .problem-copy h2,
  .problem-copy p,
  .problem-copy ul,
  .steering-copy h2,
  .steering-copy p,
  .steering-copy ul,
  .trainer-copy h2,
  .trainer-copy p,
  .trainer-copy ul,
  .rollout-pilot,
  .form-wrap h2,
  .form-wrap p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-points {
    justify-content: start;
  }

  .steering-core p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero-actions,
  .faq-conversion-actions,
  .final-actions {
    justify-content: flex-start;
  }

  .final-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media {
    min-height: 0;
    margin-top: 20px;
    margin-right: 0;
    padding-inline: 0;
  }

  .hero-screen {
    width: min(64vw, 312px);
  }

  .demo-copy {
    padding: 42px 30px 38px;
  }

  .hero-glow {
    right: 50%;
    transform: translateX(50%);
    top: -168px;
    width: 700px;
    height: 700px;
    filter: blur(120px);
  }

  .problem-visual {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .section-problem .problem-grid {
    margin-top: 0;
  }

  .steering-visual {
    margin-top: 40px;
  }

  .metric-architecture {
    margin-top: 20px;
    gap: 34px;
  }

  .metric-item {
    grid-template-columns: 98px 1fr;
    gap: 14px;
  }

  .metric-index {
    font-size: clamp(62px, 10vw, 92px);
  }

  .metric-term {
    font-size: clamp(32px, 5.2vw, 46px);
  }

  .faq-wrap {
    max-width: none;
  }

  .rollout-step {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .rollout-number {
    font-size: 88px;
    transform: translateY(-6px);
  }

  .rollout-access {
    gap: 12px 20px;
  }

  .rollout-support {
    margin-top: 20px;
    padding-top: 0;
    padding-left: 0;
  }

  .trainer-media,
  .rollout-media,
  .comms-media {
    justify-items: center;
    margin-top: 20px;
    padding-inline: 0;
  }

  .trainer-main-screen,
  .rollout-media img,
  .comms-media img {
    width: min(340px, 78vw);
    transform: none;
  }

  .trainer-stack {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 12px;
  }

  .trainer-main-screen {
    max-width: none;
  }

  .trainer-detail-screen {
    width: min(300px, 70vw);
    max-width: none;
    margin-top: 0;
    margin-left: 14px;
    transform: rotate(0.6deg);
  }

  .comms-grid {
    margin-top: 88px;
  }

  .comms-grid.standalone-comms {
    margin-top: 0;
    padding-top: 44px;
  }

  .comms-copy {
    order: 1;
  }

  .comms-media {
    order: 2;
  }

  .site-footer-inner {
    flex-direction: column;
    text-align: center;
    min-height: 0;
    padding: 1rem 0 1.1rem;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  :root {
    --section-padding: 88px;
    --section-important: 104px;
    --section-peak: 122px;
  }

  .app-screen {
    padding: 6px;
    border-radius: 20px;
  }

  body {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(46px, 12vw, 56px);
  }

  h2 {
    font-size: clamp(30px, 8vw, 36px);
  }

  h3 {
    font-size: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .faq-conversion-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .mobile-nav-cta {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero {
    padding-top: 148px;
    padding-bottom: 108px;
  }

  .hero::before {
    width: 300px;
    left: -178px;
    top: 82px;
    opacity: 0.66;
  }

  .hero::after {
    display: none;
  }

  .hero-glow {
    filter: blur(88px);
  }

  .section-dark::before {
    width: 480px;
    height: 220px;
    left: -280px;
    top: 58px;
    opacity: 0.5;
    box-shadow:
      0 0 0 14px rgba(210, 235, 212, 0.065),
      0 0 0 30px rgba(210, 235, 212, 0.04),
      0 0 0 48px rgba(210, 235, 212, 0.026);
  }

  .section-dark::after {
    display: none;
  }

  .hero-fade {
    height: 96px;
  }

  .hero-screen {
    width: min(74vw, 280px);
    transform: rotate(-1.8deg);
  }

  .hero-microcopy {
    text-align: center;
  }

  .demo-copy {
    border-radius: 16px;
    padding: 30px 18px 28px;
  }

  .problem-forms {
    grid-template-columns: 1fr;
    grid-template-areas:
      "break"
      "channels"
      "blind"
      "drop";
    gap: 12px;
  }

  .problem-form {
    min-height: 108px;
    padding: 10px;
  }

  .problem-form:nth-child(2),
  .problem-form:nth-child(3),
  .problem-form:nth-child(4) {
    transform: none;
  }

  .problem-form:nth-child(4) {
    width: 100%;
    justify-self: stretch;
  }

  .problem-shape {
    min-height: 48px;
  }

  .section-problem .problem-grid {
    margin-top: 0;
  }

  .problem-visual {
    display: none;
  }

  .process-panel {
    padding: 28px 16px;
  }

  .process-steps li {
    grid-template-columns: 68px 1fr;
    gap: 10px;
  }

  .process-number {
    font-size: 36px;
  }

  .metric-term {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.14;
  }

  .metric-item {
    grid-template-columns: 56px 1fr;
    gap: 8px;
    padding: 2px 0 10px;
  }

  .metric-index {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 0.9;
  }

  .faq-item summary {
    font-size: 22px;
    padding-right: 34px;
  }

  .faq-item summary::before,
  .faq-item summary::after {
    right: 2px;
    top: 31px;
  }

  .integration-highlight {
    padding: 0;
  }

  .integration-line {
    font-size: clamp(22px, 6.4vw, 26px);
  }

  .hero-media,
  .trainer-media,
  .rollout-media,
  .comms-media {
    margin-top: 18px;
    justify-items: center;
  }

  .hero-media {
    margin-top: 30px;
  }

  #trainer::before {
    display: none;
  }

  .trainer-main-screen,
  .rollout-media img,
  .comms-media img {
    width: min(72vw, 260px);
    transform: rotate(-0.6deg);
  }

  .trainer-stack {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 0;
    width: calc(100% + 84px);
    margin-left: -8px;
  }

  .trainer-detail-screen {
    width: 100%;
    max-width: none;
    margin-top: 0px;
    margin-left: -104px;
    transform: translateY(20px) rotate(2deg);
  }

  .trainer-main-screen {
    width: 100%;
    transform: translateY(14px) rotate(-1deg);
  }

  .rollout-media img {
    transform: rotate(0.8deg);
  }

  .rollout-step {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
  }

  .rollout-media {
    margin-bottom: 28px;
  }

  .comms-media img {
    transform: translateY(16px) rotate(-0.8deg);
  }

  .comms-grid.standalone-comms {
    padding-top: 32px;
  }

  .comms-media {
    justify-items: center;
  }

  .comms-media img {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-copy h2 + p,
  .problem-copy h2 + .plain-list,
  .trainer-copy h2 + p {
    margin-top: 28px;
  }

  .section h2 + p,
  .section h2 + ul {
    margin-top: 28px;
  }

  .club-demo-form {
    margin-top: 48px;
  }

  .rollout-access {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-grid {
    gap: 24px;
  }

  .final-cta-wrap h2 {
    font-size: clamp(46px, 12vw, 54px);
  }

  .final-cta-wrap p {
    font-size: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
    max-width: none;
  }

  .form-microcopy,
  .form-confirmation {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-screen,
  .reveal-group > .reveal-item,
  .process-panel,
  .metric-item,
  .faq-answer,
  .faq-item summary::before,
  .faq-item summary::after {
    transition: none;
  }

  .reveal-group > .reveal-item,
  .process-panel,
  .metric-item {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 981px) {
  .site-header-inner {
    background: rgba(244, 248, 244, 0.96);
    backdrop-filter: none;
  }

  .hero-glow {
    background: radial-gradient(
      circle at 44% 40%,
      rgba(23, 80, 26, 0.16) 0%,
      rgba(23, 80, 26, 0.09) 36%,
      rgba(23, 80, 26, 0) 72%
    );
    filter: none;
    opacity: 0.92;
  }

  .app-screen {
    box-shadow:
      0 10px 22px rgba(23, 80, 26, 0.08),
      0 2px 6px rgba(0, 0, 0, 0.04),
      inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  }
}
