﻿:root {
      --bg-main: #02070d;
      --bg-panel: rgba(5, 12, 20, .64);
      --bg-card: rgba(8, 18, 30, .58);
      --bg-soft: rgba(13, 31, 48, .48);

      --border-gold: rgba(216, 169, 68, .22);
      --border-teal: rgba(0, 214, 204, .16);

      --text: #f8fafc;
      --soft: #cbd5e1;
      --muted: #8fa3b5;

      --gold: #d8a944;
      --gold-strong: #f0c36a;
      --teal: #22b8b0;
      --teal-soft: rgba(34, 184, 176, .10);

      --shadow: 0 20px 70px rgba(0, 0, 0, .38);
      --radius: 18px;
      --radius-small: 12px;
      --page-pad: clamp(18px, 3vw, 54px);
    }

    * { box-sizing: border-box; }

    html {
      overflow-y: scroll;
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 76% 18%, rgba(0,214,204,.08), transparent 30%),
        radial-gradient(circle at 18% 8%, rgba(216,169,68,.08), transparent 28%),
        linear-gradient(135deg, #02070d 0%, #07111d 50%, #010409 100%);
      line-height: 1.55;
      display: flex;
      flex-direction: column;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(0,214,204,.028) 1px, transparent 1px),
        linear-gradient(0deg, rgba(216,169,68,.022) 1px, transparent 1px);
      background-size: 96px 96px;
      mask-image: radial-gradient(circle at 72% 20%, black, transparent 68%);
      opacity: .34;
      z-index: 0;
    }

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

    .code-rain-wrap {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      opacity: 0;
      animation: codeRainFadeIn 3.2s ease-out forwards;
      mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 78%, transparent 100%);
    }

    #codeRain {
      width: 100%;
      height: 100%;
      display: block;
      opacity: .92;
    }

    @keyframes codeRainFadeIn {
      0% { opacity: 0; }
      100% { opacity: .28; }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(18px);
      background: rgba(1, 6, 13, .88);
      border-bottom: 1px solid rgba(216,169,68,.18);
      box-shadow: 0 8px 30px rgba(0,0,0,.26);
    }

    .nav {
      width: 100%;
      margin: 0 auto;
      padding: 13px var(--page-pad);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: 220px;
    }

    .logo img {
      width: 42px;
      height: 42px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 0 0 1px rgba(216,169,68,.38), 0 10px 24px rgba(0,0,0,.32);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .logo strong {
      font-size: 18px;
      letter-spacing: .16em;
      color: #fff;
    }

    .logo span {
      font-size: 10px;
      color: var(--gold-strong);
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 8px;
    }

    .nav-links a {
      font-size: 13px;
      color: var(--soft);
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(216,169,68,.13), rgba(0,214,204,.06));
      border-color: rgba(216,169,68,.28);
      transform: translateY(-1px);
    }

    .nav-links a.portal {
      border-color: rgba(0,214,204,.30);
      color: #e6fffd;
      background: rgba(0,214,204,.06);
    }

    main {
      flex: 1;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .page {
      width: 100%;
      margin: 0 auto;
      padding: 38px var(--page-pad) 50px;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
      gap: 28px;
      align-items: stretch;
    }

    .panel,
    .product-card,
    .principle-card,
    .status-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border-gold);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(9,21,35,.68), rgba(2,8,15,.62));
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow);
    }

    .panel::before,
    .product-card::before,
    .principle-card::before,
    .status-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 0% 0%, rgba(246,200,95,.095), transparent 32%),
        radial-gradient(circle at 100% 0%, rgba(0,214,204,.055), transparent 34%);
    }

    .panel > *,
    .product-card > *,
    .principle-card > *,
    .status-card > * {
      position: relative;
      z-index: 1;
    }

    .hero-main {
      padding: clamp(28px, 3.2vw, 44px);
      min-height: 430px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-side {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 22px;
      min-height: 430px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--gold-strong);
      font-size: 12px;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 32px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold-strong), var(--teal));
    }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      margin-bottom: 22px;
      font-size: clamp(28px, 2.35vw, 40px);
      line-height: 1.02;
      letter-spacing: -.045em;
      max-width: 980px;
    }

    h2 {
      margin-bottom: 16px;
      font-size: clamp(20px, 1.45vw, 26px);
      line-height: 1.14;
      letter-spacing: -.03em;
    }

    h3 {
      margin-bottom: 8px;
      font-size: 16px;
      letter-spacing: -.01em;
    }

    .lead {
      max-width: 880px;
      margin-bottom: 28px;
      color: var(--soft);
      font-size: 16px;
      line-height: 1.58;
    }

    .text-soft { color: var(--soft); }
    .muted { color: var(--muted); }
    .highlight { color: var(--gold-strong); }
    .teal { color: var(--teal); }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(216,169,68,.32);
      background: linear-gradient(135deg, rgba(216,169,68,.18), rgba(246,200,95,.08));
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      box-shadow: none;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      border-color: rgba(246,200,95,.58);
      background: linear-gradient(135deg, rgba(216,169,68,.24), rgba(246,200,95,.10));
    }

    .btn.primary {
      background: linear-gradient(135deg, rgba(216,169,68,.92), rgba(168,116,29,.86));
      color: #06101a;
      border-color: rgba(246,200,95,.65);
    }

    .btn.teal {
      background: linear-gradient(135deg, rgba(34,184,176,.24), rgba(34,184,176,.08));
      border-color: rgba(34,184,176,.42);
      color: #e6fffd;
    }

    .snapshot {
      display: grid;
      gap: 13px;
    }

    .snapshot-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 11px 13px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-small);
      background: rgba(255,255,255,.032);
      color: var(--soft);
      font-size: 13px;
    }

    .snapshot-row strong {
      color: #fff;
      font-size: 13px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 26px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(0,214,204,.24);
      background: rgba(0,214,204,.07);
      color: #dffdfb;
      white-space: nowrap;
      font-size: 11px;
      font-weight: 700;
    }

    .badge.gold {
      border-color: rgba(216,169,68,.32);
      background: rgba(216,169,68,.10);
      color: #ffe5a3;
    }

    .section {
      margin-top: 28px;
    }

    .section-head {
      max-width: 980px;
      margin-bottom: 18px;
    }

    .section-head p {
      color: var(--soft);
      font-size: 16px;
      margin-bottom: 0;
    }

    .status-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .status-card {
      padding: 18px;
      box-shadow: none;
      border-color: rgba(216,169,68,.17);
      background: rgba(8,18,30,.44);
      backdrop-filter: blur(6px);
    }

    .status-card small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      margin-bottom: 5px;
    }

    .status-card strong {
      display: block;
      font-size: 15px;
      color: #fff;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .product-card {
      padding: 22px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-card p {
      color: var(--soft);
      font-size: 14px;
      line-height: 1.55;
      margin-bottom: 16px;
    }

    .product-top {
      display: grid;
      gap: 10px;
    }

    .product-kicker {
      color: var(--gold-strong);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .principle-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: stretch;
    }

    .principle-card {
      padding: 26px;
    }

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

    .list li {
      position: relative;
      padding-left: 26px;
      color: var(--soft);
      font-size: 14px;
    }

    .list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .72em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 3px rgba(34,184,176,.10);
    }

    .closing {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 26px;
    }

    .closing p { margin-bottom: 0; color: var(--soft); }

    .footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid rgba(216,169,68,.16);
      padding: 24px var(--page-pad) 36px;
      color: var(--muted);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 13px;
    }

    .footer a { color: var(--soft); }

    @media (prefers-reduced-motion: reduce) {
      .code-rain-wrap { display: none; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
      }
    }

    @media (max-width: 1180px) {
      .hero,
      .principle-grid,
      .closing {
        grid-template-columns: 1fr;
      }

      .hero-main,
      .hero-side {
        min-height: auto;
      }

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

    @media (max-width: 760px) {
      .nav {
        align-items: flex-start;
        flex-direction: column;
      }

      .nav-links { justify-content: flex-start; }

      .hero-main,
      .hero-side,
      .principle-card,
      .closing {
        padding: 24px;
      }

      .products-grid,
      .status-grid {
        grid-template-columns: 1fr;
      }

      h1 { font-size: 29px; }
      .lead { font-size: 16px; }
      .actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
    }

/* ========================================================= */
/* Subpages / Lösungen                                        */
/* ========================================================= */

.subpage-intro {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: end;
  padding: clamp(24px, 3vw, 42px) 0 8px;
  border-bottom: 1px solid rgba(216,169,68,.14);
}

.subpage-intro h1 {
  max-width: 760px;
  margin-bottom: 0;
}

.subpage-intro p {
  max-width: 780px;
  margin: 0 0 4px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.58;
}

.compact-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
}

.solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card {
  min-height: 260px;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.split-bottom {
  justify-content: space-between;
}

.featured-solution {
  border-color: rgba(0,214,204,.25);
  background: linear-gradient(145deg, rgba(7,25,36,.70), rgba(2,8,15,.62));
}

.text-link {
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover {
  color: #fff;
}

.compact-snapshot {
  margin-top: 20px;
}

.compact-snapshot .snapshot-row {
  grid-template-columns: .55fr 1fr;
}

.compact-snapshot .snapshot-row span {
  color: var(--soft);
  font-size: 13px;
  text-align: right;
}

.closing-actions {
  margin-top: 0;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .subpage-intro,
  .compact-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .subpage-intro {
    padding-top: 22px;
  }

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

  .solution-card {
    min-height: auto;
  }

  .split-bottom,
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .compact-snapshot .snapshot-row {
    grid-template-columns: 1fr;
  }

  .compact-snapshot .snapshot-row span {
    text-align: left;
  }
}

/* ========================================================= */
/* Feinschliff HomeFinanceSuite-Unterseiten                  */
/* Ziel: normale Web-Typografie, ruhigere Abstände            */
/* ========================================================= */

body {
  font-size: 15px;
  line-height: 1.5;
}

h1 {
  font-size: clamp(26px, 1.85vw, 34px);
  line-height: 1.08;
  letter-spacing: -.032em;
}

h2 {
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.18;
  letter-spacing: -.018em;
}

h3 {
  font-size: 15.5px;
  line-height: 1.25;
}

.page {
  padding-top: 32px;
}

.subpage-intro {
  padding: 26px 0 10px;
  gap: 24px;
}

.subpage-intro p,
.section-head p,
.panel p,
.principle-card p,
.product-card p,
.list li {
  font-size: 14px;
  line-height: 1.52;
}

.section-head {
  max-width: 900px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 10.5px;
  letter-spacing: .22em;
}

.panel {
  padding: clamp(22px, 2.2vw, 32px);
}

.panel h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.panel p:last-child {
  margin-bottom: 0;
}

.hfs-story {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, .66fr);
  gap: 28px;
  align-items: start;
}

.hfs-story-title h2 {
  margin-bottom: 0;
}

.hfs-story-text {
  max-width: 980px;
}

.products-grid {
  gap: 16px;
}

.product-card {
  min-height: 190px;
  padding: 20px;
}

.solution-card {
  min-height: 205px;
}

.product-top {
  gap: 8px;
}

.product-kicker {
  font-size: 10px;
  letter-spacing: .20em;
}

.card-bottom {
  margin-top: 12px;
}

.badge {
  min-height: 24px;
  padding: 3px 9px;
  font-size: 10.5px;
}

.status-card {
  padding: 16px;
}

.status-card small {
  font-size: 11px;
}

.status-card strong {
  font-size: 14px;
}

.principle-card {
  padding: 24px;
}

.principle-card h2 {
  font-size: 20px;
}

.list {
  gap: 8px;
}

.closing {
  padding: 24px;
}

@media (max-width: 1180px) {
  .hfs-story {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 760px) {
  h1 { font-size: 27px; }
  h2 { font-size: 19px; }
  .panel,
  .principle-card,
  .product-card {
    padding: 18px;
  }
}

/* ========================================================= */
/* Startseite: ruhige Besucherfuehrung                       */
/* ========================================================= */

.home-landing .page {
  padding-top: clamp(34px, 4vw, 64px);
}

.home-landing .hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: clamp(18px, 2.4vw, 34px);
}

.home-landing .hero-main {
  min-height: clamp(430px, 46vw, 600px);
  padding: clamp(32px, 4.2vw, 68px);
}

.home-landing .hero-side {
  min-height: clamp(430px, 46vw, 600px);
}

.home-landing .hero-main h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}

