:root {
  --ink: #f4f3ef;
  --muted: #a5a8b6;
  --muted-strong: #c8c9d1;
  --bg: #101218;
  --bg-soft: #171923;
  --panel: #1c1f2b;
  --panel-2: #232735;
  --line: rgba(255,255,255,.11);
  --lime: #d7f36a;
  --lime-deep: #b6d547;
  --coral: #ff8e70;
  --blue: #8ab7ff;
  --violet: #b59cff;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(0,0,0,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% -10%, rgba(181,156,255,.14), transparent 33rem),
    radial-gradient(circle at -10% 30%, rgba(215,243,106,.08), transparent 27rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; top: auto; }
.skip:focus { left: 16px; top: 16px; z-index: 100; padding: 10px 14px; background: var(--lime); color: #101218; border-radius: 8px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16,18,24,.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.topbar-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.03em; text-decoration: none; white-space: nowrap; }
.brand-mark {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  color: #101218; background: var(--lime); font-size: 15px; font-weight: 900;
  box-shadow: 0 0 0 5px rgba(215,243,106,.09);
}
.brand small { color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.topbar-label { color: var(--muted); font-size: 13px; }

.hero { padding: 88px 0 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr); gap: 62px; align-items: end; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin: 20px 0 24px; font-size: clamp(3rem, 8vw, 6.8rem); line-height: .94; letter-spacing: -.075em; font-weight: 800; }
h1 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 680px; margin-bottom: 30px; color: var(--muted-strong); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; gap: 9px; padding: 12px 17px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 750; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); border-color: rgba(215,243,106,.7); }
.button.primary { color: #101218; background: var(--lime); border-color: var(--lime); }
.button.secondary { color: var(--muted-strong); background: rgba(255,255,255,.04); }
.hero-note { align-self: center; padding: 25px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-note .quote { margin: 0 0 22px; color: var(--ink); font-size: 1.55rem; line-height: 1.22; letter-spacing: -.04em; }
.hero-note .quote::before { content: "“"; display: block; color: var(--coral); font-size: 50px; line-height: .5; }
.note-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(215,243,106,.1); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 64px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--line); }
.stat { padding: 19px 20px; background: rgba(255,255,255,.035); }
.stat strong { display: block; margin-bottom: 3px; color: var(--lime); font-size: 1.45rem; letter-spacing: -.05em; }
.stat span { color: var(--muted); font-size: 13px; }

