html {
  scroll-behavior: smooth;
}

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

:root {
  --bg: #05060a;
  --bg-elevated: #10121a;
  --bg-elevated-soft: #141724;
  --border-subtle: #272a3a;
  --text: #f5f5f7;
  --text-muted: #b3b3c2;
  --gold: #f5d27a;
  --gold-soft: rgba(245, 210, 122, 0.16);
  --danger: #ff6b6b;
  --blue: #4aa3ff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.4);
  --transition-fast: 160ms ease-out;
  --transition-med: 220ms ease-out;
}

html,
.brand-gold { color: var(--gold); }
.brand-white { color: #ffffff; }
.brand-wordmark { font-weight: 700; letter-spacing: 0.02em; }

body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #171925 0, #05060a 52%, #020307 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

/* Topbar */

.topbar {
  position: fixed;
  inset: 0 0 auto;
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.98), rgba(5, 6, 10, 0.9));
  border-bottom: 1px solid rgba(245, 210, 122, 0.28);
  z-index: 20;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 0;
  object-fit: contain;
  background: #000000;
  box-shadow: 0 0 12px rgba(245, 210, 122, 0.6);
  border: 1px solid rgba(245, 210, 122, 0.9);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.topbar-nav a {
  opacity: 0.82;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background var(--transition-fast), opacity var(--transition-fast), transform 120ms ease-out;
}

.topbar-nav a:hover {
  opacity: 1;
  background: rgba(245, 210, 122, 0.16);
  transform: translateY(-1px);
}

/* Burger */

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.55);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.burger-btn span {
  height: 2px;
  width: 18px;
  border-radius: 999px;
  background: var(--gold);
  margin: 0 auto;
}

/* Side menu */

.side-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
  z-index: 29;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: #05060a;
  border-left: 1px solid var(--border-subtle);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.75);
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: right var(--transition-med);
  z-index: 30;
}

.side-menu.open {
  right: 0;
}

.side-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu-close {
  align-self: flex-end;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.side-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  font-size: 14px;
}

.side-menu-nav a {
  padding: 7px 10px;
  border-radius: 999px;
  background: transparent;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.side-menu-nav a:hover {
  background: rgba(245, 210, 122, 0.16);
}

/* Hero */

.hero {
  margin-bottom: 28px;
}

.hero-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
}

.hero-title-row .info-toggle {
  margin: 0 0 8px 0;
}

.hero h1 {
  font-size: 30px;
  letter-spacing: 0.03em;
  margin: 0;
}

.hero-text {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}


.hero-entry-block {
  margin-top: 12px;
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-entry-block--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 8px;
}

.hero-entry {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-entry--solo {
  max-width: 620px;
  margin: 10px auto 8px;
}

.hero-entry-card .entry-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-entry-card .entry-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.hero-entry-card .entry-title {
  font-weight: 600;
}

.hero-entry-card .entry-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-entry .info-toggle {
  align-self: center;
  margin-top: 6px;
}

.entry-card--primary {
  width: 100%;
  max-width: 780px;
  box-shadow: var(--shadow-soft);
  border-width: 1.5px;
}

.entry-card--secondary {
  width: 100%;
  max-width: 620px;
}

.entry-card--compact {
  width: 100%;
  max-width: 460px;
}

.subsection-title--entry {
  max-width: 980px;
  margin: 22px auto 10px;
}

.subsection-title--intent {
  margin-top: 8px;
  margin-bottom: 10px;
}

.subsection-title--code {
  margin: 0 0 4px;
}

.code-section--entry {
  max-width: 980px;
  margin: 0 auto 18px;
}

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

  .hero-entry--solo {
    max-width: 100%;
    margin-top: 8px;
  }
}
.hero-advanced {
  margin-top: 8px;
  margin-bottom: 12px;
}
.entry-icon--plain {
  background: transparent;
  border: none;
  box-shadow: none;
}
.entry-icon--large {
  width: 40px;
  height: 40px;
  font-size: 26px;
}
/* Entry cards */

/* Entry cards */

.entry-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;

  max-width: 980px;
  margin: 0 auto;
}

.entry-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 18, 26, 0.98), rgba(10, 12, 20, 0.98));
  border: 1px solid rgba(245, 210, 122, 0.3);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.entry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245, 210, 122, 0.24), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.entry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 210, 122, 0.8);
  box-shadow: var(--shadow-soft);
}

.entry-card:hover::before {
  opacity: 1;
}

.entry-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #ffffff, #f5d27a 40%, #94631f 100%);
  box-shadow: 0 0 16px rgba(245, 210, 122, 0.5);
}

.entry-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.entry-title {
  font-weight: 600;
  font-size: 15px;
}

.entry-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* Code section */

.code-section {
  margin-top:16px;
  margin-bottom: 16px;
  padding: 18px 20px 20px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(245, 210, 122, 0.06), transparent 52%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 55%),
    linear-gradient(135deg, #151822, #05060a);
  border: 1px solid rgba(245, 210, 122, 0.28);
  box-shadow: var(--shadow-soft);
}

.code-section h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.code-section p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.code-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.code-section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.code-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.info-toggle--center {
  align-self: center;
}

.info-panel--code {
  max-width: 860px;
  margin: 0 auto 12px;
}

.code-input {
  flex: 1 1 220px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.35);
  background: rgba(3, 4, 8, 0.9);
  color: var(--text);
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.code-input::placeholder {
  color: #666a7a;
}

.code-feedback {
  margin-top: 8px;
  min-height: 18px;
  font-size: 14px;
}

.code-feedback.success {
  color: var(--gold);
}

.code-feedback.error {
  color: var(--danger);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  font-size: 13px;
  padding: 7px 14px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform 120ms ease-out,
    box-shadow var(--transition-fast);
  white-space: normal;
}


.btn-gold {
  background: linear-gradient(135deg, #f5d27a, #c18a2f);
  border-color: #f5d27a;
  color: #15110b;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(245, 210, 122, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 0 16px rgba(245, 210, 122, 0.55);
  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-gold {
  border-color: rgba(245, 210, 122, 0.85);
  color: var(--gold);
  background: rgba(245, 210, 122, 0.04);
}

.btn-outline-gold.locked {
  position: relative;
}

.btn-outline-gold.locked::before {
  content: "🔒";
  margin-right: 2px;
}

.btn-outline-gold:hover {
  background: rgba(245, 210, 122, 0.12);
}

.btn-shortcut-icon {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.btn-shortcut-icon.is-active {
  border-color: rgba(245, 210, 122, 0.85);
  color: var(--gold);
  background: rgba(245, 210, 122, 0.08);
}

/* Filters */

.filters {
  margin-top: 4px;
  margin-bottom: 9px;
}

.filters-mini-title {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 6px 0 10px;
}

.filters-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
}

.filters-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.filters-label {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  margin-right: 4px;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.35);
  background: transparent;
  color: var(--text-muted);
  padding: 7px 13px;
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast),
    transform 120ms ease-out;
}

