/* ─── /discord landing - bot showcase, same width as /store ──────────── */

/* ─── Hero ─────────────────────────────────────────────────────────── */
.dc-hero {
  padding: calc(var(--header-height) + 60px) 0 40px;
  position: relative;
}
/* Same subtle top-of-page glow as the shop hero - bleeds gently out
   of the header bar, fades at 70%, 10% orange opacity. No giant
   square gradient block under the content. */
.dc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(255, 140, 26, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.dc-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .dc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.dc-hero-title {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 18px;
}
.dc-hero-title .accent { color: var(--orange); display: block; }
.dc-hero-desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 540px;
}
.dc-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.dc-hero-cta .btn { padding: 13px 22px; font-size: 14px; }
.dc-hero-cta .btn svg { margin-right: 2px; }
.dc-hero-cta .btn-primary { background: var(--orange); color: #0a0a0a; }
.dc-hero-cta .btn-primary:hover { background: var(--orange-bright); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(255, 130, 40, 0.5); }
.dc-hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text);
}
.dc-hero-cta .btn-secondary:hover { border-color: rgba(255, 255, 255, 0.20); background: rgba(255, 255, 255, 0.06); }

/* Hero check-list - minimal Stripe/Linear-style row of guarantees.
   No background pills, no borders - just a green check + text in a
   horizontal row, with comfortable spacing between items. */
.dc-hero-checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.dc-hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.dc-hero-checks li svg {
  flex: 0 0 auto;
  color: #4ade80;
}

/* ─── Stat cards - homepage-style live counters ────────────────────── */
.dc-stats {
  padding: 30px 0 30px;
  position: relative;
}
.dc-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.dc-stat-card {
  position: relative;
  padding: 26px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.dc-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 130, 40, 0.30);
}
/* "Lead" card variant - subtle orange-tinted value so the headline
   number ("0€") stands out from the white siblings. */
.dc-stat-card--lead .dc-stat-value { color: var(--orange); }
.dc-stat-card--lead .dc-stat-icon { opacity: 0.14; color: var(--orange); }
/* Background icon - same pattern as the /dashboard stat tiles + bot
   guild-stats panel: large, dim, pinned to the right, opacity bumps
   and tints orange on hover. */
.dc-stat-icon {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 96px;
  height: 96px;
  color: var(--text-muted);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  transition: opacity .25s ease, color .25s ease;
}
.dc-stat-icon svg { width: 100%; height: 100%; display: block; }
.dc-stat-card:hover .dc-stat-icon {
  opacity: 0.20;
  color: var(--orange);
}
.dc-stat-value,
.dc-stat-label,
.dc-stat-sub { position: relative; z-index: 1; }
.dc-stat-value {
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}
.dc-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.dc-stat-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 75%;
}
/* Small superscript-style asterisk on the "0€" lead stat - flags that
   the figure refers to the free plan; the disclaimer below clarifies. */
.dc-stat-asterisk {
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
  color: var(--orange);
}
.dc-stats-disclaimer {
  max-width: 880px;
  margin: 22px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  opacity: 0.85;
}
.dc-stats-disclaimer strong { color: var(--text); font-weight: 600; }
.dc-stats-disclaimer span { color: var(--orange); margin-right: 2px; }

/* Hero visual - three columns of auto-scrolling customer reviews.
   Each column slides upward continuously via translateY animation;
   different durations + delays per column create the cascading feel.
   Track contents are duplicated by JS so the loop is seamless. */
.dc-hero-visual {
  position: relative;
  height: 500px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.dc-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 100%;
}
@media (max-width: 720px) {
  .dc-hero-visual { height: 420px; }
  .dc-reviews { grid-template-columns: repeat(2, 1fr); }
  .dc-reviews-col--3 { display: none; }
}

.dc-reviews-col {
  position: relative;
  overflow: hidden;
}
.dc-reviews-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: dcMarquee linear infinite;
  will-change: transform;
}
.dc-reviews-col--1 .dc-reviews-track { animation-duration: 32s; animation-delay:  0s; }
.dc-reviews-col--2 .dc-reviews-track { animation-duration: 44s; animation-delay: -8s; }
.dc-reviews-col--3 .dc-reviews-track { animation-duration: 38s; animation-delay: -4s; }