.section { padding: 72px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.section-heading h2 { margin: 9px 0 0; font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1; letter-spacing: -.065em; }
.section-heading p { max-width: 370px; margin: 0; color: var(--muted); font-size: 14px; }

.path { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.path-item { position: relative; min-height: 125px; padding: 17px; background: var(--panel); border: 1px solid var(--line); border-radius: 15px; text-decoration: none; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.path-item:hover, .path-item:focus-visible { transform: translateY(-4px); background: var(--panel-2); border-color: rgba(215,243,106,.55); }
.path-item::after { content: "↗"; position: absolute; right: 14px; bottom: 11px; color: var(--muted); font-size: 17px; }
.path-number { display: block; margin-bottom: 17px; color: var(--lime); font-size: 12px; font-weight: 800; }
.path-item strong { display: block; max-width: 125px; font-size: 14px; line-height: 1.25; }

.catalog { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.course-card { display: flex; flex-direction: column; min-height: 100%; background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.course-card:hover, .course-card:focus-visible { transform: translateY(-5px); border-color: rgba(215,243,106,.58); box-shadow: var(--shadow); }
.course-top { display: flex; align-items: start; justify-content: space-between; gap: 15px; margin-bottom: 29px; }
.course-index { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 11px; color: #101218; background: var(--lime); font-weight: 900; }
.course-time { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; white-space: nowrap; }
.course-time::before { content: "◷"; color: var(--coral); font-size: 17px; }
.course-card h3 { max-width: 460px; margin: 0 0 11px; font-size: clamp(1.35rem, 2.5vw, 1.85rem); line-height: 1.08; letter-spacing: -.045em; }
.course-pitch { min-height: 52px; margin-bottom: 23px; color: var(--muted-strong); font-size: 14px; line-height: 1.5; }
.module-preview { padding-top: 17px; border-top: 1px solid var(--line); }
.module-label { display: block; margin-bottom: 9px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.module-preview ol { margin: 0; padding: 0; list-style: none; counter-reset: modules; }
.module-preview li { display: flex; gap: 10px; align-items: baseline; margin: 6px 0; color: var(--muted-strong); font-size: 13px; line-height: 1.35; }
.module-preview li::before { counter-increment: modules; content: counter(modules, decimal-leading-zero); flex: 0 0 auto; color: var(--lime); font-size: 10px; font-weight: 800; }
.card-footer { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: auto; padding-top: 22px; color: var(--lime); font-size: 13px; font-weight: 800; }
.card-footer span:last-child { font-size: 20px; line-height: 1; }

.details-wrap { padding-top: 28px; }
.detail { scroll-margin-top: 90px; display: grid; grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr); gap: 38px; padding: 34px 0; border-top: 1px solid var(--line); }
.detail:last-child { border-bottom: 1px solid var(--line); }
.detail-kicker { margin-bottom: 12px; color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.detail h3 { margin-bottom: 10px; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.05; letter-spacing: -.05em; }
.detail-intro { margin-bottom: 15px; color: var(--muted); font-size: 14px; }
.detail-meta { display: inline-flex; gap: 8px; align-items: center; padding: 8px 11px; color: var(--muted-strong); background: rgba(255,255,255,.05); border-radius: 9px; font-size: 12px; }
.detail-meta b { color: var(--lime); }
.detail-content { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(200px, .8fr); gap: 28px; }
.detail-content h4 { margin: 0 0 12px; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.detail-modules { margin: 0; padding: 0; list-style: none; }
.detail-modules li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px; }
.detail-modules li span { color: var(--lime); font-size: 11px; font-weight: 800; }
.folder-links { margin: 0; padding: 0; list-style: none; }
.folder-links li { margin: 7px 0; }
.folder-links a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 11px; color: var(--muted-strong); background: rgba(255,255,255,.035); border-radius: 8px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; text-decoration: none; }
.folder-links a:hover, .folder-links a:focus-visible { color: var(--ink); background: rgba(215,243,106,.1); }
.folder-links a::after { content: "↗"; color: var(--lime); font-family: inherit; }

.closing { margin: 78px 0 0; padding: 45px; background: var(--lime); color: #101218; border-radius: var(--radius); }
.closing h2 { max-width: 700px; margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3.7rem); line-height: .98; letter-spacing: -.065em; }
.closing p { max-width: 650px; margin: 0; color: #38421c; font-size: 16px; }
footer { margin-top: 72px; padding: 25px 0 34px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.staging { color: var(--coral); font-weight: 750; }

.botkit {
  margin: 72px 0 0;
  padding: 48px 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(138,183,255,.08), rgba(255,255,255,.02) 40%, var(--panel));
  box-shadow: var(--shadow);
}
.botkit-head { margin-bottom: 28px; max-width: 720px; }
.botkit-head h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.botkit-head p { margin: 0; color: var(--muted-strong); font-size: 1.05rem; }
.botkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.bot-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(16,18,24,.55);
  border: 1px solid var(--line);
}
.bot-card .tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.bot-card h3 { margin: 0 0 8px; font-size: 1.15rem; letter-spacing: -.03em; }
.bot-card p { margin: 0 0 14px; color: var(--muted); font-size: 13.5px; line-height: 1.45; min-height: 60px; }
.bot-card .meta { color: var(--lime); font-size: 12px; font-weight: 700; }
.botkit-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,142,112,.35);
  color: var(--muted-strong);
  font-size: 13px;
  background: rgba(255,142,112,.06);
}
.botkit-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 650px) {
  .botkit { padding: 28px 20px; }
}


.future {
  margin: 72px 0 0;
  padding: 48px 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(215,243,106,.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(181,156,255,.18), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(215,243,106,.12), transparent 40%),
    linear-gradient(160deg, #1a1f2e 0%, #12151d 100%);
  box-shadow: var(--shadow);
}
.future-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 36px;
  align-items: center;
}
.future .eyebrow { margin-bottom: 14px; }
.future h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.future-lead {
  margin: 0 0 22px;
  color: var(--muted-strong);
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 560px;
}
.future-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.future-points li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.future-points .mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(215,243,106,.16);
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}
.future-points strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
}
.future-points span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.future-visual {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.future-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
}
.future-tagline {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -.03em;
  font-weight: 700;
  max-width: 820px;
}
.future-tagline em { color: var(--lime); font-style: normal; }
@media (max-width: 900px) {
  .future { padding: 32px 24px; }
  .future-grid { grid-template-columns: 1fr; }
}


.hero-visual {
  margin-top: 42px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: inherit;
}
.visual-section { padding: 56px 0; }
.visual-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.visual-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: inherit;
}
.visual-caption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  max-width: 720px;
}
.course-card {
  padding: 0;
  overflow: hidden;
}
.course-cover {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}
.course-body { padding: 22px 25px 25px; display: flex; flex-direction: column; flex: 1; }
.course-card .course-top { margin-bottom: 18px; }
@media (max-width: 650px) {
  .hero-visual img, .visual-frame img { max-height: 280px; }
  .course-cover { height: 150px; }
  .course-body { padding: 18px 21px 21px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-note { max-width: 600px; }
  .path { grid-template-columns: repeat(3, 1fr); }
  .detail { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 650px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .topbar-label { display: none; }
  .hero { padding: 62px 0 50px; }
  h1 { font-size: clamp(3.1rem, 16vw, 5.5rem); }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 15px 17px; }
  .section { padding: 52px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 15px; }
  .path { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .path-item { min-height: 110px; padding: 13px; }
  .catalog { grid-template-columns: 1fr; }
  .course-card { padding: 0; }
  .course-pitch { min-height: auto; }
  .detail-content { grid-template-columns: 1fr; gap: 22px; }
  .closing { padding: 28px 23px; }
  .footer-inner { display: block; }
  .footer-inner span + span { display: block; margin-top: 8px; }
}

/* Multi-page nav */
.topbar-inner { gap: 16px; flex-wrap: wrap; }
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 6px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255,255,255,.05);
  border-color: var(--line);
}
.site-nav a.is-active {
  color: #101218;
  background: var(--lime);
  border-color: var(--lime);
}
.page-intro { padding: 48px 0 8px; }
.page-intro h1 {
  max-width: 820px;
  margin: 14px 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.page-intro .lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}