.filter-btn:hover {
  border-color: rgba(245, 210, 122, 0.7);
  color: var(--text);
}

.filter-btn.active {
  background: rgba(245, 210, 122, 0.18);
  border-color: rgba(245, 210, 122, 0.9);
  color: var(--gold);
  transform: translateY(-1px);
}

/* Tools grid */

.tools-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Section headers */


.tools-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px auto 8px;
  width: 100%;
}

.tools-section-icon {
  width: 26px;
  height: 26px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(245, 210, 122, 0.08);
}

.tools-section-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background-color: rgba(245, 210, 122, 0.06);
}

.tools-section-line {
  flex: 1;
  max-width: 260px;
  min-width: 80px;
  height: 2px;
  box-shadow: 0 0 12px rgba(245, 210, 122, 0.5);
}

.tools-section-line-left {
  background: linear-gradient(to left, rgba(245, 210, 122, 0.9), transparent);
}

.tools-section-line-right {
  background: linear-gradient(to right, rgba(245, 210, 122, 0.9), transparent);
}

var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.tool-card:hover {
  border-color: rgba(245, 210, 122, 0.7);
  box-shadow: 0 0 12px rgba(245, 210, 122, 0.25);
  transform: translateY(-2px);
}

.tool-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.tool-card-main {
  display: block;
}

.tool-kind-icon {
  width: 28px;
  height: 28px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: radial-gradient(circle at 30% 0, #ffffff, #f5d27a 42%, #8b5a16 100%);
}

.tool-card[data-tool-id="warumKrypto"] .tool-kind-icon {
  color: var(--blue);
}

.tool-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tool-kind-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.tool-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tool-badges {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tool-variant-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 6px;
}


.badge {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid transparent;
}


.badge-free {
  background: #e1e4eb;
  color: #111;
  border-color: transparent;
}




.badge-plus {
  background: var(--gold);
  color: #111;
  border-color: transparent;
}



.tool-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}


.info-btn {
  border-color: var(--gold);
  color: var(--gold);
}



.info-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.tool-card-body {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Info panel */

.tool-info-panel {
  margin-top: 10px;
  border-radius: 14px;
  background: #0a0c12;
  border: 1px solid rgba(245, 210, 122, 0.25);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.tool-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 12px 18px;
}

.tool-info-block-title {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 3px;
}

.tool-info-block p {
  margin: 0;
}

/* Footer */

.page-footer {
  position: relative;
  margin-top: 34px;
  padding: 24px 16px 18px;
  background: rgba(1, 1, 3, 0.98);
  color: rgba(245, 245, 247, 0.9);
}

.page-footer::before {
  content: "";
  display: block;
  width: min(700px, calc(100% - 40px));
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.page-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.16);
}

.page-footer-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.page-footer-disclaimer {
  margin: 0 auto 12px;
  max-width: 980px;
  font-size: 11.5px;
  line-height: 1.28;
  color: rgba(245, 245, 247, 0.95);
  text-wrap: balance;
}

.page-footer-break {
  display: inline;
}

.page-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  line-height: 1.25;
  color: rgba(245, 245, 247, 0.95);
}

.page-footer-copy {
  white-space: nowrap;
}

.page-footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.page-footer a {
  color: rgba(245, 245, 247, 0.96);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.page-footer a:hover {
  color: rgba(245, 245, 247, 0.96);
}

/* Responsive */

@media (max-width: 640px) {
  .page-footer {
    margin-top: 26px;
    padding: 22px 14px 16px;
  }

  .page-footer::before {
    width: min(520px, calc(100% - 28px));
    margin-bottom: 12px;
  }

  .page-footer-disclaimer,
  .page-footer-meta {
    font-size: 11px;
    line-height: 1.35;
  }

  .page-footer-copy {
    white-space: normal;
  }

  .page-footer-break {
    display: none;
  }
}

@media (max-width: 880px) {
  .desktop-nav {
    display: none;
  }
  .page {
    padding: 80px 14px 64px;
  }
  .entry-row {
    grid-template-columns: minmax(0, 1fr);
  
  max-width: 980px;
  margin: 0 auto;
}
}

@media (max-width: 640px) {
  .page { padding-top: 18px; }

  .tool-info-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .tool-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tool-card-actions {
    align-self: stretch;
  }
  .code-section {
    padding: 16px 14px 18px;
  }
}


.faq-insights-btn {
  margin-top: 6px;
}

.side-menu-nav li { list-style: none !important; }

.faq-insights-btn { margin-top:4px; }


.tools-intro {
  max-width: 100%;
  margin: 0 0 12px 0;
  padding: 0;
}

.tools-intro-title {
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.tools-intro-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}


.subsection-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 14px;}



.tools-intro .subsection-title {
  margin-bottom: 6px;
}

.tools-intro-subtitle {
  margin-top: 0;
  margin-bottom: 16px;
}

/* Intent Router (Bevor du etwas machst) */

.intent-section {
  margin: 14px 0 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(245, 210, 122, 0.10), rgba(16, 18, 26, 0.9));
  border: 1px solid rgba(245, 210, 122, 0.22);
  box-shadow: var(--shadow-subtle);
}

.intent-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.intent-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.intent-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.intent-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.intent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.intent-group {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(10, 12, 18, 0.42);
  overflow: hidden;
}

.intent-group + .intent-group {
  margin-top: 10px;
}

.intent-group-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.intent-group-summary::-webkit-details-marker {
  display: none;
}

.intent-group-summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.intent-group-head {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.intent-group-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(245, 210, 122, 0.96);
}

.intent-group-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.intent-group-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.intent-group-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(245, 245, 247, 0.95);
  border: 1px solid rgba(245, 210, 122, 0.22);
  background: rgba(245, 210, 122, 0.10);
}

.intent-group-chevron {
  font-size: 11px;
  color: rgba(245, 245, 247, 0.78);
  transition: transform var(--transition-fast);
}

.intent-group[open] .intent-group-chevron {
  transform: rotate(180deg);
}

.intent-group-body {
  padding: 0 14px 14px;
}

