/* InfraQ Unternehmensentwicklung & IT — production styles */

:root {
  /*
    Unternehmensentwicklung IT:
    - CTA: InfraQ #2e31e1
    - Anker: Deep Petrol #0f3540
    - Funnel-Akzent: Trail / Veränderung #8b6f4e
    - Zweitakzent: Cool Slate #5a7380
    - Flächen: warmes Off-White / Petrol-Tint
    - Bewusst anders als Moss, Walnut, Harbor, Steel/Clay
  */
  --cta: #2e31e1;
  --cta-hover: #2528c4;
  --cta-soft: rgba(46, 49, 225, 0.12);

  --brand: #0f3540;
  --brand-hover: #0a2a33;
  --accent: #8b6f4e;
  --accent-soft: #f0e8dc;
  --accent-cool: #5a7380;
  --accent-cool-soft: #e4ecef;

  --bg: #f4f2ec;
  --bg-soft: #e8eeef;
  --surface: #fcfbf8;
  --ink: #1a2e32;
  --muted: #5a6358;
  --dark: #0f3540;
  --dark-2: #1a4550;
  --review: #8b6f4e;
  --review-soft: #f0e8dc;
  --danger: #914b3b;
  --danger-soft: #f6e6df;
  --line: rgba(15, 53, 64, 0.12);
  --line-strong: rgba(15, 53, 64, 0.2);
  --radius: 12px;
  --radius-lg: 22px;
  --container: 1120px;
  --header-h: 84px;
  --space-2xs: clamp(0.35rem, 0.28rem + 0.25vw, 0.5rem);
  --space-xs: clamp(0.65rem, 0.55rem + 0.35vw, 0.85rem);
  --space-sm: clamp(0.9rem, 0.72rem + 0.55vw, 1.2rem);
  --space-md: clamp(1.2rem, 0.95rem + 0.8vw, 1.65rem);
  --space-lg: clamp(1.7rem, 1.35rem + 1.1vw, 2.4rem);
  --space-xl: clamp(2.4rem, 1.9rem + 1.7vw, 3.5rem);
  --space-2xl: clamp(3.2rem, 2.5rem + 2.8vw, 5.3rem);
  --space-3xl: clamp(4.2rem, 3.2rem + 4.4vw, 7rem);
  --shadow-soft: 0 8px 28px rgba(15, 53, 64, 0.06);
  --shadow-lift: 0 6px 18px rgba(15, 53, 64, 0.08);
  --focus-ring: 0 0 0 3px rgba(90, 115, 128, 0.38);
  --font-body: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --font-display: "Outfit", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.98rem + 0.14vw, 1.1rem);
  line-height: 1.65;
  color: var(--ink);
  background: #fff;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img,
object {
  display: block;
  max-width: 100%;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* ── Skip link ── */

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* ── Layout ── */

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.55rem, 1.8rem + 3.2vw, 5rem);
  max-width: none;
}

h2 {
  font-size: clamp(1.9rem, 1.5rem + 1.8vw, 3.2rem);
  max-width: none;
}

h3 {
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.6rem);
}

p {
  margin: 0 0 var(--space-sm);
  color: var(--muted);
  max-width: none;
}

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

.section-intro,
.section-copy {
  max-width: min(42rem, 100%);
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered h2 {
  max-width: min(28rem, 100%);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.region-layout .section-copy {
  max-width: none;
}

.section-kicker,
.board-label,
.eyebrow,
.check-step-label,
.result-kicker {
  display: inline-block;
  margin: 0 0 var(--space-xs);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--surface) 97%, transparent);
  box-shadow: 0 8px 20px rgba(15, 53, 64, 0.08);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-block: 0.85rem;
  transition: padding 0.22s var(--ease);
}

.site-header.is-scrolled .header-inner {
  padding-block: 0.55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  min-height: 48px;
}

.brand img,
.footer-brand img {
  display: block;
  width: auto;
  height: clamp(36px, 4vw, 40px);
  max-width: min(200px, 58vw);
  aspect-ratio: 2341 / 620;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  filter: none;
  transition: height 0.22s var(--ease);
}