.teaser-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.teaser-card {
  display: block;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}
.teaser-card:hover,
.teaser-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(215,243,106,.55);
}
.teaser-card .eyebrow { margin-bottom: 10px; }
.teaser-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  letter-spacing: -.03em;
}
.teaser-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.teaser-card .more {
  display: inline-block;
  margin-top: 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}
.closing-short { margin-top: 48px; padding: 28px 32px; }
.closing-short h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .site-nav { justify-content: flex-start; width: 100%; }
  .teaser-row { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .site-nav a { padding: 6px 9px; font-size: 12px; }
}



/* —— Abschluss page —— */
.abschluss-block {
  padding: 36px 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(181,156,255,.16), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(215,243,106,.10), transparent 40%),
    linear-gradient(160deg, #1a1f2e 0%, #12151d 100%);
  box-shadow: var(--shadow);
}
.abschluss-block-alt {
  background:
    radial-gradient(circle at 0% 0%, rgba(215,243,106,.14), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(181,156,255,.14), transparent 42%),
    linear-gradient(160deg, #1a1f2e 0%, #12151d 100%);
}
.abschluss-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 36px;
  align-items: center;
}
.abschluss-grid-flip {
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
}
.abschluss-block .eyebrow { margin-bottom: 14px; }
.abschluss-block h2 {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.abschluss-lead {
  margin: 0 0 20px;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 540px;
}
.abschluss-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.abschluss-points li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.abschluss-points .mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(215,243,106,.16);
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}
.abschluss-points strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
}
.abschluss-points span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.abschluss-visual {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  margin: 0;
}
.abschluss-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
}
.abschluss-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.abschluss-emphasis {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(215,243,106,.35);
  background: rgba(215,243,106,.08);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.abschluss-cert img {
  max-height: 520px;
  object-fit: contain;
  background: #0e1016;
}
.abschluss-summary {
  padding: 36px 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.abschluss-summary h2 {
  margin: 10px 0 22px;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -.045em;
}
.abschluss-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pfad;
}
.abschluss-path li {
  position: relative;
  padding: 16px 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  counter-increment: pfad;
}
.abschluss-path li::before {
  content: counter(pfad, decimal-leading-zero);
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.abschluss-path strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -.02em;
}
.abschluss-path span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}
.abschluss-tagline {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.35;
}
.abschluss-tagline em { color: var(--lime); font-style: normal; }
@media (max-width: 900px) {
  .abschluss-block { padding: 28px 22px; }
  .abschluss-grid,
  .abschluss-grid-flip { grid-template-columns: 1fr; }
  .abschluss-path { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .abschluss-path { grid-template-columns: 1fr; }
  .abschluss-visual img { max-height: 280px; }
}
.teaser-row-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .teaser-row-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 650px) {
  .teaser-row-4 { grid-template-columns: 1fr; }
}

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


