

/* Hero dark variant */
.hero-dark {
  background: var(--sc-dark);
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-dark::after {
  content: '';
  position: absolute;
  bottom: -250px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-dark h1 { color: white; font-weight: 800; line-height: 1.12; }
.hero-dark .lead { color: var(--sc-slate-400); }
.hero-dark .text-gradient {
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Typewriter hero */
.hero-typewriter {
  visibility: hidden;
}
.hero-typewriter.is-typing {
  visibility: visible;
}
.hero-typewriter .tw-char {
  opacity: 0;
  display: inline;
  transition: opacity 0.06s ease;
}
.hero-typewriter .tw-char.is-visible {
  opacity: 1;
}

/* Hero badge */
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--sc-radius-pill);
  font-size: 0.78rem; font-weight: 600; color: var(--sc-success);
}


/* Hero card (floating consent preview) */
.hero-card {
  background: white;
  border-radius: var(--sc-radius-xl);
  padding: 1.5rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}
.consent-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--sc-slate-200);
  border-radius: var(--sc-radius);
  margin-bottom: 0.5rem;
  font-size: 0.82rem; font-weight: 500;
}
.toggle-pill {
  width: 34px; height: 18px;
  border-radius: var(--sc-radius-pill);
  position: relative;
}
.toggle-pill::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: white; border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-pill.on  { background: var(--sc-sky); }
.toggle-pill.on::after  { transform: translateX(16px); }
.toggle-pill.off { background: var(--sc-slate-300); }

/* Trust bar */
.trust-bar {
  padding: 2rem 0;
  background: var(--sc-slate-50);
  border-bottom: 1px solid var(--sc-slate-200);
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500; color: var(--sc-slate-500);
  white-space: nowrap;
}
.trust-item i { color: var(--sc-sky); font-size: 1.1rem; }

/* Feature cards */
.feature-card {
  padding: 1.75rem;
  border-radius: var(--sc-radius-lg);
  border: 1px solid var(--sc-slate-200);
  background: white;
  transition: all 0.25s;
  height: 100%;
}
.feature-card:hover {
  border-color: var(--sc-sky);
  box-shadow: var(--sc-shadow), 0 0 0 1px rgba(14,165,233,0.1);
  transform: translateY(-4px);
}
.feature-card h5 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--sc-slate-500); margin: 0; }

/* Proof section */
.proof-visual {
  background: var(--sc-dark);
  border-radius: var(--sc-radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.proof-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
}
.proof-doc {
  background: white;
  border-radius: var(--sc-radius-lg);
  padding: 1.5rem;
  position: relative; z-index: 2;
}
.proof-doc-header {
  text-align: center;
  border-bottom: 2px solid var(--sc-sky);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.proof-row {
  display: flex; justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--sc-slate-100);
}
.proof-row .label { color: var(--sc-slate-500); font-weight: 500; }
.proof-row .value { color: var(--sc-dark); font-weight: 500; }
.proof-hash {
  margin-top: 0.75rem;
  padding: 0.6rem;
  background: var(--sc-slate-50);
  border-radius: var(--sc-radius);
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--sc-slate-400);
  word-break: break-all;
  text-align: center;
}

/* Language pills */
.lang-pill {
  padding: 0.4rem 1rem;
  border-radius: var(--sc-radius-pill);
  font-size: 0.82rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
  display: inline-block;
}
.lang-pill:hover {
  background: rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.3);
  color: #38BDF8;
}

/* Dark section stats */
.section-dark .stat-value {
  font-size: 2.75rem;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}
.section-dark .stat-label { color: var(--sc-slate-500); }

/* Comparison table */
.compare-table { font-size: 0.85rem; }
.compare-table th, .compare-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  vertical-align: middle;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left; font-weight: 500;
}
.compare-table thead th {
  font-size: 0.78rem; font-weight: 600;
  color: var(--sc-slate-500);
  background: var(--sc-slate-50);
  border-bottom: 1.5px solid var(--sc-slate-200);
}
.compare-table thead th.highlight {
  color: var(--sc-sky);
  border-bottom: 2px solid var(--sc-sky);
}
.compare-table .check { color: var(--sc-success); font-weight: 600; }
.compare-table .cross { color: var(--sc-slate-300); }
.compare-table .partial { color: var(--sc-warning); font-size: 0.75rem; font-weight: 500; }
.compare-group td {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--sc-slate-400);
  padding-top: 1.5rem;
  border-bottom: none;
}