.site-header.is-scrolled .brand img {
  height: clamp(32px, 3.6vw, 38px);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    color 0.18s var(--ease),
    border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 49, 225, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cta-hover);
  color: #fff;
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
  color: var(--ink);
  border-color: rgba(46, 49, 225, 0.35);
}

.hero .btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--accent-cool-soft);
  color: var(--ink);
}

.btn-text {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.btn-text:hover,
.btn-text:focus-visible {
  color: var(--ink);
  transform: none;
}

.btn-lg {
  min-height: 54px;
  padding-inline: 1.4rem;
}

.btn-nav {
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.94rem;
}

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

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-arrow {
  width: 0.48rem;
  height: 0.48rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ── Hero — Deep Petrol, Veränderungsweg ── */

.hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--space-3xl) + 0.75rem) 0 var(--space-2xl);
  background:
    radial-gradient(680px 380px at 82% -6%, rgba(46, 49, 225, 0.3), transparent 58%),
    radial-gradient(440px 260px at 6% 88%, rgba(139, 111, 78, 0.22), transparent 62%),
    radial-gradient(500px 280px at 94% 68%, rgba(90, 115, 128, 0.28), transparent 60%),
    linear-gradient(168deg, #081f26 0%, var(--dark) 42%, var(--dark-2) 72%, #1f5560 100%);
  color: #fff;
  text-align: left;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-linear-gradient(
      -32deg,
      transparent 0 10px,
      rgba(255, 255, 255, 0.025) 10px 11px
    );
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
  width: min(100% - 2rem, var(--container));
}

.hero-copy {
  min-width: 0;
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero a {
  color: #fff;
}

.hero .eyebrow {
  color: #d4c4ae;
}

.hero h1 {
  margin: 0 0 var(--space-sm);
  max-width: 17ch;
  font-size: clamp(2.15rem, 1.55rem + 2.4vw, 3.65rem);
  line-height: 1.08;
}

.hero-lead {
  max-width: 38rem;
  margin: 0 0 var(--space-lg);
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.18rem);
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-sm);
}

.hero-text-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

.hero-text-link:hover,
.hero-text-link:focus-visible {
  color: #fff;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem 1.25rem;
  margin: var(--space-lg) 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-meta li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: 0.1em;
}

.hero-meta li:nth-child(2)::before {
  background: var(--accent-cool);
}

.hero-meta li:nth-child(3)::before {
  background: var(--cta);
}

/* Hero-Visual: change-paths SVG */

.hero-visual,
.change-paths {
  margin: 0;
  min-width: 0;
  padding: clamp(1rem, 0.85rem + 0.7vw, 1.35rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 31, 38, 0.55);
  box-shadow: var(--shadow-soft);
}

.hero-visual figcaption,
.change-paths figcaption {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual img,
.hero-visual object,
.change-paths img,
.change-paths object {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.change-paths .figure-note {
  margin: 0.85rem 0 0;
  color: rgba(247, 245, 240, 0.72);
  font-size: 0.9rem;
}

.change-flow {
  display: grid;
  gap: 0.85rem;
}

.change-flow-start,
.change-flow-goal,
.change-flow-path {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  min-width: 0;
}

.change-flow-start {
  background: #0f3540;
  color: #f7f5f0;
  text-align: center;
}

.change-flow-start strong,
.change-flow-goal strong,
.change-flow-path strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
}

.change-flow-start span,
.change-flow-goal span,
.change-flow-path span:not(.change-flow-tag) {
  color: rgba(247, 245, 240, 0.72);
  font-size: 0.9rem;
}

.change-flow-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: stretch;
}

.change-flow-path {
  background: #fcfbf8;
  border: 1px solid rgba(215, 203, 184, 0.7);
  color: var(--ink);
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
}

.change-flow-path span:not(.change-flow-tag) {
  color: var(--muted);
}