.dc-hero-visual:hover .dc-reviews-track { animation-play-state: paused; }

@keyframes dcMarquee {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* Individual review card */
.dc-review {
  flex: 0 0 auto;
  padding: 16px 16px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .15s ease, transform .15s ease;
}
.dc-review:hover { border-color: rgba(255, 130, 40, 0.25); transform: translateY(-1px); }

.dc-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.dc-review-avatar {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.dc-review-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.2;
}
/* Name + stars both always fully visible - no ellipsis truncation,
   names get to wrap naturally if needed. */
.dc-review-meta strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.dc-review-stars {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1;
}
.dc-review p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}


/* ─── Modules grid ─────────────────────────────────────────────────── */
.dc-modules { padding: 60px 0; }
.dc-section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.dc-section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 14px;
}
.dc-section-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.dc-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.dc-module-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 20px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.dc-module-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 130, 40, 0.30);
  background: linear-gradient(180deg, rgba(255, 130, 40, 0.04), transparent 60%), var(--bg-card);
}
.dc-module-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 130, 40, 0.10);
  color: var(--orange);
  margin-bottom: 14px;
}
.dc-module-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.dc-module-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.dc-module-card--paid { border-color: rgba(255, 130, 40, 0.30); }

/* "Request a module" CTA card - sits as the last grid cell, uses a
   dashed orange border to differentiate from real modules + acts as
   a link so the whole card is clickable. */
.dc-module-card--request {
  display: flex;
  flex-direction: column;
  background: rgba(255, 130, 40, 0.03);
  border-style: dashed;
  border-color: rgba(255, 130, 40, 0.35);
  color: inherit;
  text-decoration: none;
}
.dc-module-card--request:hover {
  background: linear-gradient(180deg, rgba(255, 130, 40, 0.08), transparent 70%), var(--bg-card);
  border-style: solid;
  border-color: var(--orange);
}
.dc-module-card--request .dc-module-icon {
  background: rgba(255, 130, 40, 0.16);
}
.dc-module-card--request h3 { display: inline-flex; align-items: center; gap: 4px; }
.dc-module-card--request h3 span { color: var(--orange); font-size: 14px; }
.dc-module-card-cta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.005em;
}

/* Disclaimer below the module grid - same pattern as the stats one. */
.dc-modules-disclaimer {
  max-width: 880px;
  margin: 24px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  opacity: 0.85;
}
.dc-modules-disclaimer > span:first-child { color: var(--orange); margin-right: 2px; }
.dc-modules-disclaimer strong { color: var(--text); font-weight: 600; }
.dc-module-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: linear-gradient(135deg, #ff8c1a, #ff6b1a);
  color: #0a0a0a;
  border-radius: 999px;
}

/* ─── Trust & Compliance (DSGVO / Made in Germany) ─────────────────
   Anchor section between stats and the modules grid. Pure text block
   (no card chrome) followed by a row of 4 equal-weight trust badges.
   Goal: read as a credibility statement, not as a marketing card. */
.dc-trust { padding: 40px 0 30px; }
.dc-trust-text {
  max-width: 880px;
  margin: 0 auto 36px;
  text-align: center;
}
.dc-trust-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 14px;
}
.dc-trust-text h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--text);
}
.dc-trust-text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 auto 14px;
  max-width: 760px;
}
.dc-trust-text p:last-child { margin-bottom: 0; }

/* 4-up badge row - all icons normalised to identical circular wrappers
   so visual weight stays even regardless of stroke vs filled SVG. */