.intent-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.intent-card {
  appearance: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(16, 18, 26, 0.75);
  padding: 11px 12px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.intent-card:hover {
  border-color: rgba(245, 210, 122, 0.32);
  background: rgba(20, 23, 36, 0.88);
}

.intent-card-header {
  display: flex;
  align-items: center;
  gap: 9px;
}

.intent-card-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(245, 210, 122, 0.12);
  border: 1px solid rgba(245, 210, 122, 0.18);
  font-size: 14px;
  flex: 0 0 auto;
}

.intent-card-title {
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--text);
  flex: 1 1 auto;
  min-width: 0;
}

.intent-card-sub {
  display: none;
}

/* Quicklinks */
.quicklinks {
  position: relative;
  z-index: 5;
  background: transparent;
  border: 1px solid rgba(245, 210, 122, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 10px;
}

.quicklinks-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quicklink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.55);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(245, 210, 122, 0.95);
  font-size: 12.5px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.quicklink::after {
  content: "↘";
  font-size: 12px;
  opacity: 0.75;
}

.quicklink:hover {
  background: rgba(245, 210, 122, 0.14);
}

.quicklink:focus-visible {
  outline: 2px solid rgba(245, 210, 122, 0.75);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .quicklinks-inner {
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 6px;
    justify-content: space-between;
  }
  .quicklink {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    padding: 7px 6px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .quicklinks-inner { gap: 4px; }
  .quicklink { padding: 7px 4px; font-size: 12.8px; }
}



/* Intent Modal */

.intent-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.intent-modal.is-open {
  display: block;
}

.intent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.intent-modal-card {
  position: relative;
  width: min(720px, calc(100% - 24px));
  margin: 72px auto;
  border-radius: var(--radius-lg);
  background: rgba(10, 12, 18, 0.96);
  border: 1px solid rgba(245, 210, 122, 0.25);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-height: calc(100vh - 120px);
  max-height: calc(100dvh - 120px);
  display: flex;
  flex-direction: column;

}

.intent-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(10, 12, 18, 0.96);

}

.intent-modal-kicker {
  font-size: 12px;
  color: rgba(245, 210, 122, 0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.intent-modal-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.intent-modal-close {
  border: 1px solid rgba(245, 210, 122, 0.28);
  background: rgba(245, 210, 122, 0.10);
  color: var(--text);
  border-radius: 12px;
  width: 36px;
  height: 36px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.intent-modal-close:hover {
  background: rgba(245, 210, 122, 0.16);
}

.intent-modal-body {
  padding:  14px 16px calc(32px + env(safe-area-inset-bottom));
  display: grid;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-padding-bottom: calc(28px + env(safe-area-inset-bottom));

}

.intent-block {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 18, 26, 0.75);
  padding: 12px;
}

.intent-block--next {
  border-color: rgba(245, 210, 122, 0.22);
  background: rgba(245, 210, 122, 0.07);
}

.intent-block-title {
  font-size: 12px;
  color: rgba(245, 210, 122, 0.95);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.intent-block-text {
  margin: 0;
  color: rgba(245, 245, 247, 0.92);
  font-size: 13px;
  line-height: 1.6;
}

.intent-bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(245, 245, 247, 0.92);
  font-size: 13px;
  line-height: 1.6;
}

.intent-modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.intent-tool-card {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 12px;
}

.intent-tool-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.intent-tool-card-title-wrap {
  min-width: 0;
}

.intent-tool-card-name {
  color: rgba(245, 245, 247, 0.96);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.intent-tool-card-use {
  color: rgba(245, 245, 247, 0.78);
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 4px;
}

.intent-tool-card-badge {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.intent-tool-card-badge.is-free {
  background: #e1e4eb;
  color: #111;
  border: 1px solid transparent;
}


.intent-tool-card-badge--small {
  padding: 4px 9px;
  font-size: 10px;
  line-height: 1;
  min-height: 22px;
}

.intent-tool-card-badge.is-plus {
  background: var(--gold);
  color: #111;
  border: 1px solid transparent;
}

.intent-deep-links {
  display: grid;
  gap: 10px;
}

.intent-deep-link {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 18, 26, 0.74);
  border-radius: 12px;
  padding: 10px;
}

.intent-deep-link-title {
  color: rgba(245, 245, 247, 0.98);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.intent-target-why,
.intent-target-how,
.intent-target-query {
  font-size: 12.5px;
  line-height: 1.55;
  margin: 4px 0;
}

.intent-target-query {
  color: rgba(163, 208, 255, 0.96);
}

.intent-target-query--blue {
  color: rgba(163, 208, 255, 0.96);
}

.intent-target-why {
  color: rgba(245, 245, 247, 0.94);
  font-weight: 600;
}

.intent-target-why--green {
  color: rgba(155, 226, 174, 0.96);
}

.intent-target-how {
  color: rgba(245, 245, 247, 0.76);
  font-style: italic;
}

.intent-deep-link .btn {
  margin-top: 8px;
  width: 100%;
}

.intent-tool-open-link {
  appearance: none;
  border: none;
  background: transparent;
  color: #d7d7e3;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  padding: 0;
}

.intent-more-tools {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(16, 18, 26, 0.56);
  padding: 10px 12px;
}

.intent-more-tools summary {
  cursor: pointer;
  color: rgba(245, 210, 122, 0.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intent-more-tools-body {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.intent-modal-note {
  margin:  10px 0 14px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .intent-group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .intent-group-grid {
    grid-template-columns: 1fr;
  }
  .intent-modal-card {
    margin: 56px auto;
  }
}



.entry-row-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

section {
  padding-top: 16px;
}


.badge-einzelkauf {
  background: var(--gold);
  color: #111;
  border-color: transparent;
}

.badge-ondemand {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-subtle);
}

/* Info chevron */
.info-btn .info-chevron {
  display: inline-block;
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}


/* Stronger card separation */
.tool-card {
  margin-top: 12px;
  padding: 12px 14px 12px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(30, 32, 46, 0.96), rgba(8, 10, 18, 0.98));
  border: 1px solid rgba(245, 210, 122, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
}

.tools-section-header + .tool-card {
  margin-top: 18px;
}


.badge-separator {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 4px;
}

.tool-info-btn {
  border: 1px solid rgba(255,255,255,0.6) !important;
  color: rgba(255,255,255,0.9) !important;
}


/* Neutral styling for Info-Button (white outline instead of gold) */
.btn.info-btn {
  border-color: rgba(255,255,255,0.7) !important;
  color: rgba(255,255,255,0.9) !important;
}

.btn.info-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.9) !important;
}



.info-toggle {
  margin-top: 6px;
  margin-bottom: 4px;
  padding: 3px 10px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.8);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-muted);
  cursor: pointer;
}

.info-toggle:hover {
  background: rgba(245, 210, 122, 0.09);
  color: #ffffff;
}

.info-panel {
  display: none;
  margin-top: 6px;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(245, 210, 122, 0.8);
  background: radial-gradient(circle at 0 0, rgba(245, 210, 122, 0.06), #05070d 55%);
  font-size: 13px;
  line-height: 1.6;
}

.info-panel.open {
  display: block;
}

.info-panel ul {
  margin: 6px 0 0 18px;
  padding: 0;
}

.info-panel li {
  margin-bottom: 4px;
}
/* Hero & Tools intro notes */

.hero-note {
  margin-top: 4px;
  max-width: 720px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.tools-intro-note {
  margin-top: 6px;
  max-width: 760px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* R4X global Header */

.r4x-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 16px 6px 16px;
  border-bottom: 3px solid var(--gold);
  background: #000000;
  position: sticky;
  top: 0;
  z-index: 40;
}

.r4x-header--light {
  background: #ffffff;
}

.r4x-header--dark {
  background: #000000;
}

.r4x-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.r4x-logo {
  width: 2cm;
  height: 2cm;
  object-fit: contain;
}

.r4x-header-main-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.r4x-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: radial-gradient(circle at 30% 30%, #444 0, #000 40%, #000 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 3px 8px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.08s ease,
    box-shadow 0.12s ease,
    filter 0.12s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
  filter: brightness(1.05);
}

.nav-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
  filter: brightness(0.97);
}

.r4x-header-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.08s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
}

.hamburger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #000000;
}

.hamburger-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.hamburger-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #000000;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-soft);
  padding: 8px 0;
  min-width: 230px;
  max-height: 70vh;
  overflow-y: auto;
  display: none;
  z-index: 50;
}