.change-flow-tag {
  display: inline-block;
  margin-bottom: 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.change-flow-path.is-founding {
  border-top: 3px solid var(--accent);
}

.change-flow-path.is-takeover {
  border-top: 3px solid var(--accent-cool);
}

.change-flow-path.is-takeover .change-flow-tag {
  color: var(--accent-cool);
}

.change-flow-path.is-growth {
  border-top: 3px solid #c5d4d8;
}

.change-flow-path.is-growth .change-flow-tag {
  color: var(--brand);
}

.change-flow-goal {
  background: linear-gradient(135deg, #0f3540, #1a4550);
  color: #f7f5f0;
  text-align: center;
}

@media (max-width: 820px) {
  .change-flow-paths {
    grid-template-columns: 1fr;
  }
}

/* ── Trust strip ── */

.trust-strip {
  background: linear-gradient(90deg, var(--accent-cool-soft), #fff 42%, var(--accent-soft));
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-block: 1.15rem;
}

.trust-strip-inner p {
  margin: 0;
  padding: 0.55rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  position: relative;
}

.trust-strip-inner p::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 3px;
  margin: 0 auto 0.55rem;
  border-radius: 999px;
  background: var(--accent-cool);
}

.trust-strip-inner p:nth-child(2)::before {
  background: var(--cta);
}

.trust-strip-inner p:nth-child(3)::before {
  background: var(--accent);
}

.trust-strip-inner p:not(:last-child) {
  border-right: 1px solid var(--line);
}

@media (max-width: 768px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner p:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* ── Bridge CTA ── */

.bridge-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(46, 49, 225, 0.18);
  background:
    linear-gradient(105deg, rgba(46, 49, 225, 0.08), rgba(139, 111, 78, 0.1) 55%, rgba(90, 115, 128, 0.08));
}

.bridge-cta p {
  margin: 0;
  flex: 1 1 16rem;
  color: var(--ink);
  font-weight: 600;
  max-width: none;
}

.bridge-cta-compact {
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: var(--space-lg);
}

.bridge-cta .btn {
  flex: 0 0 auto;
}

/* ── Path picker — 4 Situationen ── */

.path-picker {
  margin-top: var(--space-xl);
}

.path-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.path-option {
  position: relative;
  display: grid;
  gap: 0.35rem;
  align-content: start;
  min-height: 7.5rem;
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.18s var(--ease),
    background 0.18s var(--ease),
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.path-option strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.12rem);
  line-height: 1.25;
  color: var(--ink);
}

.path-option span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.path-option::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 0.35rem;
  background: var(--accent-cool);
}

.path-option.is-founding::before {
  background: var(--cta);
}

.path-option.is-takeover::before {
  background: var(--accent);
}

.path-option.is-growth::before {
  background: var(--accent-cool);
}

.path-option.is-other::before {
  background: var(--brand);
}

.path-option:hover,
.path-option:focus-visible {
  border-color: rgba(46, 49, 225, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.path-option.is-selected {
  border-color: rgba(46, 49, 225, 0.42);
  background: linear-gradient(180deg, var(--cta-soft), var(--surface) 55%);
  box-shadow: inset 0 0 0 1px rgba(46, 49, 225, 0.12), var(--shadow-lift);
}

.path-option.is-selected.is-founding {
  background: linear-gradient(180deg, rgba(46, 49, 225, 0.1), var(--surface) 55%);
}

.path-option.is-selected.is-takeover {
  background: linear-gradient(180deg, var(--accent-soft), var(--surface) 55%);
}

.path-option.is-selected.is-growth {
  background: linear-gradient(180deg, var(--accent-cool-soft), var(--surface) 55%);
}

/* ── Principle steps — gleichmäßige Ablaufreihe ── */

.principle-steps {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: var(--space-xl) 0 0;
  padding: 0;
  min-width: 0;
  align-items: stretch;
}

.principle-steps::before {
  display: none;
}

.principle-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  min-height: 11.5rem;
  height: 100%;
  margin: 0;
  padding: 1.2rem 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-cool);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  align-self: stretch;
  box-sizing: border-box;
}