/* —— Bot-Kit page —— */
.bk-hero { padding: 0; }
.bk-hero-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.bk-hero-media > img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 40%;
  opacity: .55;
}
.bk-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 48px 0 56px;
  background:
    linear-gradient(180deg, rgba(16,18,24,.25) 0%, rgba(16,18,24,.72) 45%, rgba(16,18,24,.96) 100%),
    radial-gradient(circle at 15% 80%, rgba(215,243,106,.12), transparent 42%);
}
.bk-hero-overlay h1 {
  max-width: 860px;
  margin: 14px 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.07em;
}
.bk-hero-lead {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.55;
}
.bk-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.bk-hero-save {
  margin: 0;
  color: var(--lime);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.bk-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bk-benefit {
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(215,243,106,.07), rgba(255,255,255,.02) 50%, var(--panel));
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease;
}
.bk-benefit:hover { transform: translateY(-3px); border-color: rgba(215,243,106,.45); }
.bk-benefit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(215,243,106,.14);
  color: var(--lime);
  font-size: 18px;
  font-weight: 800;
}
.bk-benefit h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}
.bk-benefit p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14.5px;
  line-height: 1.55;
}

.bk-import-block {
  padding: 36px 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(138,183,255,.16), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(215,243,106,.10), transparent 40%),
    linear-gradient(160deg, #1a1f2e 0%, #12151d 100%);
  box-shadow: var(--shadow);
}
.bk-import-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 36px;
  align-items: center;
}
.bk-import-block .eyebrow { margin-bottom: 14px; }
.bk-import-block h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.bk-import-lead {
  margin: 0 0 22px;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 540px;
}
.bk-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bk-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.bk-step-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--lime);
  color: #101218;
  font-size: 14px;
  font-weight: 900;
}
.bk-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15.5px;
  letter-spacing: -.02em;
}
.bk-steps span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.bk-import-more {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 800;
}
.bk-import-more a {
  color: var(--lime);
  text-decoration: none;
}
.bk-import-more a:hover,
.bk-import-more a:focus-visible { text-decoration: underline; }
.bk-import-visual {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  margin: 0;
}
.bk-import-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
}