.hamburger-menu.open {
  display: block;
}

.hamburger-menu a {
  display: block;
  padding: 6px 16px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
}

.hamburger-menu a:hover {
  background: #202020;
}

@media (max-width: 768px) {
  .r4x-header {
    padding: 8px 10px 6px 10px;
    gap: 10px;
  }

  .r4x-nav {
    gap: 4px;
  }

  .nav-btn {
    padding: 3px 8px;
    font-size: 0.7rem;
  }

  .r4x-logo {
    width: 1.6cm;
    height: 1.6cm;
  }
}

/* Back to top button */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.9);
  background: rgba(5, 6, 10, 0.9);
  color: var(--gold);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  font-size: 20px;
  z-index: 60;
}

.back-to-top.visible {
  display: flex;
}


.code-lead {
  margin-top: 2px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-muted);
}


.filter-status {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  min-height: 18px;
}

.filter-status--active {
  color: var(--gold);
}

.filter-status-note {
  font-weight: 500;
}

.filter-reset-btn {
  border: none;
  background: none;
  color: var(--gold);
  font-size: 11px;
  margin-left: 8px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 900px) {
  .hero-entry-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-entry-block .entry-icon {
  background: transparent;
  border: none;
  box-shadow: none;
}


/* Per-Bereich Varianten für visuelle Orientierung */
.tool-card--orientierung {
  background: radial-gradient(circle at top left, rgba(40, 32, 18, 0.9), rgba(8, 10, 18, 0.98));
}

.tool-card--wissen {
  background: radial-gradient(circle at top left, rgba(24, 28, 44, 0.96), rgba(8, 10, 18, 0.98));
}

.tool-card--anwendung {
  background: radial-gradient(circle at top left, rgba(30, 40, 26, 0.9), rgba(8, 10, 18, 0.98));
}

.tool-card--analyse {
  background: radial-gradient(circle at top left, rgba(44, 32, 44, 0.9), rgba(8, 10, 18, 0.98));
}

@media (max-width: 600px) {
  .intent-modal-card {
    margin: 16px auto;
    max-height: calc(100vh - 32px);
  }
}


/* Anchor target offset for sticky header */
.scroll-target,
#beginner, #tools-start, #tools, #selfcheck, #code-section, #unlock {
  scroll-margin-top: 112px;
}


/* Schnellzugriff Quicklinks */
.quicklinks{
  margin-top: 10px;
}
.quicklinks-label{
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 8px;
}
.quicklinks-inner{
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 6px;
  align-items: center;
}
.quicklink{
  display: inline-flex;
  align-items: center;
  font-size: 13.25px;
  line-height: 1.2;
  font-weight: 700;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: -0.1px;
}
@media (max-width: 480px){
  .quicklinks-inner{
    column-gap: 12px;
    row-gap: 6px;
  }
  .quicklink{ font-size: 13px; }
}
@media (max-width: 380px){
  .quicklinks-inner{ column-gap: 10px; }
  .quicklink{ font-size: 12.6px; letter-spacing: -0.15px; }
}

/* Anchor offset for sticky header */
.hero-entry,
.scroll-target{
  scroll-margin-top: 112px;
}

/* Blink highlight when jumped to */
@keyframes r4xBlink {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0.0); transform: translateZ(0); }
  15%  { box-shadow: 0 0 0 2px rgba(212,175,55,0.8); }
  60%  { box-shadow: 0 0 0 6px rgba(212,175,55,0.15); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.0); }
}
.hero-entry.blink .hero-entry-card{
  animation: r4xBlink 1700ms ease-out 0s 1;
}

/* Blink highlight on generic scroll targets (z.B. Tools-Sektion, Code-Sektion) */
.scroll-target.blink{
  animation: r4xBlink 1700ms ease-out 0s 1;
  border-radius: 18px;
}


/* Query hint under Nutzen */
.intent-target-query{font-size:12px;opacity:.85;margin-top:6px}
.intent-target-query-value{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;}

/* Intent list collapse toggle */
.intent-toggle-wrap{display:flex;justify-content:center;margin-top:10px}
.intent-toggle{
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:inherit;
}
.intent-toggle:active{transform:translateY(1px)}


.intent-card-chevron{margin-left:auto;opacity:.75;font-size:12px;}


