/* „Tiefsee & Bernstein“ — Dark Luxury Eco, Fokus Förderung & Sicherheit */
:root {
  --ink: #eef4f7;
  --ink-muted: #9db0bd;
  --primary: #c9a227;
  --primary-hover: #e0bc4a;
  --accent: #3dcf9a;
  --accent-dim: #1a7a5c;
  --surface: #121a21;
  --surface-2: #1a242e;
  --bg: #070b0d;
  --bg-glow: radial-gradient(ellipse 80% 50% at 70% -10%, rgba(61, 207, 154, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(201, 162, 39, 0.08), transparent 50%);
  --line: rgba(238, 244, 247, 0.1);
  --ok: #5ee3b3;
  --warn: #f0c674;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1140px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --step--1: clamp(0.8125rem, 0.78rem + 0.15vw, 0.9rem);
  --step-0: clamp(0.9375rem, 0.9rem + 0.2vw, 1.03125rem);
  --step-1: clamp(1.0625rem, 0.98rem + 0.35vw, 1.1875rem);
  --step-2: clamp(1.25rem, 1.08rem + 0.75vw, 1.55rem);
  --step-3: clamp(1.5rem, 1.2rem + 1.1vw, 1.95rem);
  --step-4: clamp(1.85rem, 1.35rem + 1.6vw, 2.45rem);
  --step-5: clamp(2.2rem, 1.5rem + 2.4vw, 3.15rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.pp-gooey-on,
html.pp-gooey-on body {
  cursor: none;
}

html.pp-gooey-on a,
html.pp-gooey-on button,
html.pp-gooey-on [role="button"],
html.pp-gooey-on input,
html.pp-gooey-on select,
html.pp-gooey-on textarea,
html.pp-gooey-on label {
  cursor: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  background-image: var(--bg-glow);
  background-attachment: fixed;
}

/* Gooey Cursor */
.pp-gooey {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
}

.pp-gooey__inner {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  filter: url(#pp-cursor-goo);
}

.pp-gooey__blob {
  position: absolute;
  left: -14px;
  top: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff6d4, var(--primary) 45%, var(--accent) 100%);
  opacity: 0.85;
  will-change: transform;
}

.pp-gooey__blob--b {
  width: 44px;
  height: 44px;
  left: -22px;
  top: -22px;
  opacity: 0.45;
  background: radial-gradient(circle at 40% 35%, rgba(61, 207, 154, 0.9), rgba(26, 122, 92, 0.4));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #8af0c8;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--surface);
  padding: 0.75rem 1rem;
  z-index: 10001;
  border: 1px solid var(--line);
  color: var(--ink);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 13, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  font-family: var(--font-head);
  font-weight: 650;
  font-size: var(--step-2);
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--ink) 0%, #c5d4de 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-tag {
  font-size: var(--step--1);
  color: var(--ink-muted);
  max-width: 36ch;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-primary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.15rem;
  align-items: stretch;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--step--1);
}

.nav-item > a:hover,
.nav-item:focus-within > a {
  background: rgba(61, 207, 154, 0.1);
  color: var(--ink);
}

.nav-item > a .chev {
  font-size: 0.65em;
  opacity: 0.65;
}

.nav-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: var(--step--1);
}

.nav-submenu a:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--primary-hover);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: var(--step--1);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease,
    box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #a8861c 100%);
  color: #0a0e11;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  color: #050708;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.75rem) 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 100% 0%, rgba(61, 207, 154, 0.07), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: var(--step-5);
  line-height: 1.06;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero .lead strong {
  color: var(--primary-hover);
}

.lead {
  font-size: var(--step-1);
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: grid;
  gap: 0.65rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 28, 34, 0.85);
  border: 1px solid var(--line);
  font-size: var(--step--1);
  color: var(--ink-muted);
}

.pill strong {
  color: var(--accent);
}

.pill-strong {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.1);
  color: var(--warn);
  font-weight: 650;
}