.principle-step:nth-child(1),
.principle-step:nth-child(2),
.principle-step:nth-child(3),
.principle-step:nth-child(4) {
  align-self: stretch;
  margin-top: 0;
  padding: 1.2rem 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-top-width: 3px;
  background: #fff;
  color: inherit;
  box-shadow: var(--shadow-soft);
}

.principle-step:nth-child(1) {
  border-top-color: var(--accent-cool);
}

.principle-step:nth-child(2) {
  border-top-color: var(--accent);
}

.principle-step:nth-child(3) {
  border-top-color: var(--cta);
}

.principle-step:nth-child(4) {
  border-top-color: var(--brand);
  background: #fff;
  color: inherit;
}

.principle-step .step-num {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-cool);
}

.principle-step:nth-child(2) .step-num {
  color: var(--accent);
}

.principle-step:nth-child(3) .step-num {
  color: var(--cta);
}

.principle-step:nth-child(4) .step-num {
  color: var(--brand);
}

.principle-step h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.02rem, 0.96rem + 0.22vw, 1.15rem);
  color: var(--ink);
}

.principle-step:nth-child(4) h3,
.principle-step:nth-child(4) p {
  color: inherit;
}

.principle-step p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: none;
}

/* ── Situation panels — unterschiedliche Split-Layouts ── */

.situation-panels {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.sit-panel {
  display: grid;
  gap: var(--space-md);
  padding: clamp(1.2rem, 1rem + 0.8vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.sit-panel.is-founding {
  border-top: 3px solid var(--cta);
  background:
    linear-gradient(135deg, rgba(46, 49, 225, 0.06), transparent 42%),
    var(--surface);
}

.sit-panel.is-takeover {
  border-left: 4px solid var(--accent);
  background:
    linear-gradient(180deg, var(--accent-soft), var(--surface) 38%);
}

.sit-panel.is-growth {
  border-right: 4px solid var(--accent-cool);
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(90, 115, 128, 0.12), transparent 58%),
    var(--surface);
}

.sit-panel-intro {
  min-width: 0;
}

.sit-panel-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  min-width: 0;
}

.sit-panel.is-founding .sit-panel-body {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
}

.sit-panel.is-takeover .sit-panel-body {
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
}

.sit-panel.is-selected {
  box-shadow: 0 0 0 2px rgba(46, 49, 225, 0.28), var(--shadow-lift);
}

.sit-panel h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--brand);
}

.sit-panel-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
}

.sit-panel.is-founding .sit-panel-label {
  color: var(--cta);
}

.sit-panel.is-growth .sit-panel-label {
  color: var(--accent-cool);
}

.sit-panel h3 {
  margin: 0 0 0.45rem;
}

.sit-panel p {
  margin: 0;
  max-width: none;
}

.sit-panel ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.sit-panel li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

.sit-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent-cool);
}

.sit-panel.is-takeover li::before {
  background: var(--accent);
}

/* ── Area rows ── */

.area-rows {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: var(--space-xl) 0 0;
  padding: 0;
  min-width: 0;
}

.area-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.32fr) minmax(0, 1fr);
  gap: 0.85rem 1.15rem;
  align-items: start;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  border-left: 3px solid var(--accent-cool);
  box-shadow: var(--shadow-soft);
}

.area-row a {
  color: var(--cta);
  text-underline-offset: 0.18em;
}

.area-row a:hover {
  color: var(--cta-hover);
}

.area-row:nth-child(2) { border-left-color: var(--cta); }
.area-row:nth-child(3) { border-left-color: var(--accent); }
.area-row:nth-child(4) { border-left-color: var(--brand); }
.area-row:nth-child(5) { border-left-color: var(--review); }
.area-row:nth-child(6) { border-left-color: var(--accent-cool); }

.area-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.area-row p,
.area-row span {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: none;
  overflow-wrap: anywhere;
}

/* ── Topic split ── */

.topic-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  min-width: 0;
}

