/* Version: 1.1.0 | BlockZee website styles | 2026-04-02 */

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #09090f;
  --surface:     #111118;
  --surface-2:   #18181f;
  --surface-3:   #22222c;
  --border:      #2a2a38;
  --border-light:#33334a;
  --green:       #22c55e;
  --green-dim:   rgba(34, 197, 94, 0.12);
  --green-glow:  rgba(34, 197, 94, 0.25);
  --blue:        #3b82f6;
  --text:        #f0f0fa;
  --text-2:      #9999bb;
  --text-3:      #55556a;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.6);
  --font:        -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--green);
  color: #000;
}
.btn-primary:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 4px 20px var(--green-glow); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-light); background: var(--surface-2); }

.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-lg svg { width: 18px; height: 18px; }

/* ─── Section labels ─────────────────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ─── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 9, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-shield { width: 22px; height: 26px; }

.nav-wordmark {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: 16px; padding: 8px 18px; font-size: 14px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.08) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-heading {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-fine {
  font-size: 13px;
  color: var(--text-3);
}

/* Shield visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}

.shield-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.shield-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--green);
  animation: ring-pulse 3s ease-in-out infinite;
}

.ring-1 { width: 140px; height: 140px; animation-delay: 0s; }
.ring-2 { width: 200px; height: 200px; animation-delay: 0.6s; }
.ring-3 { width: 260px; height: 260px; animation-delay: 1.2s; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  30% { opacity: 0.25; }
  60% { opacity: 0; transform: translate(-50%, -50%) scale(1.05); }
}

.shield-icon {
  width: 96px;
  height: 112px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(34,197,94,0.4));
}

.shield-status {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Stat pills */
.stat-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 300px;
}

.stat-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
}

.pill-count {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.pill-ads .pill-count    { color: #f87171; }
.pill-trackers .pill-count { color: #fb923c; }
.pill-fp .pill-count     { color: #a78bfa; }

.pill-label {
  font-size: 12px;
  color: var(--text-3);
  text-align: right;
}

/* ─── Proof bar ──────────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 40px;
}

.proof-item strong {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.proof-item span {
  font-size: 13px;
  color: var(--text-3);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── Problem ────────────────────────────────────────────────────────────── */
.problem {
  padding: 100px 0;
  text-align: center;
}

.problem .section-heading { margin: 0 auto 48px; max-width: 600px; }

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.problem-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── Features ───────────────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.feature-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  border-color: rgba(34,197,94,0.2);
}

.feature-card--large:hover { border-color: rgba(34,197,94,0.4); }

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.code {
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 11px;
  background: var(--surface-3);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--text-2);
}

/* ─── How it works ───────────────────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.step-arrow {
  font-size: 24px;
  color: var(--border-light);
  padding: 0 24px;
  padding-top: 12px;
  flex-shrink: 0;
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.step-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── Popup preview ──────────────────────────────────────────────────────── */
.preview {
  padding: 100px 0;
}

.preview-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.preview-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.preview-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-2);
}