.media-card {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.media-caption {
  padding: 0.65rem 0.85rem;
  font-size: var(--step--1);
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

.section {
  position: relative;
  padding: clamp(2.25rem, 5vw, 3.85rem) 0;
}

.section-alt {
  background: rgba(18, 26, 34, 0.55);
  border-block: 1px solid var(--line);
}

.section h2 {
  font-family: var(--font-head);
  font-size: var(--step-4);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section h3 {
  font-family: var(--font-head);
  font-size: var(--step-2);
  margin: 1.5rem 0 0.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  max-width: 72ch;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-top: 0;
  color: var(--ink);
}

.steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(26, 36, 46, 0.9), rgba(18, 26, 33, 0.95));
}

.step-num {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0a0e11;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  flex-shrink: 0;
  font-size: var(--step--1);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

blockquote p {
  margin: 0 0 0.65rem;
  font-style: italic;
  color: var(--ink);
}

blockquote footer {
  font-size: var(--step--1);
  color: var(--ink-muted);
}

.cta-band {
  margin-top: 1.5rem;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(120deg, rgba(201, 162, 39, 0.12), rgba(61, 207, 154, 0.08));
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band strong {
  display: block;
  font-family: var(--font-head);
  font-size: var(--step-2);
  color: var(--ink);
}

.site-footer {
  background: #040608;
  color: #c5d4de;
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: #e8f4ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-note {
  font-size: var(--step--1);
  color: #7a8f9e;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

form .field {
  margin-bottom: 1rem;
}

form label {
  display: block;
  font-weight: 650;
  font-size: var(--step--1);
  margin-bottom: 0.35rem;
  color: var(--ink);
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font: inherit;
  background: var(--surface-2);
  color: var(--ink);
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  font-size: var(--step--1);
  color: var(--ink-muted);
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.alert-success {
  border-color: rgba(61, 207, 154, 0.45);
  background: rgba(61, 207, 154, 0.1);
  color: var(--ok);
}

.alert-error {
  border-color: rgba(240, 100, 100, 0.5);
  background: rgba(80, 20, 20, 0.35);
  color: #ffb4b4;
}

table.simple {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step--1);
}

table.simple th,
table.simple td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

table.simple th {
  background: rgba(61, 207, 154, 0.12);
  color: var(--ink);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

ul.check {
  padding-left: 1.1rem;
  color: var(--ink-muted);
}

ol.check {
  padding-left: 1.1rem;
  color: var(--ink-muted);
}

ol.check li {
  margin-bottom: 0.45rem;
}

ul.check li {
  margin-bottom: 0.45rem;
}

/* Horizontales Storytelling */
.story-rail-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 26, 34, 0.4), transparent);
}

.story-rail-intro {
  margin-bottom: 1.5rem;
}

.story-rail-intro h2 {
  font-family: var(--font-head);
  font-size: var(--step-4);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.story-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1.25rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-color: var(--primary) var(--surface);
}

.story-rail:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.story-panel {
  flex: 0 0 min(85vw, 340px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.story-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent));
  opacity: 0.85;
}

.story-panel__tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-hover);
  margin-bottom: 0.5rem;
}

.story-panel h3 {
  font-family: var(--font-head);
  font-size: var(--step-2);
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.story-panel p {
  margin: 0;
  font-size: var(--step--1);
  color: var(--ink-muted);
  max-width: none;
}

/* Förder-Rechner */
.pp-funding-calc {
  max-width: 520px;
}

.pp-funding-calc__row {
  margin-bottom: 1.1rem;
}

.pp-funding-calc__row label {
  display: block;
  font-weight: 650;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.pp-funding-calc input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.pp-funding-calc__nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pp-funding-calc__box {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.pp-funding-calc__box strong {
  display: block;
  font-size: var(--step-3);
  font-family: var(--font-head);
  color: var(--primary-hover);
}

.pp-funding-calc__box span {
  font-size: var(--step--1);
  color: var(--ink-muted);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .quote-grid,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-primary {
    width: 100%;
    order: 3;
    display: none;
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
  }

  .nav-primary.is-open {
    display: block;
  }

  .nav-primary ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.5rem 0.75rem;
    display: none;
    background: transparent;
  }

  .nav-item.sub-open .nav-submenu {
    display: block;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conversion: Countdown, Modal, Wizard, Sticky */
body.pp-sticky-on {
  padding-bottom: 4.75rem;
}

.pp-countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: linear-gradient(120deg, rgba(201, 162, 39, 0.14), rgba(26, 36, 46, 0.95));
  margin-bottom: 1rem;
  font-size: var(--step--1);
}

.pp-countdown strong {
  font-family: var(--font-head);
  font-size: var(--step-1);
  color: var(--warn);
}

.pp-countdown__nums {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pp-countdown__nums span {
  min-width: 3.2rem;
  text-align: center;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--accent);
}

.pp-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(4, 6, 8, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
}

.pp-sticky-cta .btn-primary {
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.pp-sticky-cta .btn-ghost {
  border-color: rgba(238, 244, 247, 0.25);
  color: #e8f1f7;
  background: transparent;
}

.pp-sticky-cta .btn-ghost:hover {
  background: rgba(61, 207, 154, 0.12);
  color: var(--accent);
}

.pp-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 6, 8, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.pp-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.pp-modal__dialog {
  width: min(100%, 520px);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.pp-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: 0;
  background: var(--surface-2);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink-muted);
}

.pp-modal__head {
  padding: 1.25rem 2.5rem 0.75rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.pp-modal__body {
  padding: 1rem 1.25rem 1.25rem;
}

.pp-exit .pp-modal__dialog {
  max-width: 440px;
  text-align: left;
}

.pp-exit .pp-modal__body p {
  margin-top: 0;
  color: var(--ink-muted);
}

.pp-wizard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pp-wizard__progress {
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.pp-wizard__progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  width: 0%;
  transition: width 0.25s ease;
}

.pp-wizard__step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-size: var(--step-2);
  color: var(--ink);
}

.pp-wizard__step p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: var(--step--1);
}

.pp-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pp-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--surface-2);
  color: var(--ink);
}

.pp-opt:hover {
  border-color: var(--accent);
  background: rgba(61, 207, 154, 0.08);
}

.pp-opt input {
  margin-top: 0.2rem;
}

.pp-wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.pp-result {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(61, 207, 154, 0.45);
  background: rgba(61, 207, 154, 0.1);
}

.pp-result.is-warn {
  border-color: rgba(240, 198, 116, 0.5);
  background: rgba(201, 162, 39, 0.1);
}

.pp-result h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-head);
  font-size: var(--step-2);
  color: var(--ok);
}

.pp-result.is-warn h3 {
  color: var(--warn);
}

.snippet-box {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--primary);
  background: rgba(201, 162, 39, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1rem 0;
  font-size: var(--step--1);
  color: var(--ink-muted);
}

.snippet-box strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