.bk-bots {
  display: grid;
  gap: 22px;
}
.bk-bot-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.02) 45%, var(--panel));
  box-shadow: var(--shadow);
  transition: border-color .2s ease, transform .2s ease;
}
.bk-bot-card:hover {
  border-color: rgba(215,243,106,.42);
  transform: translateY(-2px);
}
.bk-bot-icon {
  overflow: hidden;
  width: 140px;
  height: 140px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(215,243,106,.18), transparent 55%),
    var(--panel-2);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.bk-bot-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bk-bot-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bk-bot-body h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.bk-bot-desc {
  margin: 0 0 12px;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.55;
  max-width: 720px;
}
.bk-bot-for {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.bk-bot-for strong { color: var(--ink); font-weight: 750; }
.bk-starter {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(181,156,255,.28);
  background: rgba(181,156,255,.07);
}
.bk-starter-label {
  display: block;
  margin-bottom: 6px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.bk-starter p {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
  font-style: italic;
}
.bk-bot-meta {
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .02em;
}
.bk-bot-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bk-support-visual {
  margin: 36px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}
.bk-support-visual img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center top;
}
.bk-support-visual figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  border-top: 1px solid var(--line);
}

.bk-safety {
  padding: 36px 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,142,112,.28);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,142,112,.10), transparent 40%),
    linear-gradient(160deg, #1a1f2e 0%, #12151d 100%);
  box-shadow: var(--shadow);
}
.bk-safety .eyebrow { margin-bottom: 14px; }
.bk-safety h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  letter-spacing: -.055em;
  line-height: 1.05;
}
.bk-safety-lead {
  margin: 0 0 22px;
  max-width: 640px;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.55;
}
.bk-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.bk-safety-grid li {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.bk-safety-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14.5px;
  letter-spacing: -.02em;
}
.bk-safety-grid span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.bk-safety-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,142,112,.35);
  background: rgba(255,142,112,.06);
  color: var(--muted-strong);
  font-size: 13.5px;
  line-height: 1.5;
}

.bk-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(215,243,106,.32);
  background:
    radial-gradient(circle at 100% 50%, rgba(215,243,106,.16), transparent 45%),
    linear-gradient(135deg, #1c2214 0%, #12151d 55%, #1a1f2e 100%);
  box-shadow: var(--shadow);
}
.bk-cta-band .eyebrow { margin-bottom: 12px; }
.bk-cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -.05em;
  line-height: 1.05;
}
.bk-cta-band p {
  margin: 0;
  max-width: 520px;
  color: var(--muted-strong);
  font-size: 14.5px;
  line-height: 1.5;
}
.bk-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .bk-hero-media > img { max-height: 420px; }
  .bk-hero-overlay { position: relative; padding: 36px 0 40px; background: linear-gradient(180deg, rgba(16,18,24,.85), rgba(16,18,24,.98)); }
  .bk-hero-media > img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; }
  .bk-benefits { grid-template-columns: 1fr; }
  .bk-import-block { padding: 28px 22px; }
  .bk-import-grid { grid-template-columns: 1fr; }
  .bk-bot-card { grid-template-columns: 96px 1fr; gap: 18px; padding: 22px; }
  .bk-bot-icon { width: 96px; height: 96px; border-radius: 16px; }
  .bk-safety { padding: 28px 22px; }
  .bk-safety-grid { grid-template-columns: 1fr; }
  .bk-cta-band { flex-direction: column; align-items: flex-start; padding: 28px 22px; }
}
@media (max-width: 650px) {
  .bk-bot-card { grid-template-columns: 1fr; }
  .bk-bot-icon { width: 112px; height: 112px; }
  .bk-import-visual img { max-height: 260px; }
  .bk-support-visual img { max-height: 240px; }
  .bk-hero-overlay h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
}


.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-nav .nav-ico {
  font-size: 14px;
  line-height: 1;
  opacity: .95;
}
.site-nav a.is-active .nav-ico { opacity: 1; }
.future-compact { margin-top: 56px; }
.future-compact .future-lead { font-size: 1.02rem; }
.future-compact .future-points span { font-size: 13px; }


/* —— Premium navigation (final override) —— */
.topbar {
  background: rgba(10, 12, 18, .78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.28);
}
.topbar::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215,243,106,.35), rgba(181,156,255,.25), transparent);
  pointer-events: none;
}
.topbar { position: sticky; }
.topbar-inner { min-height: 74px; }