.topic-split-col {
  min-width: 0;
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.topic-split-col:first-child {
  border-top: 3px solid var(--accent-cool);
  background: linear-gradient(180deg, var(--accent-cool-soft), #fff 45%);
}

.topic-split-col:last-child {
  border-top: 3px solid var(--accent);
  background: linear-gradient(180deg, var(--accent-soft), #fff 45%);
}

.topic-split-col h3 {
  margin: 0 0 0.5rem;
}

.topic-split-col p {
  margin: 0;
  max-width: none;
}

.topic-split-col ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.topic-split-col li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.topic-split-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 2px;
  background: currentColor;
  color: var(--accent-cool);
}

.topic-split-col:last-child li::before {
  color: var(--accent);
}

/* ── Section backgrounds — variiert ── */

.section-principles {
  background:
    radial-gradient(520px 280px at 0% 0%, rgba(90, 115, 128, 0.1), transparent 58%),
    var(--bg);
}

.section-situations {
  background:
    radial-gradient(480px 260px at 100% 0%, rgba(139, 111, 78, 0.1), transparent 55%),
    #fff;
}

.section-areas {
  background:
    radial-gradient(540px 300px at 0% 100%, rgba(46, 49, 225, 0.06), transparent 55%),
    var(--accent-cool-soft);
}

.section-topics {
  background: var(--surface);
}

.section-partner {
  background:
    radial-gradient(540px 300px at 0% 0%, rgba(46, 49, 225, 0.08), transparent 55%),
    var(--bg);
}

.section-check {
  background:
    radial-gradient(520px 280px at 100% 0%, rgba(139, 111, 78, 0.1), transparent 55%),
    #fff;
}

.section-process {
  background:
    radial-gradient(480px 240px at 0% 50%, rgba(90, 115, 128, 0.12), transparent 60%),
    var(--bg-soft);
}

/* ── Check board ── */

.check-board {
  display: block;
  width: 100%;
  margin-top: var(--space-lg);
  padding: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: visible;
}

.check-sidebar {
  padding: var(--space-xl);
  background:
    radial-gradient(280px 180px at 20% 0%, rgba(139, 111, 78, 0.16), transparent 70%),
    linear-gradient(180deg, var(--accent-cool-soft), var(--accent-soft));
  border-right: 1px solid var(--line);
}

.check-sidebar h3 {
  max-width: none;
}

.board-copy {
  margin-bottom: var(--space-lg);
  max-width: none;
}

.status-rail {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.status-rail li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.65rem 0.85rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(15, 53, 64, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  min-width: 0;
}

.status-rail li > span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.status-rail .state {
  justify-self: end;
  max-width: 100%;
  padding: 0.28rem 0.6rem;
  border-radius: 8px;
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
  overflow-wrap: anywhere;
}

.state-good {
  background: rgba(46, 49, 225, 0.12);
  color: var(--cta);
}

.state-review {
  background: var(--review-soft);
  color: #7a5a28;
}

.state-open {
  background: rgba(145, 75, 59, 0.12);
  color: var(--danger);
}

.state-neutral {
  background: rgba(90, 115, 128, 0.12);
  color: var(--accent-cool);
}

.check-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  min-height: 0;
}

@media (min-width: 1101px) {
  .check-shell {
    min-height: 0;
  }
}

.check-start {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.85fr);
  gap: clamp(1.25rem, 1rem + 1.5vw, 2.5rem);
  align-items: stretch;
  max-width: none;
}

.check-start-main {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-width: 0;
}

.check-start .board-label {
  margin: 0;
  overflow: visible;
}

.check-start h3 {
  margin: 0;
  max-width: none;
}

.check-start > p,
.check-start-main > p {
  margin: 0;
  max-width: none;
  color: var(--muted);
}

.check-start .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.check-reassure {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-start-aside {
  margin: 0;
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--accent-soft), #fff 70%);
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.check-start-aside strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--ink);
}

.check-start-aside ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.check-start-aside li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.check-start-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 820px) {
  .check-start {
    grid-template-columns: 1fr;
  }
}

.board-start-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0 0 var(--space-lg);
}