/* CTA dark */
.cta-dark {
  padding: 7rem 0;
  background: var(--sc-dark);
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(14,165,233,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-dark h2 { color: white; }
.cta-dark p { color: var(--sc-slate-500); }

/* Proof list */
.proof-list { list-style: none; padding: 0; }
.proof-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.9rem; color: var(--sc-slate-600);
}
.proof-list li i { color: var(--sc-success); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }

/* ─── Banner Customizer section ─── */
.customizer-wrap {
  background: var(--sc-slate-50);
  border: 1px solid var(--sc-slate-200);
  border-radius: var(--sc-radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.customizer-wrap::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cz-toolbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--sc-slate-200);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.cz-toolbar-label {
  font-size: 0.7rem; font-weight: 600;
  color: var(--sc-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.cz-btn {
  padding: 5px 12px;
  font-size: 0.75rem; font-weight: 600;
  border-radius: 6px;
  border: 1px solid var(--sc-slate-200);
  background: white;
  color: var(--sc-slate-500);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cz-btn:hover { background: var(--sc-slate-50); color: var(--sc-dark); }
.cz-btn.active {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.3);
  color: var(--sc-sky);
}
.cz-color-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--sc-slate-200);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.cz-color-dot:hover { transform: scale(1.15); }
.cz-color-dot.active {
  border-color: var(--sc-dark);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.cz-toggle {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.cz-toggle-track {
  width: 32px; height: 18px;
  border-radius: 9px;
  background: var(--sc-slate-300);
  position: relative;
  transition: background 0.2s;
}
.cz-toggle-track.on { background: var(--sc-sky); }
.cz-toggle-track::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%; background: white;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cz-toggle-track.on::after { transform: translateX(14px); }
.cz-toggle-label {
  font-size: 0.72rem; font-weight: 500;
  color: var(--sc-slate-500);
}
.cz-icon-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--sc-slate-200);
  background: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  padding: 0;
}
.cz-icon-btn:hover { border-color: var(--sc-slate-300); background: var(--sc-slate-50); }
.cz-icon-btn.active {
  border-color: rgba(14,165,233,0.4);
  background: rgba(14,165,233,0.06);
  box-shadow: 0 0 0 2px rgba(14,165,233,0.1);
}
.cz-icon-btn svg { width: 20px; height: 20px; }
@keyframes czPulse {
  0% { box-shadow: 0 0 0 0 rgba(14,165,233,0.35); }
  70% { box-shadow: 0 0 0 8px rgba(14,165,233,0); }
  100% { box-shadow: 0 0 0 0 rgba(14,165,233,0); }
}
.cz-banner-preview .cz-title-icon-wrap {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.cz-banner-preview .cz-title-icon-wrap.pulse {
  animation: czPulse 2s ease-out infinite;
}

/* Live banner preview */
.cz-banner-preview {
  background: white;
  padding: 1.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}
.cz-banner-preview .cz-title-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.cz-banner-preview .cz-title {
  font-size: 0.92rem; font-weight: 700; color: #0f172a;
}
.cz-banner-preview .cz-desc {
  font-size: 0.8rem; color: #64748b; line-height: 1.55;
  margin-bottom: 0.6rem;
}
.cz-banner-preview .cz-link {
  font-size: 0.76rem; text-decoration: underline;
  display: inline-block; margin-bottom: 0.85rem;
  transition: color 0.2s;
}
.cz-banner-preview .cz-btn-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.cz-banner-preview .cz-accept {
  padding: 0.45rem 1rem;
  color: white; font-weight: 700; font-size: 0.8rem;
  border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex; align-items: center; gap: 6px;
}
.cz-banner-preview .cz-decline {
  padding: 0.45rem 1rem;
  background: white; font-weight: 600; font-size: 0.8rem;
  border: 1.5px solid #e2e8f0; color: #334155;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cz-banner-preview .cz-customize {
  background: transparent; border: none;
  color: #64748b; font-weight: 500; font-size: 0.8rem;
  padding: 0.45rem 0.5rem; cursor: pointer;
}
.cz-pill-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0.35rem 0.75rem;
  border-radius: var(--sc-radius-pill);
  font-size: 0.75rem; font-weight: 600;
  border: 1px solid var(--sc-slate-200);
  background: white;
  color: var(--sc-slate-600);
}
.cz-pill-tag i { font-size: 0.85rem; color: var(--sc-sky); }

/* ─── Cookie Scanner section ─── */
.scanner-console {
  background: #0c1222;
  border-radius: var(--sc-radius-xl);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}
.scanner-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scanner-dot { width: 10px; height: 10px; border-radius: 50%; }
.scanner-dot.r { background: #ef4444; }
.scanner-dot.y { background: #eab308; }
.scanner-dot.g { background: #22c55e; }
.scanner-topbar span:last-child {
  font-size: 0.68rem; color: rgba(255,255,255,0.25);
  margin-left: auto; font-family: inherit;
}
.scanner-body {
  padding: 1.25rem 1.5rem;
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-height: 320px;
  overflow-y: auto;
}
.scanner-body .cmd { color: #22c55e; }
.scanner-body .hl { color: #38BDF8; }
.scanner-body .warn { color: #eab308; }
.scanner-body .ok { color: #22c55e; }
.scanner-body .dim { color: rgba(255,255,255,0.25); }
.scanner-body .cat-pill {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 4px;
}
.scanner-body .cat-analytics { background: rgba(14,165,233,0.15); color: #38BDF8; }
.scanner-body .cat-marketing { background: rgba(239,68,68,0.15); color: #f87171; }
.scanner-body .cat-functional { background: rgba(168,85,247,0.15); color: #c084fc; }
.scanner-body .cat-necessary { background: rgba(34,197,94,0.15); color: #4ade80; }

.ocd-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 1rem 1.25rem;
  background: var(--sc-slate-50);
  border: 1px solid var(--sc-slate-200);
  border-radius: var(--sc-radius-lg);
  transition: all 0.2s;
}
.ocd-stat:hover {
  border-color: var(--sc-sky);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.1);
}
.ocd-stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ocd-stat-icon.blue { background: rgba(14,165,233,0.1); color: var(--sc-sky); }
.ocd-stat-icon.green { background: rgba(16,185,129,0.1); color: var(--sc-success); }
.ocd-stat-icon.purple { background: rgba(168,85,247,0.1); color: #a855f7; }
.ocd-stat-icon.amber { background: rgba(245,158,11,0.1); color: var(--sc-warning); }

/* ─── FAQ section ─── */
.faq-item {
  border: 1px solid var(--sc-slate-200);
  border-radius: var(--sc-radius-lg);
  background: white;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--sc-slate-300); }
.faq-item.open { border-color: var(--sc-sky); box-shadow: 0 0 0 1px rgba(14,165,233,0.1); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-q span {
  font-size: 0.92rem; font-weight: 600; color: var(--sc-dark);
}
.faq-q i {
  font-size: 1rem; color: var(--sc-slate-400);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--sc-sky); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.88rem;
  color: var(--sc-slate-500);
  line-height: 1.65;
}