.brand {
  padding: 6px 4px;
  border-radius: 12px;
  transition: transform .2s ease, filter .2s ease;
}
.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.brand-mark {
  box-shadow:
    0 0 0 5px rgba(215,243,106,.1),
    0 8px 24px rgba(215,243,106,.18);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -.015em;
  border: 1px solid transparent;
  background: transparent;
  overflow: hidden;
  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lime), rgba(181,156,255,.9));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}

.site-nav .nav-ico {
  font-size: 14px;
  line-height: 1;
  opacity: .88;
  transition: transform .22s ease, opacity .22s ease, filter .22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border-color: rgba(215,243,106,.28);
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(0,0,0,.28),
    0 0 0 1px rgba(215,243,106,.08),
    0 0 24px rgba(215,243,106,.08);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav a:hover .nav-ico,
.site-nav a:focus-visible .nav-ico {
  opacity: 1;
  transform: translateY(-1px) scale(1.08);
  filter: drop-shadow(0 0 8px rgba(215,243,106,.35));
}

.site-nav a:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}

.site-nav a.is-active {
  color: #101218;
  background: linear-gradient(180deg, #e7f98a 0%, var(--lime) 55%, var(--lime-deep) 100%);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 8px 22px rgba(215,243,106,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.site-nav a.is-active::after { display: none; }

.site-nav a.is-active .nav-ico {
  opacity: 1;
  filter: none;
}

.site-nav a.is-active:hover,
.site-nav a.is-active:focus-visible {
  color: #101218;
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(215,243,106,.34),
    inset 0 1px 0 rgba(255,255,255,.4);
  filter: brightness(1.03);
}

@media (max-width: 900px) {
  .site-nav {
    justify-content: flex-start;
    width: 100%;
    border-radius: 18px;
  }
}
@media (max-width: 650px) {
  .site-nav a { padding: 8px 11px; font-size: 12px; gap: 5px; }
  .site-nav .nav-ico { font-size: 13px; }
}

/* —— Marketing landing (checkout funnel draft) —— */
.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #101218;
  background: linear-gradient(180deg, #e7f98a 0%, var(--lime) 55%, var(--lime-deep) 100%);
  border: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.015em;
  box-shadow: 0 8px 22px rgba(215,243,106,.28), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.lp-nav-cta:hover,
.lp-nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(215,243,106,.34), inset 0 1px 0 rgba(255,255,255,.4);
}
.lp-brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 0 5px rgba(215,243,106,.09), 0 8px 24px rgba(215,243,106,.18);
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(215,243,106,.35);
  background: rgba(215,243,106,.08);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lp-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.lp-audience-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.lp-audience-card.not-for {
  border-color: rgba(255,142,112,.28);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,142,112,.08), transparent 50%),
    linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.lp-audience-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}
.lp-audience-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.lp-audience-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted-strong);
  font-size: 14.5px;
  line-height: 1.45;
}
.lp-audience-card li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
}
.lp-audience-card.not-for li::before {
  content: "–";
  color: var(--coral);
}
.lp-include-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.lp-include-card {
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .18s ease, border-color .18s ease;
}
.lp-include-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215,243,106,.45);
}
.lp-include-card .tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lp-include-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: -.03em;
}
.lp-include-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: lpstep;
}
.lp-steps li {
  position: relative;
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(215,243,106,.06), rgba(255,255,255,.02) 50%, var(--panel));
  counter-increment: lpstep;
}
.lp-steps li::before {
  content: counter(lpstep, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.lp-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  letter-spacing: -.03em;
}
.lp-steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.lp-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 16px;
  align-items: stretch;
}
.lp-price-card {
  padding: 32px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}