.board-start-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink);
  font-weight: 600;
}

.board-start-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.check-progress {
  margin-bottom: var(--space-lg);
}

.check-step-label {
  color: var(--brand);
}

.check-progress-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 53, 64, 0.1);
  overflow: hidden;
}

.check-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-cool), var(--accent), var(--cta));
  transition: width 0.32s var(--ease);
}

.check-stage {
  flex: 1;
}

.check-nav {
  margin-top: var(--space-md);
}

.question {
  display: grid;
  align-content: start;
}

.question-title {
  max-width: min(42rem, 100%);
}

.question-hint {
  margin-top: calc(var(--space-xs) * -1);
  margin-bottom: var(--space-sm);
  color: var(--muted);
  max-width: min(52rem, 100%);
}

.option-grid {
  display: grid;
  gap: 0.75rem;
}

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

.option-btn {
  width: 100%;
  min-height: 68px;
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.18s var(--ease),
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.option-btn:hover,
.option-btn:focus-visible {
  border-color: rgba(46, 49, 225, 0.35);
  background: var(--cta-soft);
  box-shadow: 0 4px 12px rgba(15, 53, 64, 0.04);
}

.option-btn.is-selected {
  border-color: rgba(46, 49, 225, 0.42);
  background: var(--cta-soft);
  box-shadow: inset 0 0 0 1px rgba(46, 49, 225, 0.14);
}

.question-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.multi-actions {
  margin-top: var(--space-md);
}

.check-result {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  display: grid;
  gap: var(--space-md);
}

.result-panel {
  padding: var(--space-lg);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 242, 236, 0.85));
}

.result-panel.level-solid {
  border-color: rgba(90, 115, 128, 0.28);
}

.result-panel.level-review {
  border-color: rgba(139, 111, 78, 0.28);
}

.result-panel.level-elevated {
  border-color: rgba(145, 75, 59, 0.24);
}

.result-kicker {
  color: var(--brand);
}

.result-panel.level-review .result-kicker {
  color: #7a5a28;
}

.result-panel.level-elevated .result-kicker {
  color: var(--danger);
}

.result-panel h3 {
  max-width: none;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: var(--space-sm);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent-cool-soft);
  color: var(--accent-cool);
}

.result-panel.level-review .result-badge {
  background: var(--review-soft);
  color: #7a5a28;
}

.result-panel.level-elevated .result-badge {
  background: var(--danger-soft);
  color: var(--danger);
}

.result-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: var(--space-md) 0 var(--space-sm);
  padding: 0;
}

.result-list li {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.result-list li div {
  display: grid;
  gap: 0.2rem;
}

.result-list strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.result-list span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.result-subhead {
  margin: var(--space-md) 0 var(--space-xs);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}

.result-points {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 0 0 var(--space-sm);
}

.result-points li {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.result-points li div {
  display: grid;
  gap: 0.2rem;
}

.result-points strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.result-points span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.mark {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.35rem;
  border-radius: 50%;
}

.mark-ok {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 53, 64, 0.12);
}

.mark-review {
  background: var(--review);
  box-shadow: 0 0 0 4px rgba(139, 111, 78, 0.12);
}

.mark-elevated {
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(145, 75, 59, 0.12);
}

.result-recs {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0 0 var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
}

.result-recs li {
  display: grid;
  gap: 0.2rem;
}

.result-recs strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.result-recs span {
  color: var(--muted);
  font-size: 0.94rem;
}

.result-note {
  margin: var(--space-sm) 0 var(--space-md);
  font-size: 0.88rem;
  color: var(--muted);
  max-width: min(60rem, 100%);
}

.result-cta-block {
  margin-top: var(--space-md);
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(46, 49, 225, 0.2);
  background: linear-gradient(135deg, rgba(46, 49, 225, 0.08), rgba(139, 111, 78, 0.1));
}

.result-cta-lead {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-weight: 600;
  max-width: none;
}

/* ── Kontaktformular ── */

#kontakt {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.check-contact {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line);
}