/* Mein Bereich */
.my-area-section{
  margin-top: 14px;
}
.my-area-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.my-area-title{
  margin:0;
  font-size:20px;
  line-height:1.1;
  color: var(--gold);
}
.my-area-sub{
  margin:4px 0 0;
  color:#b8b8c7;
  font-size:13px;
}
.my-area-accordion{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.my-pane{
  border:1px solid rgba(212,175,55,.24);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(18,22,36,.96), rgba(10,12,20,.98));
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  overflow:hidden;
}
.my-pane summary::-webkit-details-marker{display:none;}
.my-pane-summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  cursor:pointer;
}
.my-pane-icon{
  flex:0 0 auto;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.24);
  background:rgba(255,255,255,.04);
  color:var(--gold);
  display:grid;
  place-items:center;
  font-size:18px;
  line-height:1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.my-pane-summary-main{
  min-width:0;
  flex:1 1 auto;
}
.my-pane-title-row{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
.my-pane-kicker{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#f5d27a;
  margin-bottom:6px;
  font-weight:700;
}
.my-pane-title{
  margin:0;
  font-size:16px;
  line-height:1.4;
  font-weight:600;
}
.my-pane-count{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#b8b8c7;
  font-size:11px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}
.my-pane-meta{
  margin:4px 0 0;
  color:#b8b8c7;
  font-size:12px;
  line-height:1.4;
}
.my-pane-chevron{
  flex:0 0 auto;
  color:#f5d27a;
  font-size:12px;
  line-height:1;
  opacity:.75;
  transition:transform .22s ease, opacity .22s ease;
}
.my-pane[open] .my-pane-chevron{transform:rotate(180deg); opacity:1;}
.my-pane-body{
  padding:0 16px 14px;
}
.status-list,
.mini-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.status-item,
.mini-item{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px;
}
.status-top,
.mini-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.status-question,
.mini-label{
  font-weight:700;
  font-size:14px;
  line-height:1.25;
}
.status-tool,
.mini-meta,
.empty-copy{
  color:#b8b8c7;
  font-size:12px;
  line-height:1.4;
  margin-top:4px;
}
.status-result{
  color:#ececf3;
  font-size:13px;
  line-height:1.45;
  margin-top:8px;
}
.mini-kicker{
  color:#d7d7e3;
  font-size:11px;
  line-height:1.35;
  font-weight:600;
  margin-bottom:6px;
}
.status-badge{
  flex:0 0 auto;
  font-size:11px;
  font-weight:700;
  padding:5px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
}
.status-badge.is-done{
  color:#f5d27a;
  border-color:rgba(212,175,55,.45);
  background:rgba(212,175,55,.08);
}
.status-badge.is-open{
  color:#d5d6df;
  background:rgba(255,255,255,.04);
}
.status-actions,
.mini-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.mini-link,
.mini-button{
  appearance:none;
  border:none;
  background:transparent;
  color:#f5d27a;
  font-size:12px;
  font-weight:700;
  padding:0;
  text-decoration:underline;
  text-underline-offset:3px;
  cursor:pointer;
}
.mini-button.is-secondary{
  color:#d7d7e3;
}
.mini-actions .mini-link:first-child,
.mini-actions .mini-link-button:first-child{
  color:#f5d27a;
}
.mini-actions .mini-link:not(:first-child),
.mini-actions .mini-link-button:not(:first-child),
.mini-actions .mini-button{
  color:#d7d7e3;
}
.mini-link:hover,
.mini-button:hover{opacity:.9;}
.empty-state{
  border:1px dashed rgba(255,255,255,.16);
  border-radius:16px;
  padding:14px;
  color:#d7d7e3;
}
.my-pane .mini-item .mini-actions form,
.my-pane .mini-item .mini-actions button{margin:0;}
@media (max-width: 640px){
  .my-pane-summary{
    gap:12px;
  }
  .my-pane-icon{
    width:36px;
    height:36px;
    border-radius:12px;
    font-size:16px;
  }
  .my-pane-title-row{
    flex-wrap:wrap;
  }
}

@media (min-width: 900px){
  .my-area-accordion{
    gap:14px;
  }
  .my-pane-summary,
  .my-pane-body{
    padding-left:18px;
    padding-right:18px;
  }
}


.mini-link-button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.tool-card-flash {
  box-shadow: 0 0 0 1px rgba(212,175,55,.85), 0 0 22px rgba(212,175,55,.18);
  transition: box-shadow .25s ease;
}

.shortcut-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:120;
}
.shortcut-modal.is-open{display:block;}
.shortcut-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
}
.shortcut-modal-card{
  position:relative;
  z-index:1;
  width:min(92vw, 520px);
  margin:12vh auto 0;
  border:1px solid rgba(212,175,55,.28);
  border-radius:20px;
  background:linear-gradient(180deg, rgba(18,22,36,.98), rgba(10,12,20,.99));
  box-shadow:0 24px 60px rgba(0,0,0,.42);
  padding:18px;
}
.shortcut-modal-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.shortcut-modal-kicker{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#f5d27a;
  font-weight:700;
  margin-bottom:6px;
}
.shortcut-modal-title{
  margin:0;
  font-size:19px;
  line-height:1.25;
}
.shortcut-modal-sub{
  margin:6px 0 0;
  font-size:13px;
  line-height:1.45;
  color:#b8b8c7;
}
.shortcut-modal-sub.is-warning{
  color:#ff6b6b;
}
.shortcut-modal-close{
  appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff;
  width:34px;
  height:34px;
  border-radius:999px;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.shortcut-modal-body{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:16px;
}
.shortcut-choice{
  width:100%;
  text-align:left;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:#fff;
  border-radius:16px;
  padding:12px 14px;
  cursor:pointer;
}
.shortcut-choice:hover{
  border-color:rgba(212,175,55,.34);
  background:rgba(212,175,55,.06);
}
.shortcut-choice-title{
  font-size:14px;
  font-weight:700;
  line-height:1.3;
}
.shortcut-choice-meta{
  margin-top:4px;
  color:#b8b8c7;
  font-size:12px;
  line-height:1.4;
}

.shortcut-choice--row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:default;
}
.shortcut-choice-main{
  min-width:0;
  flex:1 1 auto;
}
.shortcut-choice-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:8px;
}
.shortcut-choice-badge{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#b8b8c7;
  font-size:11px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}
.shortcut-choice-badge.is-saved{
  color:#f5d27a;
  border-color:rgba(212,175,55,.45);
  background:rgba(212,175,55,.08);
}
.shortcut-choice-action{
  appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}
