/* ─── CSS Variables / Themes ─────────────────────────────────────────── */
:root {
  --bg:              #0A0A0B;
  --bg-soft:         #111113;
  --bg-card:         #16161A;
  --text:            #F5F5F0;
  --text-muted:      #B0B0AC;
  --text-dim:        #5C5C5A;
  --accent:          #D4FF3A;
  --accent-text:     #0A0A0B;
  --border:          #222224;
  --border-strong:   #333335;
  --headline-family: 'Inter', sans-serif;
  --headline-weight: 800;
  --headline-tracking: -0.04em;
  --body-family:     'Inter', sans-serif;
  --mono:            'JetBrains Mono', monospace;
}

[data-theme="serious"] {
  --bg:              #F8F6F1;
  --bg-soft:         #F0EDE6;
  --bg-card:         #FAFAF8;
  --text:            #1A1A18;
  --text-muted:      #6B6960;
  --text-dim:        #B0ADA5;
  --accent:          #1A1A18;
  --accent-text:     #F8F6F1;
  --border:          #E0DDD6;
  --border-strong:   #C8C5BE;
  --headline-family: 'Cormorant Garamond', serif;
  --headline-weight: 500;
  --headline-tracking: -0.02em;
}

[data-theme="engineered"] {
  --bg:              #0D1117;
  --bg-soft:         #161B22;
  --bg-card:         #1C2230;
  --text:            #E6EDF3;
  --text-muted:      #7D8590;
  --text-dim:        #3D4450;
  --accent:          #58A6FF;
  --accent-text:     #0D1117;
  --border:          #21262D;
  --border-strong:   #30363D;
  --headline-family: 'JetBrains Mono', monospace;
  --headline-weight: 700;
  --headline-tracking: -0.03em;
}

/* ─── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

img, svg { display: block; }

::selection {
  background: #D4FF3A;
  color: #0A0A0B;
}

/* ─── Utility ────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.text-accent { color: var(--accent); }
.text-dim    { color: var(--text-dim); }

/* ─── Eyebrow ────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow--inv { color: rgba(255,255,255,.55); }

.eyebrow__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body-family);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  border-radius: 0;
  transition: transform .15s ease, opacity .15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-text);
}

.btn--large {
  font-size: 17px;
  padding: 20px 28px;
}

.btn--ghost-inv {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255,255,255,.25);
  font-family: var(--body-family);
  font-weight: 500;
  font-size: 16px;
  padding: 18px 26px;
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

.btn--secondary:hover {
  box-shadow: inset 0 0 0 1px var(--text);
}

/* ─── Toggle Groups ──────────────────────────────────────────────────── */
.toggle-group {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--body-family);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  transition: all .15s ease;
}

.toggle-btn--active {
  background: var(--text);
  color: var(--bg);
}

/* ─── Checklist ──────────────────────────────────────────────────────── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-family: var(--body-family);
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l3 3 7-7' stroke='%23D4FF3A' stroke-width='2' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  flex-shrink: 0;
}

[data-theme="serious"] .checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l3 3 7-7' stroke='%231A1A18' stroke-width='2' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
}

[data-theme="engineered"] .checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l3 3 7-7' stroke='%2358A6FF' stroke-width='2' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
}

.checklist--sm li { font-size: 14px; }

/* ─── Slots Badge ────────────────────────────────────────────────────── */
.slots-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
}

.slots-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 13%, transparent);
  flex-shrink: 0;
}

.slots-dot--inv {
  box-shadow: 0 0 0 4px rgba(212,255,58,.2);
}

/* ─── Wordmark ───────────────────────────────────────────────────────── */
.wordmark {
  font-family: var(--body-family);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.wordmark__dot { color: var(--accent); }

/* ─── Foarity Mark ───────────────────────────────────────────────────── */
.foarity-mark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--body-family);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.foarity-mark__dot { color: var(--accent); }