.home-landing .lead {
  max-width: 780px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.58;
  color: #e6eef6;
}

.home-landing .actions {
  margin-top: 28px;
}

.home-landing .btn {
  min-height: 44px;
  padding-inline: 18px;
}

.home-landing .section {
  margin-top: clamp(30px, 4vw, 58px);
}

.home-landing .section-head {
  max-width: 940px;
  margin-bottom: 22px;
}

.home-landing .section-head h2 {
  max-width: 840px;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.home-landing .section-head p {
  max-width: 820px;
  font-size: 16px;
  color: #dce7f1;
}

.home-landing .status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-landing a.status-card {
  display: block;
  min-height: 118px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.home-landing a.status-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 195, 106, .45);
  background: linear-gradient(145deg, rgba(12, 30, 48, .78), rgba(2, 8, 15, .66));
}

.home-landing .solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-landing .solution-card {
  min-height: 260px;
}

.home-landing .screenshot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-landing .screenshot-card {
  min-height: auto;
  gap: 16px;
}

.shot-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.shot-button:focus-visible {
  outline: 2px solid rgba(246, 200, 95, .9);
  outline-offset: 5px;
  border-radius: 20px;
}

.shot-button:hover .feature-shot {
  transform: translateY(-3px);
  border-color: rgba(246, 200, 95, .48);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .48);
}