.lp-price-card.primary {
  border-color: rgba(215,243,106,.45);
  background:
    radial-gradient(circle at 100% 0%, rgba(215,243,106,.16), transparent 45%),
    linear-gradient(160deg, #1c2214 0%, #12151d 55%, #1a1f2e 100%);
  box-shadow: var(--shadow);
}
.lp-price-card .eyebrow { margin-bottom: 12px; }
.lp-price-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -.045em;
}
.lp-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 8px;
}
.lp-price strong {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: -.07em;
  line-height: 1;
  color: var(--lime);
}
.lp-price-card.primary .lp-price strong { color: var(--lime); }
.lp-price span {
  color: var(--muted);
  font-size: 14px;
}
.lp-price-note {
  margin: 0 0 20px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.5;
}
.lp-price-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.lp-price-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.4;
}
.lp-price-list li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
}
.lp-price-card.secondary .lp-price strong {
  color: var(--muted-strong);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}
.lp-faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
}
.lp-faq details {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: 0;
  overflow: hidden;
}
.lp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 750;
  letter-spacing: -.02em;
  font-size: 15px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  float: right;
  color: var(--lime);
  font-weight: 900;
}
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.lp-final {
  margin: 0;
  padding: 48px 42px;
  border-radius: var(--radius);
  background: var(--lime);
  color: #101218;
  box-shadow: var(--shadow);
}
.lp-final h2 {
  max-width: 700px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.lp-final p {
  max-width: 620px;
  margin: 0 0 22px;
  color: #38421c;
  font-size: 16px;
}
.lp-final .button.primary {
  color: var(--lime);
  background: #101218;
  border-color: #101218;
}
.lp-final .button.secondary {
  color: #101218;
  background: rgba(16,18,24,.08);
  border-color: rgba(16,18,24,.18);
}
.lp-staging-banner {
  margin: 0 0 28px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,142,112,.4);
  background: rgba(255,142,112,.08);
  color: var(--muted-strong);
  font-size: 13.5px;
  line-height: 1.45;
}
.lp-staging-banner strong { color: var(--coral); }
@media (max-width: 900px) {
  .lp-audience,
  .lp-include-grid,
  .lp-steps,
  .lp-pricing { grid-template-columns: 1fr; }
  .lp-final { padding: 32px 24px; }
}
@media (max-width: 650px) {
  .lp-include-grid { grid-template-columns: 1fr; }
}

/* —— Member login (mock auth) —— */
.login-page {
  min-height: calc(100vh - 70px - 72px);
  display: flex;
  align-items: center;
  padding: 56px 0 64px;
}
.login-wrap {
  max-width: 460px;
  width: min(460px, calc(100% - 40px));
  margin: 0 auto;
}
.login-card {
  padding: 36px 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 0%, rgba(181,156,255,.12), transparent 18rem),
    linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.login-card-head {
  text-align: center;
  margin-bottom: 26px;
}
.login-logo {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 5px rgba(215,243,106,.1), 0 12px 32px rgba(215,243,106,.2);
}
.login-card-head .eyebrow {
  justify-content: center;
}
.login-card-head h1 {
  margin: 12px 0 10px;
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -.055em;
  max-width: none;
}
.login-lead {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.login-form {
  display: grid;
  gap: 14px;
}
.login-field {
  display: grid;
  gap: 7px;
}
.login-field span {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.login-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(12,14,20,.65);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.login-field input::placeholder {
  color: var(--muted);
  opacity: .7;
}
.login-field input:focus {
  border-color: rgba(215,243,106,.55);
  box-shadow: 0 0 0 3px rgba(215,243,106,.12);
}
.login-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 13px 18px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid var(--lime);
  border-radius: 999px;
  color: #101218;
  background: var(--lime);
}
.login-submit:hover,
.login-submit:focus-visible {
  transform: translateY(-2px);
}
.login-demo {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.login-demo p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.login-demo .button {
  width: 100%;
  justify-content: center;
}
.login-back {
  margin: 20px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}
.login-back a {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
}
.login-back a:hover,
.login-back a:focus-visible {
  text-decoration: underline;
}
.login-owner-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11.5px;
  opacity: .72;
  letter-spacing: .01em;
}
@media (max-width: 520px) {
  .login-card { padding: 28px 20px 22px; }
  .login-page { padding: 36px 0 48px; }
}


/* —— Manual crypto checkout (lp-pay-*) —— */
.lp-pay-config-note {
  margin: 0 0 22px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(215,243,106,.45);
  background: rgba(215,243,106,.07);
  color: var(--muted-strong);
  font-size: 13.5px;
  line-height: 1.45;
}
.lp-pay-config-note strong { color: var(--lime); }
.lp-pay-config-note code,
.lp-staging-banner code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  color: var(--lime);
}