/* ─── NAV ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--body-family);
  font-size: 14px;
  color: var(--text-muted);
}

.nav__links a:hover { color: var(--text); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all .2s ease;
}

.nav__mobile {
  border-top: 1px solid var(--border);
  padding: 16px 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--body-family);
  font-size: 16px;
  color: var(--text-muted);
}

.nav__mobile a { padding: 4px 0; }

.nav__mobile-cta {
  margin-top: 12px;
  width: 100%;
  justify-content: space-between;
}

/* ─── Sections ───────────────────────────────────────────────────────── */
.section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.section--dark {
  background: var(--bg-soft);
}

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__eyebrow-divider {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--border);
}

.hero__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(42px, 6.6vw, 96px);
  line-height: 0.96;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 0;
  max-width: 1100px;
}

.hero__sub {
  font-family: var(--body-family);
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 720px;
  margin: 36px 0 0;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
  align-items: center;
}

/* Stats strip */
.hero__stats {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 32px 24px 32px 0;
}

.stat:not(:first-child) {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.stat__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat__n {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  white-space: nowrap;
}

.stat__unit {
  font-family: var(--body-family);
  font-size: 14px;
  color: var(--text-muted);
}

.stat__label {
  font-family: var(--body-family);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ─── LOGO BAR ───────────────────────────────────────────────────────── */
.logobar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 32px;
}

.logobar__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.logobar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.logobar__logo {
  font-family: var(--headline-family);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.logobar__img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity .15s ease;
}

.logobar__img:hover { opacity: 1; }

/* ─── PAIN ───────────────────────────────────────────────────────────── */
.pain__grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 80px;
  align-items: start;
}

.pain__sticky {
  position: sticky;
  top: 96px;
}

.pain__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 24px 0;
}

.pain__sub {
  font-family: var(--body-family);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.pain__point {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: start;
}

.pain__point--last { border-bottom: none; }

.pain__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 6px;
}