.contact-head {
  max-width: min(48rem, 100%);
  margin-bottom: var(--space-md);
}

.contact-head h3 {
  max-width: min(34rem, 100%);
}

.contact-form {
  display: grid;
  gap: var(--space-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

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

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(46, 49, 225, 0.42);
  box-shadow: var(--focus-ring);
}

.hint {
  color: var(--muted);
  font-weight: 500;
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--cta);
  flex-shrink: 0;
}

.form-reassure {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: none;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-error,
.form-success {
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.form-error {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(145, 75, 59, 0.18);
  font-weight: 700;
}

.form-success {
  background: linear-gradient(180deg, rgba(46, 49, 225, 0.08), var(--accent-cool-soft));
  border-color: rgba(46, 49, 225, 0.2);
}

.form-success h3 {
  max-width: none;
}

#kontakt.section-partner {
  background:
    radial-gradient(520px 280px at 100% 0%, rgba(139, 111, 78, 0.12), transparent 55%),
    #fff;
}

#kontakt .check-contact {
  margin-top: var(--space-lg);
  padding: clamp(1.2rem, 1rem + 1vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

#kontakt .contact-head {
  max-width: none;
}

/* ── Process list ── */

.process-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:nth-child(1) .process-number { color: var(--cta); }
.process-list li:nth-child(2) .process-number { color: var(--accent-cool); }
.process-list li:nth-child(3) .process-number { color: var(--accent); }
.process-list li:nth-child(4) .process-number { color: var(--brand); }

.process-number {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-list p {
  margin: 0;
}

/* ── Region — dunkle Section ── */

.section-region {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  color: #fff;
}

.section-region .section-kicker,
.section-region h2,
.section-region p {
  color: #fff;
}

.section-region .section-kicker {
  color: #d4c4ae;
}

.section-region p {
  color: rgba(255, 255, 255, 0.78);
}

.region-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-lg);
}

.region-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.region-list li {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.region-list li:nth-child(1) {
  border-color: rgba(46, 49, 225, 0.55);
  background: rgba(46, 49, 225, 0.22);
}

.region-list li:nth-child(2) {
  border-color: rgba(139, 111, 78, 0.55);
  background: rgba(139, 111, 78, 0.22);
}

.region-list li:nth-child(3) {
  border-color: rgba(90, 115, 128, 0.5);
  background: rgba(90, 115, 128, 0.2);
}

/* ── FAQ — volle Antwortbreite ── */

.section-faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-md);
}

.section-faq .section-copy {
  max-width: min(40rem, 100%);
}

.faq-list {
  width: 100%;
  max-width: none;
  min-width: 0;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 1.1rem 2.25rem 1.1rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0 0 1.15rem;
  padding: 0;
  width: 100%;
  max-width: none;
  text-align: left;
  line-height: 1.65;
  overflow-wrap: break-word;
}

/* ── Close CTA — dunkle Section ── */

.section-close {
  background:
    radial-gradient(560px 300px at 85% 0%, rgba(46, 49, 225, 0.38), transparent 62%),
    radial-gradient(420px 240px at 8% 100%, rgba(139, 111, 78, 0.26), transparent 60%),
    radial-gradient(380px 220px at 50% 100%, rgba(90, 115, 128, 0.22), transparent 58%),
    linear-gradient(165deg, #081f26, var(--dark) 55%, var(--dark-2));
  color: #fff;
}

.close-panel {
  max-width: min(48rem, 100%);
}

.section-close .section-kicker,
.section-close h2,
.section-close p {
  color: #fff;
}

.section-close .section-kicker {
  color: #d4c4ae;
}

.section-close h2 {
  max-width: none;
}

.section-close p {
  color: rgba(255, 255, 255, 0.8);
  max-width: min(52rem, 100%);
}

.close-panel .hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.close-panel .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.close-panel .btn-secondary:hover,
.close-panel .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ── Footer ── */

.site-footer {
  background: var(--bg-soft);
  color: var(--muted);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid var(--line);
}

.footer-top,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.footer-top {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--line);
}