.shortcut-choice-action:hover{
  border-color:rgba(212,175,55,.34);
  background:rgba(212,175,55,.06);
}
.shortcut-choice-action.is-remove{
  color:#d7d7e3;
}
@media (max-width: 640px){
  .shortcut-choice--row{
    align-items:flex-start;
    flex-direction:column;
  }
  .shortcut-choice-actions{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}
.shortcut-modal-footer{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:6px;
}
.shortcut-text-btn{
  appearance:none;
  border:none;
  background:transparent;
  color:#d7d7e3;
  font-size:12px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
  cursor:pointer;
  padding:4px 0;
}
@media (max-width: 640px){
  .shortcut-modal-card{
    width:min(94vw, 520px);
    margin-top:10vh;
    padding:16px;
  }
  .shortcut-modal-title{font-size:17px;}
}


/* v17 mobile fix for quicklinks */
@media (max-width: 480px){
  .quicklinks-inner{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 8px;
    align-items: start;
  }
  .quicklink{
    min-width: 0;
    font-size: 13px;
    line-height: 1.25;
    white-space: nowrap;
  }
}
@media (max-width: 380px){
  .quicklinks-inner{
    column-gap: 12px;
    row-gap: 8px;
  }
  .quicklink{
    font-size: 12.6px;
    letter-spacing: -0.1px;
  }
}

.intent-block-text--search {
  color: rgba(163, 208, 255, 0.98);
}

.intent-block-text--benefit {
  color: rgba(155, 226, 174, 0.98);
}

.intent-inline-title {
  color: rgba(245, 210, 122, 0.95);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.intent-direct-links {
  display: grid;
  gap: 8px;
}

.intent-direct-link-btn,
.intent-guide-link {
  appearance: none;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(16, 18, 26, 0.78);
  color: rgba(245, 245, 247, 0.96);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.intent-link-btn-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.intent-link-btn-label {
  min-width: 0;
}

.intent-link-btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 42px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 247, 0.92);
}

.intent-direct-link-btn.locked .intent-link-btn-badge,
.intent-guide-link.locked .intent-link-btn-badge {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.3);
}

.intent-direct-link-btn:hover,
.intent-guide-link:hover {
  border-color: rgba(212, 175, 55, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.intent-direct-link-btn:active,
.intent-guide-link:active {
  transform: translateY(1px);
}

.intent-direct-link-btn.locked,
.intent-guide-link.locked {
  border-color: rgba(212, 175, 55, 0.34);
}

.intent-tool-card--compact {
  border-color: rgba(255, 255, 255, 0.10);
}

.intent-tool-card--compact .intent-tool-card-use {
  color: rgba(245, 245, 247, 0.74);
}

.intent-guide-block {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(245, 210, 122, 0.06);
  border-radius: 14px;
  padding: 12px;
}

.intent-guide-title {
  color: rgba(245, 210, 122, 0.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.intent-guide-title-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: rgba(245, 245, 247, 0.95);
}

.intent-guide-links {
  display: grid;
  gap: 8px;
}

.intent-guide-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.intent-guide-topic {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(245, 245, 247, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.intent-guide-note {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.72);
  margin-bottom: 10px;
}


.intent-action-section + .intent-action-section {
  margin-top: 14px;
}

.intent-action-section-title {
  font-size: 12px;
  color: rgba(245, 210, 122, 0.96);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 700;
}

.intent-entry-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.intent-entry-card-title-wrap {
  min-width: 0;
}

.intent-entry-card-tool {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(245, 245, 247, 0.74);
  margin-top: 2px;
}

.intent-entry-card-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
}

.intent-entry-card-sep {
  color: rgba(245, 245, 247, 0.56);
  font-size: 13px;
  line-height: 1.4;
}

.intent-entry-card-tool--inline {
  margin-top: 0;
  font-size: 12px;
}

.intent-entry-card-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 0 0 auto;
  align-self: end;
}

.intent-entry-card-type-badges {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 0 0 auto;
  margin-left: 10px;
}

.intent-entry-card-meta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 12px;
  row-gap: 6px;
  margin-top: 8px;
}

.intent-target-query--meta {
  margin-bottom: 0;
  min-width: 0;
}

.intent-entry-state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.98);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.intent-entry-state-badge.is-locked {
  min-width: 28px;
  padding-inline: 7px;
  color: rgba(255, 215, 140, 0.98);
  border-color: rgba(212, 175, 55, 0.34);
  background: rgba(212, 175, 55, 0.16);
}

.intent-entry-state-badge.is-open {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.intent-entry-state-badge.is-free-open {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(245, 245, 247, 0.96);
}

.intent-entry-state-badge.is-plus-open {
  border-color: rgba(212, 175, 55, 0.34);
  background: rgba(212, 175, 55, 0.16);
  color: rgba(255, 219, 122, 0.98);
}

.intent-entry-state-badge.is-clickable {
  appearance: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.intent-entry-state-badge.is-clickable:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.18);
  color: #fff;
}

.intent-entry-state-badge.is-clickable.is-free-open:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.intent-entry-state-badge.is-clickable.is-plus-open:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.22);
  color: #fff2c7;
}

.intent-entry-state-badge.is-clickable:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.22);
}

.intent-deep-link--grouped {
  padding: 12px;
}

.intent-grouped-entry-list {
  display: grid;
  gap: 10px;
}

.intent-grouped-entry-row {
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 24, 0.72);
  border-radius: 12px;
  padding: 12px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.intent-grouped-entry-row:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18);
}

.intent-grouped-entry-row:hover {
  border-color: rgba(212, 175, 55, 0.32);
}

.intent-grouped-entry-row.is-selected {
  border-color: rgba(212, 175, 55, 0.44);
  background: rgba(17, 22, 34, 0.88);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.intent-grouped-open-btn {
  width: 100%;
  margin-top: 12px;
  font-weight: 600;
}

.intent-deep-link .btn {
  width: 100%;
  margin-top: 10px;
}

.intent-modal-card,
.intent-modal-card * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none;
  backface-visibility: hidden;
}

.intent-modal-title,
.intent-deep-link-title,
.intent-target-why,
.intent-tool-card-badge,
.intent-entry-state-badge,
.intent-grouped-open-btn,
.intent-modal-close {
  text-rendering: geometricPrecision;
  font-synthesis-weight: none;
}

.intent-grouped-open-btn,
.intent-entry-state-badge,
.intent-tool-card-badge {
  letter-spacing: 0;
}


@media (max-width: 640px) {
  .intent-entry-card-meta-row {
    align-items: flex-start;
    gap: 10px;
  }

  .intent-target-query--meta {
    font-size: 12px;
    line-height: 1.45;
  }

  .intent-entry-card-badges {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 640px) {
  body.intent-modal-open .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(10px);
  }
}


.buycheck-dashboard-hero {
  max-width: 760px;
  margin: 0 auto 22px;
  padding: 24px 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
  text-align: left;
}