.pain__point-h {
  font-family: var(--headline-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.pain__point-b {
  font-family: var(--body-family);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ─── SOLUTION ───────────────────────────────────────────────────────── */
.solution__header {
  margin-bottom: 80px;
  max-width: 900px;
}

.solution__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 28px 0;
}

.solution__sub {
  font-family: var(--body-family);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
}

.step {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.step:last-child { border-right: none; }

.step__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.step__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
}

.step__time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  padding: 2px 8px;
}

.step__title {
  font-family: var(--headline-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.step__desc {
  font-family: var(--body-family);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ─── TWO SYSTEMS ────────────────────────────────────────────────────── */
.twosystems__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

.twosystems__intro { max-width: 720px; }

.twosystems__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 28px 0 24px;
}

.twosystems__sub {
  font-family: var(--body-family);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.systems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.system-card {
  background: var(--bg-card);
  position: relative;
  border-right: 1px solid var(--border);
}

.system-card:last-child { border-right: none; }

.system-card__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.system-card__inner { padding: 48px 40px; }

.system-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.system-card__price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.system-card__title {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 12px 0 16px;
}

.system-card__sub {
  font-family: var(--body-family);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.system-card__kanal-label,
.system-card__bausteine-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.system-card__kanal {
  font-family: var(--body-family);
  font-size: 15px;
  color: var(--text);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin: 0 0 20px;
  line-height: 1.5;
}

/* ─── CASES ──────────────────────────────────────────────────────────── */
.cases__header {
  margin-bottom: 72px;
  max-width: 800px;
}

.cases__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 28px 0 0;
}

.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.case-card__header {
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.case-card__header--dark {
  background: var(--text);
  color: var(--bg);
}

.case-card__header--accent {
  background: var(--accent);
  color: var(--accent-text);
}

.case-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: .65;
  margin-bottom: 6px;
}

.case-card__name {
  font-family: var(--headline-family);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.case-card__year {
  font-family: var(--mono);
  font-size: 12px;
  opacity: .5;
}

.case-card__body {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card__desc {
  font-family: var(--body-family);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 32px;
}

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  margin: 0;
}

.case-stat {
  padding: 24px 16px 0;
  border-right: 1px solid var(--border);
}

.case-stat:last-child { border-right: none; }

.case-stat dt {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 36px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
}

.case-stat dd {
  font-family: var(--body-family);
  font-size: 13px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

/* ─── PRICING ────────────────────────────────────────────────────────── */
.pricing__header {
  margin-bottom: 40px;
  max-width: 800px;
}

.pricing__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 28px 0 24px;
}

.pricing__sub {
  font-family: var(--body-family);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.toggle-group--pricing {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 32px;
}

.toggle-group--pricing .toggle-btn {
  font-size: 14px;
  padding: 12px 20px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.tier-card {
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.tier-card:last-child { border-right: none; }

.tier-card--featured {
  background: var(--text);
  color: var(--bg);
}

.tier-card__accent-bar {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--accent);
}

.tier-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.tier-card--featured .tier-card__tag {
  color: color-mix(in srgb, var(--bg) 60%, transparent);
}

.tier-card__name {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.tier-card__price {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tier-card__units {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -8px;
}

.tier-card--featured .tier-card__units {
  color: color-mix(in srgb, var(--bg) 60%, transparent);
}

.tier-card__desc {
  font-family: var(--body-family);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 4px 0 8px;
  flex-shrink: 0;
}

.tier-card--featured .tier-card__desc {
  color: color-mix(in srgb, var(--bg) 67%, transparent);
}

.tier-card--featured .checklist li { color: var(--bg); }

.tier-card--featured .checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l3 3 7-7' stroke='%230A0A0B' stroke-width='2' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
}

.tier-card .checklist { flex: 1; }

.tier-card__cta {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: inherit;
  font-family: var(--body-family);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 16px;
  margin-top: 12px;
  cursor: pointer;
  transition: opacity .15s;
  text-align: left;
}

.tier-card__cta:hover { opacity: .8; }

.tier-card__cta--featured {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-text);
}

/* Anchor Premium-Plus */
.anchor-card {
  margin-top: 24px;
  background: var(--text);
  color: var(--bg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--border);
}

.anchor-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: .5;
  margin-bottom: 8px;
}

.anchor-card__title {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 36px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.anchor-card__desc {
  font-family: var(--body-family);
  font-size: 16px;
  line-height: 1.5;
  opacity: .7;
  max-width: 720px;
  margin: 0;
}

.anchor-card__price-wrap { text-align: right; }

.anchor-card__price {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--accent);
  color: var(--accent-text);
  display: inline-block;
  padding: 0.05em 0.18em;
}

.anchor-card__price-note {
  font-family: var(--mono);
  font-size: 12px;
  opacity: .5;
  margin-top: 8px;
}

/* ─── BONUS STACK ────────────────────────────────────────────────────── */
.bonus__grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 80px;
  align-items: start;
}

.bonus__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 28px 0 24px;
}

.bonus__sub {
  font-family: var(--body-family);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.bonus__total {
  margin-top: 32px;
  padding: 24px 28px;
  border: 1px solid var(--border-strong);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bonus__total-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bonus__total-val {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.bonus-item {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
}

.bonus-item:first-child { border-top: 1px solid var(--border-strong); }
.bonus-item:last-child  { border-bottom: 1px solid var(--border-strong); }

.bonus-item__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
}

.bonus-item__title {
  font-family: var(--headline-family);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 6px;
}

.bonus-item__desc {
  font-family: var(--body-family);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.45;
}

.bonus-item__val {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

/* ─── GUARANTEES ─────────────────────────────────────────────────────── */
.guarantees__header {
  margin-bottom: 56px;
  max-width: 720px;
}

.guarantees__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.98;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 28px 0 0;
}

.guarantees__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
}

.guarantee-card__title {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin: 20px 0 16px;
}

.guarantee-card__desc {
  font-family: var(--body-family);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Day 1 */
.day1 {
  padding: 40px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
}

.day1 > .eyebrow { margin-bottom: 28px; display: block; }

.day1__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 28px;
}

.day1__title {
  font-family: var(--headline-family);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 6px;
}

.day1__desc {
  font-family: var(--body-family);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ─── FOUNDER ────────────────────────────────────────────────────────── */
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 28px 0 24px;
}

.founder__bio {
  font-family: var(--body-family);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.founder__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.team-card__img {
  flex: 1;
  min-height: 240px;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.team-card__initials {
  font-family: var(--headline-family);
  font-weight: 800;
  font-size: 72px;
  letter-spacing: -0.04em;
  color: var(--text-dim);
  opacity: .4;
}

.team-card__photo-note {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.team-card__info {
  padding: 20px 24px;
}

.team-card__name {
  font-family: var(--headline-family);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--text);
}

.team-card__role {
  font-family: var(--body-family);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 80px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 96px;
}

.faq__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 28px 0 24px;
}

.faq__sub {
  font-family: var(--body-family);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

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

.faq-item:first-child { border-top: 1px solid var(--border-strong); }
.faq-item:last-child  { border-bottom: 1px solid var(--border-strong); }

.faq-item__q {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 28px 0;
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  align-items: center;
  color: inherit;
}

.faq-item__q span:first-child {
  font-family: var(--headline-family);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.3;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq-item--open .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  padding-bottom: 28px;
  padding-right: 48px;
  font-family: var(--body-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── FINAL CTA ──────────────────────────────────────────────────────── */
.final-cta {
  background: var(--text);
  color: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.final-cta__slots {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 60%, transparent);
  margin-bottom: 32px;
}

.final-cta__headline {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1.3;
  letter-spacing: -0.035em;
  color: var(--bg);
  margin: 0;
  max-width: 1100px;
  text-wrap: balance;
}

.final-cta__accent { color: var(--accent); }

.final-cta__highlight {
  background: var(--accent);
  color: var(--accent-text);
  padding: 0 0.18em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: inherit;
}

.final-cta__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 56px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 13%, transparent);
}

.final-cta__col-title {
  font-family: var(--headline-family);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin: 20px 0 16px;
}

.final-cta__col-desc {
  font-family: var(--body-family);
  font-size: 16px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--bg) 67%, transparent);
  margin: 0 0 28px;
}

/* Check form */
.check-form-wrap {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 13%, transparent);
}

.check-form {
  max-width: 720px;
}

.check-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--body-family);
  font-size: 15px;
  background: color-mix(in srgb, var(--bg) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--bg) 25%, transparent);
  color: var(--bg);
  padding: 12px 14px;
  border-radius: 0;
  outline: none;
  width: 100%;
  transition: border-color .15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; }

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer__tagline {
  font-family: var(--body-family);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 20px 0 0;
  max-width: 320px;
}

.footer__nav-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer nav li a {
  font-family: var(--body-family);
  font-size: 14px;
  color: var(--text-muted);
  transition: color .15s;
}

footer nav li a:hover { color: var(--text); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ─── Calendly Modal ─────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  padding: 6px 10px;
}

.modal__title {
  font-family: var(--headline-family);
  font-weight: var(--headline-weight);
  font-size: 36px;
  letter-spacing: var(--headline-tracking);
  color: var(--text);
  margin: 0 0 12px;
}

.modal__sub {
  font-family: var(--body-family);
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 32px;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */

/* 13,6" MacBook + ähnliche Laptops: Hero kompakter, damit CTA above the fold */
@media (min-width: 1025px) and (max-width: 1500px) {
  .hero { padding: 56px 0 72px; }
  .hero__eyebrow { margin-bottom: 32px; }
  .hero__headline { font-size: clamp(42px, 5.4vw, 76px); }
  .hero__sub { margin-top: 28px; font-size: 18px; }
  .hero__ctas { margin-top: 32px; }
  .hero__stats { margin-top: 56px; }
  .stat { padding: 24px 20px 24px 0; }
  .stat:not(:first-child) { padding-left: 20px; }
  .stat__n { font-size: 44px; }
}

/* 1024px */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step:nth-child(3) { border-right: none; }
  .step:nth-child(4) { border-top: 1px solid var(--border); }
  .step:nth-child(5) { border-top: 1px solid var(--border); border-right: none; }

  .pain__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pain__sticky {
    position: static;
  }

  .bonus__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq__intro {
    position: static;
  }

  .day1__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .anchor-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .anchor-card__price-wrap { text-align: left; }
}

/* 768px */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .section { padding: 80px 0; }

  .nav__inner { padding: 14px 20px; }
  .nav__links { display: none; }
  .slots-badge { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions { gap: 8px; }
  .nav__actions .btn--primary {
    font-size: 13px;
    padding: 10px 14px;
    gap: 8px;
  }

  .nav__mobile { padding: 16px 20px 20px; }

  .hero { padding: 28px 0 60px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: space-between; }

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

  .stat { padding: 20px 0; border-left: none; border-bottom: 1px solid var(--border); }
  .stat:not(:first-child) { padding-left: 0; border-left: none; }
  .stat:last-child { border-bottom: none; }
  .stat__n { font-size: 36px; }

  .logobar { padding: 28px 20px; }
  .logobar__logos { flex-wrap: nowrap; gap: 20px; justify-content: space-around; }
  .logobar__img { height: 32px; max-width: 110px; flex-shrink: 1; }

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

  .step { border-right: none; border-top: 1px solid var(--border); min-height: auto; }
  .step:first-child { border-top: none; }

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

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

  .system-card { border-right: none; border-bottom: 1px solid var(--border); }
  .system-card:last-child { border-bottom: none; }
  .system-card__inner { padding: 32px 24px; }

  .cases__grid { grid-template-columns: 1fr; }
  .case-card__header { padding: 24px; }
  .case-card__body { padding: 24px; }
  .case-stats { grid-template-columns: 1fr; }
  .case-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .case-stat:last-child { border-bottom: none; }

  .pricing-grid { grid-template-columns: 1fr; }
  .tier-card { border-right: none; border-bottom: 1px solid var(--border); }
  .tier-card:last-child { border-bottom: none; }

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

  .founder__grid { grid-template-columns: 1fr; gap: 48px; }
  .founder__team { grid-template-columns: 1fr 1fr; }

  .final-cta__grid { grid-template-columns: 1fr; gap: 48px; }
  .final-cta__col .btn { width: 100%; justify-content: space-between; }

  .check-form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

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

  .anchor-card { padding: 32px 24px; }
  .anchor-card__title { font-size: 26px; line-height: 1.1; }
  .anchor-card__price { font-size: 38px; }

  .day1 { padding: 28px 24px; }
  .day1__grid { grid-template-columns: 1fr; gap: 20px; }

  .modal__content { padding: 28px 20px; }

  .bonus-item { grid-template-columns: 40px 1fr; }
  .bonus-item__val { display: none; }
}

/* iPhone 16 + kleinere Phones */
@media (max-width: 430px) {
  .hero__eyebrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero__eyebrow-divider { display: none; }

  .hero__headline { font-size: clamp(34px, 9vw, 42px); }

  .stat__n { font-size: 32px; }

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

  .toggle-group--pricing {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .toggle-group--pricing .toggle-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .pain__point {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .pain__point-h { font-size: 22px; }

  /* Lange CTA-Texte dürfen auf 2 Zeilen wrappen */
  .btn--large {
    white-space: normal;
    text-align: left;
    line-height: 1.25;
    font-size: 16px;
    padding: 18px 22px;
  }

  /* Premium-Plus Anchor-Card iPhone-Optimierung */
  .anchor-card { padding: 24px 20px; }
  .anchor-card__title {
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .anchor-card__price { font-size: 30px; }
  .anchor-card__desc { font-size: 14px; line-height: 1.5; }
}