.footer-brand-block {
  display: grid;
  gap: 0.55rem;
  max-width: 18rem;
}

.footer-brand {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  padding-top: var(--space-md);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Mobile CTA bar ── */

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 70;
  display: none;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(252, 251, 248, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-cta .btn {
  width: 100%;
  border-radius: 999px;
}

/* ── Legal pages ── */

.legal-page {
  min-height: 60vh;
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-2xl);
  background: var(--surface);
}

.legal-page .container {
  max-width: 760px;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: var(--space-md);
}

.legal-page h2 {
  margin-top: var(--space-lg);
  font-size: clamp(1.2rem, 1.08rem + 0.45vw, 1.5rem);
}

.legal-page h3 {
  margin-top: var(--space-md);
  font-size: 1.05rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  padding-left: 1.2rem;
  margin: 0 0 var(--space-sm);
}

.legal-page li {
  margin-bottom: 0.35rem;
}

.legal-page a {
  color: var(--brand);
}

/* ── Utility ── */

.figure-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: none;
}

.stack-gap {
  margin-top: var(--space-xl);
}

.nav .btn-secondary.btn-nav-mobile {
  margin-top: 0.55rem;
  color: var(--brand);
  border: 1px solid var(--line-strong);
  background: #fff;
}

.nav .btn-primary.btn-nav-mobile {
  margin-top: 0.55rem;
}

/* ── Focus & accessibility ── */

:focus-visible {
  outline: 3px solid var(--accent-cool);
  outline-offset: 2px;
}

/* ── Responsive ── */

@media (max-width: 1100px) {
  .check-board {
    grid-template-columns: 1fr;
  }

  .check-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-visual,
  .change-paths {
    max-width: 34rem;
    margin-inline: auto;
  }

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

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

  .sit-panel.is-founding,
  .sit-panel.is-takeover {
    grid-template-columns: 1fr;
  }

  .sit-panel.is-growth .sit-panel-body {
    grid-template-columns: 1fr;
  }

  .topic-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
  }

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

  .btn-nav {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    padding: 0.85rem 1rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    background: var(--surface);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-list a {
    display: block;
    padding: 0.7rem 0;
  }

  .btn-nav-mobile {
    display: inline-flex;
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .process-list li {
    grid-template-columns: 3.2rem minmax(0, 1fr);
  }

  .area-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .option-grid.cols-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .check-start .btn,
  .contact-form .btn,
  .multi-actions .btn,
  .question-footer .btn {
    width: 100%;
  }

  .check-shell,
  .check-sidebar {
    padding: var(--space-lg);
  }

  .mobile-cta:not([hidden]) {
    display: block;
  }

  body:has(.mobile-cta:not([hidden])) {
    padding-bottom: 5rem;
  }

  .path-picker-grid {
    grid-template-columns: 1fr;
  }

  .principle-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .status-rail li {
    grid-template-columns: 1fr;
  }

  .status-rail .state {
    justify-self: start;
    text-align: left;
  }

  .brand img,
  .footer-brand img {
    height: 34px;
    max-width: min(170px, 52vw);
  }

  .option-btn {
    min-height: 60px;
  }

  .path-option {
    min-height: auto;
  }

  .sit-panel-body {
    grid-template-columns: 1fr;
  }

  .entry-paths {
    grid-template-columns: 1fr;
  }
}

/* Extra layout hooks used by this funnel HTML */

.path-picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.entry-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.entry-path {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.entry-path h3 {
  margin: 0 0 0.4rem;
}

.entry-path p {
  margin: 0 0 1rem;
  max-width: none;
}

.principle-note {
  margin: var(--space-lg) 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
  max-width: none;
}

.section-costs .area-rows {
  margin-top: var(--space-lg);
}

.figure-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.multi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.result-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .entry-paths {
    grid-template-columns: 1fr;
  }

  .sit-panel-body,
  .sit-panel.is-founding .sit-panel-body,
  .sit-panel.is-takeover .sit-panel-body {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero::before {
    opacity: 0.1;
  }
}