.dc-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 880px) {
  .dc-trust-badges { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .dc-trust-badges { grid-template-columns: 1fr; }
}
.dc-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .15s ease, transform .15s ease;
}
.dc-trust-badge:hover {
  border-color: rgba(255, 130, 40, 0.30);
  transform: translateY(-2px);
}
.dc-trust-badge-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--orange);
  overflow: hidden;
  margin-bottom: 2px;
}
.dc-trust-badge-icon--eu   { background: rgba(0, 51, 153, 0.18);   color: #6f8aff; }
.dc-trust-badge-icon--doc  { background: rgba(255, 130, 40, 0.10); color: var(--orange); }
.dc-trust-badge-icon--lock { background: rgba(74, 222, 128, 0.12); color: #4ade80; }
.dc-trust-badge strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}
.dc-trust-badge > span:not(.dc-trust-badge-icon) {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Vergleichstabelle (devCon vs Self-coded) ─────────────────────── */
.dc-compare { padding: 30px 0 60px; }
.dc-compare-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.dc-compare-head,
.dc-compare-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  align-items: stretch;
}
.dc-compare-row { border-top: 1px solid var(--border); transition: background .12s ease; }
.dc-compare-row:hover { background: rgba(255, 255, 255, 0.015); }

.dc-compare-cell {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  position: relative;
  font-size: 14px;
}
.dc-compare-cell--label strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text);
}
.dc-compare-cell--label span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* devCon column - neutral, same chrome as the right column so the
   comparison feels objective. Only the header label keeps an orange tint. */
.dc-compare-cell--us,
.dc-compare-cell--them {
  text-align: center;
  align-items: center;
  border-left: 1px solid var(--border);
}
.dc-compare-cell--them { color: var(--text-muted); }

/* Header row */
.dc-compare-head .dc-compare-cell {
  padding: 20px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dc-compare-head .dc-compare-cell--us {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 700;
}
.dc-compare-head .dc-compare-cell--them {
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
  color: var(--text);
}
.dc-compare-brand { font-weight: 700; }
.dc-compare-them-label { font-weight: 600; }

/* Yes / No indicators */
.dc-yes {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.dc-no {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(237, 66, 69, 0.12);
  color: #ed4245;
}
.dc-compare-note {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.01em;
  font-style: italic;
}

/* First (header) row needs its own top corners */
.dc-compare-head { background: rgba(255, 255, 255, 0.015); }

/* Mobile: stack each row as a mini-card so the comparison still reads */
@media (max-width: 720px) {
  .dc-compare-head { display: none; }
  .dc-compare-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
    border-top: 1px solid var(--border);
  }
  .dc-compare-row > .dc-compare-cell { padding: 0; }
  .dc-compare-cell--label { margin-bottom: 8px; }
  .dc-compare-cell--us,
  .dc-compare-cell--them {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 0 !important;
    background: transparent !important;
    text-align: left;
    padding: 6px 0 !important;
  }
  .dc-compare-cell--us::before { content: 'devCon'; font-size: 12px; color: var(--orange); font-weight: 700; }
  .dc-compare-cell--them::before { content: 'Self-coded'; font-size: 12px; color: var(--text-muted); font-weight: 600; }
  .dc-compare-note { margin: 0; }
}

/* ─── Bottom CTA ───────────────────────────────────────────────────── */
.dc-cta { padding: 70px 0 80px; }
.dc-cta-card {
  position: relative;
  text-align: center;
  padding: 56px 40px;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(255, 140, 26, 0.06), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.dc-cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 700;
}
.dc-cta-card p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.dc-cta-card .btn { padding: 15px 28px; font-size: 15px; }
.dc-cta-card .btn-primary {
  background: var(--orange);
  color: #0a0a0a;
}
.dc-cta-card .btn-primary:hover {
  background: var(--orange-bright);
  box-shadow: 0 12px 30px -8px rgba(255, 130, 40, 0.5);
  transform: translateY(-1px);
}

/* Mobile polish */
@media (max-width: 720px) {
  .dc-hero { padding-top: calc(var(--header-height) + 40px); }
  .dc-hero-stats { gap: 22px; }
  .dc-hero-card { transform: none; }
  .dc-modules, .dc-features, .dc-cta { padding-top: 56px; padding-bottom: 56px; }
}