.feature-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(0, 214, 214, .28);
  background: rgba(0, 0, 0, .32);
  box-shadow: 0 20px 38px rgba(0, 0, 0, .38);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 44px);
  background: rgba(0, 3, 8, .82);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-panel {
  width: min(1480px, 96vw);
  max-height: 92vh;
  overflow: hidden;
  border: 1px solid rgba(246, 200, 95, .28);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8, 20, 34, .96), rgba(0, 7, 13, .98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .62);
}

.lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 214, 214, .18);
}

.lightbox-head h2 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
}

.lightbox-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 214, 214, .28);
  border-radius: 999px;
  background: rgba(2, 12, 22, .88);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: rgba(246, 200, 95, .62);
  outline: none;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 76px);
  object-fit: contain;
  background: #02070d;
}

.home-landing .principle-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.home-landing .principle-card .actions {
  margin-top: auto;
}

.home-landing .closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

@media (max-width: 1180px) {
  .home-landing .hero,
  .home-landing .closing {
    grid-template-columns: 1fr;
  }

  .home-landing .status-grid,
  .home-landing .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-landing .hero-main,
  .home-landing .hero-side,
  .home-landing .principle-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .home-landing .hero-main h1 {
    font-size: 40px;
    letter-spacing: -.045em;
  }

  .home-landing .lead,
  .home-landing .section-head p {
    font-size: 15px;
  }

  .home-landing .status-grid,
  .home-landing .solution-grid {
    grid-template-columns: 1fr;
  }

  .feature-shot {
    border-radius: 14px;
  }
}

/* ========================================================= */
/* Ratgeber: lesbare Fachartikel ohne Lexikon-Gefuehl         */
/* ========================================================= */

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
}

.guide-body {
  padding: clamp(24px, 3vw, 42px);
}

.guide-body h2 {
  margin-top: 34px;
}

.guide-body h2:first-child {
  margin-top: 0;
}

.guide-body h3 {
  margin-top: 24px;
  font-size: 18px;
}

.guide-body p,
.guide-body li {
  max-width: 920px;
}

.guide-body a {
  color: #8ff6ef;
  border-bottom: 1px solid rgba(143, 246, 239, .32);
}

.guide-note {
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid rgba(0, 214, 204, .22);
  border-radius: var(--radius-small);
  background: rgba(0, 214, 204, .07);
}

.guide-list {
  display: grid;
  gap: 14px;
  padding-left: 20px;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.guide-toc {
  padding: 22px;
  position: sticky;
  top: 86px;
}

.guide-toc h2 {
  font-size: 18px;
  margin: 0 0 12px;
}

.guide-toc a {
  display: block;
  color: var(--soft);
  padding: 9px 0;
  border-bottom: 1px solid rgba(203, 213, 225, .10);
}

.guide-toc a:hover {
  color: #fff;
}

.source-list {
  padding-left: 18px;
}

.source-list li {
  font-size: 14px;
  color: var(--muted);
}

.source-list a {
  color: var(--soft);
}

@media (max-width: 1040px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-toc {
    position: static;
  }
}