.buycheck-dashboard-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: #f0c84b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.buycheck-dashboard-title {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #f4f1ea;
}

.buycheck-dashboard-text {
  margin: 0 0 14px 0;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.84);
}

.buycheck-dashboard-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.buycheck-dashboard-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  color: rgba(244, 241, 234, 0.82);
}

.buycheck-dashboard-actions {
  margin-bottom: 12px;
}

.buycheck-dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #d4af37;
  color: #111318;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(212,175,55,0.18);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.buycheck-dashboard-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.buycheck-dashboard-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(244, 241, 234, 0.60);
}

.intent-divider-title {
  margin: 6px 0 14px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0c84b;
}

@media (max-width: 640px) {
  .buycheck-dashboard-hero {
    padding: 20px 16px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
  }

  .buycheck-dashboard-title {
    font-size: 30px;
  }

  .buycheck-dashboard-meta {
    gap: 8px;
  }

  .buycheck-dashboard-pill {
    font-size: 12px;
  }

  .buycheck-dashboard-btn {
    width: 100%;
  }
}


.buycheck-dashboard-title {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.buycheck-dashboard-title-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-block;
  object-fit: contain;
  transform: translateY(1px);
}

@media (max-width: 640px) {
  .buycheck-dashboard-title {
    gap: 10px;
    white-space: normal;
    align-items: flex-start;
    line-height: 1.08;
  }

  .buycheck-dashboard-title-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    margin-top: 2px;
  }
}


.checks-dashboard-hero {
  max-width: 980px;
  margin: 0 auto 22px;
  padding: 24px 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
  text-align: left;
}

.checks-dashboard-header {
  margin-bottom: 16px;
}

.checks-dashboard-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: #f0c84b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.check-dashboard-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    radial-gradient(circle at top right, rgba(245,210,122,0.05), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.check-dashboard-card__eyebrow {
  margin: 0 0 12px;
  color: rgba(245, 210, 122, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-dashboard-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: clamp(24px, 4.5vw, 32px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-weight: 700;
  color: #f4f1ea;
}

.check-dashboard-card__title-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
}

.check-dashboard-card__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.62;
  color: rgba(244, 241, 234, 0.82);
}

.check-dashboard-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.check-dashboard-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(245,210,122,0.16);
  font-size: 12px;
  color: rgba(244, 241, 234, 0.76);
}

.check-dashboard-card__actions {
  margin-top: auto;
  margin-bottom: 12px;
}

.check-dashboard-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(245, 210, 122, 0.96);
  background: linear-gradient(135deg, #f5d27a, #c18a2f);
  color: #15110b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 0 0 1px rgba(255,255,255,0.05),
    0 8px 18px rgba(193,138,47,0.16);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.check-dashboard-card__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 0 0 1px rgba(255,255,255,0.06),
    0 12px 24px rgba(193,138,47,0.2);
}

.check-dashboard-card__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244, 241, 234, 0.56);
}

@media (max-width: 640px) {
  .checks-dashboard-hero {
    padding: 20px 16px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
  }

  .checks-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .check-dashboard-card {
    padding: 18px 16px 16px;
  }

  .check-dashboard-card__title {
    gap: 10px;
    align-items: flex-start;
    font-size: clamp(24px, 7vw, 32px);
    white-space: normal;
  }

  .check-dashboard-card__title-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    margin-top: 2px;
  }

  .check-dashboard-card__btn {
    width: 100%;
  }
}


/* v23 dashboard system pass */
:root{
  --gold: #d7b46a;
  --gold-strong: #d9b24c;
  --gold-text: #dcbc74;
  --gold-border: rgba(217,178,76,0.28);
  --gold-border-strong: rgba(217,178,76,0.48);
  --gold-surface: rgba(217,178,76,0.08);
  --panel-bg: linear-gradient(180deg, rgba(15,19,30,0.96), rgba(8,11,18,0.985));
  --panel-bg-soft: linear-gradient(180deg, rgba(16,20,31,0.94), rgba(10,12,20,0.98));
  --panel-border: rgba(255,255,255,0.08);
  --panel-border-gold: rgba(217,178,76,0.18);
  --panel-shadow: 0 14px 34px rgba(0,0,0,0.34);
  --panel-shadow-soft: 0 10px 24px rgba(0,0,0,0.24);
  --text-muted: #b8bcc9;
}

.hero h1{
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-title-row{
  gap: 14px;
  align-items: flex-end;
}

.subsection-title,
.my-pane-kicker,
.quicklinks-label,
.intent-divider-title,
.checks-dashboard-kicker,
.check-dashboard-card__eyebrow,
.tool-info-block-title,
.tools-section-title,
.intent-group-title{
  color: var(--gold-text);
  letter-spacing: 0.06em;
}

.subsection-title{
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.my-area-title,
.intent-title,
.code-section h2{
  letter-spacing: -0.02em;
}

.entry-card,
.my-pane,
.code-section,
.intent-section,
.checks-dashboard-hero,
.check-dashboard-card,
.tool-card,
.info-panel,
.tool-info-panel{
  background: var(--panel-bg) !important;
  border: 1px solid var(--panel-border) !important;
  box-shadow: var(--panel-shadow-soft) !important;
}

.intent-section,
.code-section,
.checks-dashboard-hero{
  border-color: var(--panel-border-gold) !important;
  box-shadow: var(--panel-shadow) !important;
}

.entry-card::before,
.checks-dashboard-hero::before,
.check-dashboard-card::before{
  display:none !important;
}

.entry-card,
.my-pane,
.tool-card,
.check-dashboard-card{
  border-radius: 20px;
}

.code-section,
.intent-section,
.checks-dashboard-hero{
  border-radius: 24px;
}

.hero-entry-card .entry-header{
  gap: 12px;
  margin-bottom: 8px;
}

.entry-card{
  padding: 16px 18px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.entry-card:hover,
.tool-card:hover,
.check-dashboard-card:hover{
  transform: translateY(-2px);
  border-color: var(--gold-border-strong) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.38) !important;
}

.entry-title,
.my-pane-title,
.check-dashboard-card__title,
.tool-title{
  font-weight: 650;
  letter-spacing: -0.018em;
}

.check-dashboard-card__title{
  font-size: clamp(28px, 4.4vw, 38px);
  margin-bottom: 14px;
}

.check-dashboard-card__text,
.hero-entry-card .entry-sub,
.tool-card-body,
.info-panel,
.tool-info-panel,
.intent-sub,
.code-section p,
.my-pane-meta,
.status-result,
.status-tool,
.mini-meta,
.empty-copy{
  color: var(--text-muted);
}

.check-dashboard-card__text,
.tool-card-body,
.info-panel,
.tool-info-panel{
  line-height: 1.62;
}

.checks-dashboard-hero{
  background: linear-gradient(180deg, rgba(18,22,34,.96), rgba(11,14,23,.985)) !important;
  padding: 24px 24px 22px;
}

.check-dashboard-card{
  background: var(--panel-bg-soft) !important;
  padding: 22px 22px 18px;
}

.check-dashboard-card__pill,
.buycheck-dashboard-pill,
.badge,
.my-pane-count,
.status-badge,
.filter-btn.active{
  border-radius: 999px;
}

.check-dashboard-card__pill,
.buycheck-dashboard-pill,
.my-pane-count,
.status-badge.is-open{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #d8dce8;
}

.badge{
  font-weight: 700;
  padding: 4px 8px;
}

.badge-free{
  background: rgba(255,255,255,0.10);
  color: #f3f4f8;
}

.badge-plus,
.badge-einzelkauf{
  background: rgba(217,178,76,0.14);
  border-color: rgba(217,178,76,0.22);
  color: #f0d38b;
}

.badge-ondemand{
  background: rgba(255,255,255,0.04);
  color: #cfd3df;
}

.tools-section-header{
  gap: 12px;
  margin: 20px auto 10px;
}

.tools-section-icon,
.tool-kind-icon,
.entry-icon,
.my-pane-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)) !important;
  color: var(--gold-text) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  text-shadow:none;
}