.lp-pay-layout {
  display: grid;
  gap: 22px;
  max-width: 720px;
}

.lp-pay-card {
  padding: 28px 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, rgba(215,243,106,.1), transparent 16rem),
    linear-gradient(150deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.lp-pay-card-head { margin-bottom: 20px; }
.lp-pay-card-head h3 {
  margin: 8px 0 8px;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}
.lp-pay-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.lp-pay-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lp-pay-form {
  display: grid;
  gap: 14px;
}

.lp-pay-field {
  display: grid;
  gap: 7px;
}
.lp-pay-field span {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lp-pay-field input,
.lp-pay-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(12,14,20,.65);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  appearance: none;
}
.lp-pay-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.lp-pay-field input::placeholder { color: var(--muted); opacity: .7; }
.lp-pay-field input:focus,
.lp-pay-field select:focus {
  border-color: rgba(215,243,106,.55);
  box-shadow: 0 0 0 3px rgba(215,243,106,.12);
}

.lp-pay-submit {
  justify-content: center;
  margin-top: 4px;
  cursor: pointer;
  font: inherit;
  border: none;
}

.lp-pay-form-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,142,112,.45);
  background: rgba(255,142,112,.1);
  color: var(--coral);
  font-size: 13.5px;
}

.lp-pay-warnings {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.lp-pay-warnings li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.lp-pay-warnings li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 800;
}

.lp-pay-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.lp-pay-fact {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.lp-pay-fact-wide { grid-column: 1 / -1; }
.lp-pay-fact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lp-pay-fact strong {
  color: var(--lime);
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.lp-pay-code-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-pay-code-row code,
.lp-pay-address,
.lp-pay-tag,
.lp-pay-crypto-amount {
  flex: 1 1 200px;
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(215,243,106,.28);
  background: rgba(12,14,20,.72);
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.4;
  word-break: break-all;
}

.lp-pay-copy {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted-strong);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.lp-pay-copy:hover,
.lp-pay-copy:focus-visible {
  border-color: rgba(215,243,106,.55);
  color: var(--ink);
  transform: translateY(-1px);
}
.lp-pay-copy:disabled {
  opacity: .75;
  cursor: default;
  transform: none;
  color: var(--lime);
  border-color: rgba(215,243,106,.4);
}

.lp-pay-rate {
  margin: 8px 0 0;
  color: var(--muted-strong);
  font-size: 13px;
}
.lp-pay-rate-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.lp-pay-address-block,
.lp-pay-tag-row {
  margin-bottom: 14px;
}
.lp-pay-tag-hint {
  margin: 6px 0 0;
  color: var(--coral);
  font-size: 12.5px;
}

.lp-pay-alert {
  margin: 8px 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,142,112,.4);
  background: rgba(255,142,112,.09);
  color: var(--muted-strong);
  font-size: 13.5px;
  line-height: 1.45;
}
.lp-pay-alert strong { color: var(--coral); }
.lp-pay-alert-ok {
  border-color: rgba(215,243,106,.4);
  background: rgba(215,243,106,.09);
}
.lp-pay-alert-ok strong,
.lp-pay-alert-ok { color: var(--muted-strong); }

.lp-pay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-pay-actions .button {
  cursor: pointer;
  font: inherit;
}
.lp-pay-actions .button.secondary {
  background: rgba(255,255,255,.04);
}
.lp-pay-mailto-disabled {
  opacity: .55;
  cursor: not-allowed;
}
.lp-pay-mailto-hint {
  margin: 12px 0 0;
  color: var(--coral);
  font-size: 13px;
}

@media (max-width: 650px) {
  .lp-pay-facts { grid-template-columns: 1fr; }
  .lp-pay-card { padding: 22px 18px 20px; }
}