.preview-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Popup mockup */
.popup-mockup {
  width: 300px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.popup-chrome {
  background: var(--surface-3);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.popup-dots {
  display: flex;
  gap: 5px;
}

.popup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
}

.popup-dots span:nth-child(1) { background: #ff5f57; }
.popup-dots span:nth-child(2) { background: #ffbd2e; }
.popup-dots span:nth-child(3) { background: #28c840; }

.popup-title {
  font-size: 12px;
  color: var(--text-3);
  margin-left: auto;
  margin-right: auto;
  padding-right: 32px;
}

.popup-body { padding: 20px 16px 16px; }

.popup-shield-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.popup-shield-mini svg { width: 44px; height: 52px; }

.popup-protected {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.popup-count-label {
  font-size: 10px;
  color: var(--text-3);
  margin-bottom: 2px;
}

.popup-count {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.popup-this-tab {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.popup-pills-row {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.popup-pill {
  flex: 1;
  background: var(--surface-3);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  border: 1px solid var(--border);
}

.pp-num {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.pp-lbl {
  display: block;
  font-size: 9px;
  color: var(--text-3);
  margin-top: 2px;
}

.popup-tabs-row {
  display: flex;
  border-top: 1px solid var(--border);
  margin: 0 -16px -16px;
}

.popup-tab {
  flex: 1;
  padding: 10px 4px;
  text-align: center;
  font-size: 10px;
  color: var(--text-3);
  border-top: 2px solid transparent;
  cursor: default;
}

.popup-tab.active {
  color: var(--green);
  border-top-color: var(--green);
  font-weight: 600;
}

/* ─── Browsers ───────────────────────────────────────────────────────────── */
.browsers {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.browsers .section-heading { margin: 0 auto 48px; }

.browser-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.browser-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px 18px;
  width: 120px;
  transition: border-color 0.2s, transform 0.2s;
}

.browser-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.browser-logo svg {
  width: 48px;
  height: 48px;
  display: block;
}

.browser-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.browser-install {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  padding: 3px 12px;
  transition: background 0.15s;
}

.browser-install:hover { background: var(--green-dim); }

/* ─── Privacy ────────────────────────────────────────────────────────────── */
.privacy { padding: 100px 0; }

.privacy-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 64px;
}

.privacy-icon svg { width: 80px; height: 80px; }

.privacy-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.privacy-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.privacy-point svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Install ────────────────────────────────────────────────────────────── */
.install {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(34,197,94,0.03) 50%, var(--bg) 100%);
}

.install .section-heading { margin: 0 auto; }
.install .section-sub { margin: 16px auto 48px; }

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.install-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.2s;
  background: var(--surface);
  text-align: center;
}

.install-btn svg { width: 24px; height: 24px; }

.install-btn span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
}

.install-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-color: var(--border-light);
}

.install-chrome  { background: linear-gradient(135deg, #1a2744, var(--surface)); border-color: #2a3a60; }
.install-firefox { background: linear-gradient(135deg, #2a1a10, var(--surface)); border-color: #4a2a14; }
.install-safari  { background: linear-gradient(135deg, #0d1f3c, var(--surface)); border-color: #1a3060; }
.install-edge    { background: linear-gradient(135deg, #0d2035, var(--surface)); border-color: #1a3a55; }
.install-brave   { background: linear-gradient(135deg, #2a1410, var(--surface)); border-color: #4a2010; }
.install-opera   { background: linear-gradient(135deg, #2a1010, var(--surface)); border-color: #4a1515; }

.install-note {
  font-size: 14px;
  color: var(--text-3);
}

.install-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 240px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 1; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .preview-inner { grid-template-columns: 1fr; }
  .popup-mockup { width: 100%; max-width: 340px; margin: 0 auto; }
  .privacy-inner { grid-template-columns: 1fr; }
  .privacy-icon { display: none; }
  .steps { flex-direction: column; gap: 24px; }
  .step-arrow { display: none; }
  .install-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 120px 0 80px; }
  .problem-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-items { gap: 0; }
  .proof-item { padding: 8px 20px; }
  .proof-divider { height: 30px; }
  .browser-grid { gap: 10px; }
  .browser-card { width: 100px; padding: 18px 12px 14px; }
  .install-grid { grid-template-columns: 1fr; max-width: 320px; }
  .privacy-inner { padding: 32px 24px; }
  .privacy-points { grid-template-columns: 1fr; }
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin-top: 48px;
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item--highlight {
  border-color: rgba(34,197,94,0.3);
  background: linear-gradient(135deg, rgba(34,197,94,0.05) 0%, var(--surface-2) 60%);
}

.faq-item--highlight:hover { border-color: rgba(34,197,94,0.5); }
.faq-item:not(.faq-item--highlight):hover { border-color: var(--border-light); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
}

.faq-q:hover { color: var(--text); }

.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-a { display: block; }

.faq-a p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-top: 16px;
}

.faq-a p strong { color: var(--text); }
.faq-a p em { color: var(--text); font-style: normal; font-weight: 600; }

.faq-howto {
  margin-top: 16px;
  background: var(--surface-3);
  border-radius: 10px;
  padding: 16px 18px;
  border: 1px solid var(--border);
}

.faq-howto strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-howto ol {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-howto ol li {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.faq-howto ol li strong { color: var(--text); }

.faq-howto code {
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 12px;
  background: var(--surface);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.faq-howto p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.faq-domains {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.faq-domain-label {
  font-size: 12px;
  color: var(--text-3);
  margin-right: 4px;
}

.faq-chip {
  font-size: 12px;
  font-family: "SF Mono", "Fira Code", monospace;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  color: var(--text-2);
}

/* ─── Comparison table ───────────────────────────────────────────────────── */
.compare {
  padding: 100px 0;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 48px;
  background: var(--surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.compare-table thead tr {
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.compare-feature-col {
  text-align: left !important;
  width: 38%;
  color: var(--text-3) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em !important;
}

.compare-col--blockzeee {
  background: rgba(34, 197, 94, 0.05);
  color: var(--green) !important;
  border-left: 1px solid rgba(34, 197, 94, 0.2);
  border-right: 1px solid rgba(34, 197, 94, 0.2);
}

.compare-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:not(.compare-row--cta):hover {
  background: var(--surface-2);
}

.compare-feature {
  padding: 13px 20px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  text-align: left;
}

.compare-val {
  padding: 13px 20px;
  text-align: center;
  font-size: 14px;
  vertical-align: middle;
}

.compare-val--blockzeee {
  background: rgba(34, 197, 94, 0.04);
  border-left: 1px solid rgba(34, 197, 94, 0.15);
  border-right: 1px solid rgba(34, 197, 94, 0.15);
}

.cv-yes {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  margin-right: 4px;
}

.cv-no {
  color: var(--text-3);
  font-weight: 700;
  font-size: 15px;
}

.cv-partial {
  color: #f59e0b;
  font-weight: 700;
  font-size: 15px;
  margin-right: 4px;
}

.cv-note {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
  font-weight: 400;
}

.compare-row--cta td {
  padding: 16px 20px;
}

.compare-val--alt {
  vertical-align: middle;
}

.compare-alt-link {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: underline;
  text-decoration-color: var(--border-light);
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.compare-alt-link:hover {
  color: var(--text-2);
}

.compare-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 20px;
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