.tools-section-icon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.tool-kind-icon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex: 0 0 32px;
}

.entry-icon{
  width: 40px;
  height: 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.my-pane-icon{
  width: 40px;
  height: 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.entry-icon--plain{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.check-dashboard-card__title-icon{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  opacity: .9;
}

.btn,
.nav-btn,
.info-toggle,
.quicklink,
.intent-toggle,
.check-dashboard-card__btn,
.buycheck-dashboard-btn{
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.005em;
  box-shadow: none;
}

.btn-gold,
.check-dashboard-card__btn,
.buycheck-dashboard-btn{
  border: 1px solid rgba(217,178,76,0.96) !important;
  background: linear-gradient(180deg, #e0c36f 0%, #d3a73d 100%) !important;
  color: #16120a !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    0 8px 18px rgba(217,178,76,0.18) !important;
}

.btn-gold:hover,
.check-dashboard-card__btn:hover,
.buycheck-dashboard-btn:hover{
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 12px 22px rgba(217,178,76,0.20) !important;
}

.btn-outline-light,
.btn-outline-gold,
.nav-btn,
.info-toggle,
.intent-toggle{
  border: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.03) !important;
  color: #eef1f7 !important;
}

.btn-outline-gold{
  color: var(--gold-text) !important;
  border-color: rgba(217,178,76,0.22) !important;
  background: rgba(217,178,76,0.04) !important;
}

.btn-outline-light:hover,
.btn-outline-gold:hover,
.nav-btn:hover,
.info-toggle:hover,
.intent-toggle:hover{
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.16) !important;
  box-shadow: none !important;
}

.quicklinks{
  border-radius: 18px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.02);
  padding: 12px 14px;
}

.quicklinks-inner{
  gap: 8px;
}

.quicklink{
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: #e9edf6;
}

.quicklink:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}

.quicklink::after{
  content: "→";
  opacity: 0.58;
}

.info-toggle{
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.info-panel{
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(14,17,27,.96), rgba(9,12,20,.985)) !important;
}

.intent-title{
  display:flex;
  align-items:center;
  gap:10px;
}

.intent-title-mark{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e0c36f 0%, #d3a73d 100%);
  box-shadow: 0 0 0 4px rgba(217,178,76,0.10);
  flex: 0 0 12px;
}

.intent-sub,
.intent-head{
  max-width: 760px;
}

.intent-grid{
  gap: 14px;
}

.intent-group{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(14,17,27,.96), rgba(8,11,18,.985));
  box-shadow: var(--panel-shadow-soft);
}

.intent-group-summary{
  padding: 15px 16px;
}

.intent-group-count{
  border: 1px solid rgba(217,178,76,0.22);
  background: rgba(217,178,76,0.06);
  color: var(--gold-text);
}

.tool-card{
  padding: 14px 16px 14px;
}

.tool-card-header{
  gap: 12px;
}

.tool-card-main{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tool-card-actions{
  gap: 8px;
}

.tool-info-panel{
  border-radius: 18px;
  padding: 14px 14px;
}

.tools-section-title{
  background: rgba(217,178,76,0.05);
  border: 1px solid rgba(217,178,76,0.12);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
}

.tools-section-line{
  height: 1px;
  box-shadow: none;
  opacity: .7;
}

.tools-section-line-left{
  background: linear-gradient(to left, rgba(217,178,76,0.40), transparent);
}
.tools-section-line-right{
  background: linear-gradient(to right, rgba(217,178,76,0.40), transparent);
}

.my-pane-summary{
  padding: 15px 16px;
}
.my-pane-body{
  padding: 0 16px 16px;
}

.status-item,
.mini-item,
.empty-state{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  padding: 13px 14px;
}

.status-badge.is-done{
  color: var(--gold-text);
  border-color: rgba(217,178,76,0.28);
  background: rgba(217,178,76,0.08);
}

.mini-link,
.mini-button{
  color: #e7ebf4;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.24);
  line-height: 1.3;
}

.mini-actions .mini-link:first-child,
.mini-actions .mini-link-button:first-child{
  color: var(--gold-text);
  border-bottom-color: rgba(217,178,76,0.34);
}

.code-section .btn-gold{
  min-height: 44px;
  padding: 0 18px;
}

.code-input{
  min-height: 44px;
  border-color: rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.hamburger-btn{
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.96);
  box-shadow: none;
}

.r4x-header{
  border-bottom: 1px solid rgba(217,178,76,0.40);
  box-shadow: 0 8px 18px rgba(0,0,0,0.24);
}

@media (max-width: 640px){
  .hero h1{
    font-size: 32px;
  }
  .checks-dashboard-hero,
  .intent-section,
  .code-section{
    border-radius: 22px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .check-dashboard-card{
    padding: 18px 16px 16px;
  }
  .check-dashboard-card__title{
    font-size: clamp(26px, 7vw, 34px);
  }
  .tool-card-header{
    flex-direction: column;
  }
  .tool-card-actions{
    width: 100%;
  }
}
