:root {
  --bg: #070a0d;
  --bg-elevated: #0d1218;
  --border: rgba(34, 197, 94, 0.18);
  --text: #e8edf2;
  --muted: #8b949e;
  --accent: #38eb61;
  --accent-glow: rgba(56, 235, 97, 0.35);
  --surface-0: #0d120f;
  --surface-1: #101512;
  --surface-2: #141915;
  --matrix: rgba(34, 197, 94, 0.06);
  --success: #3ecf6e;
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  /* Bot UI tokens */
  --ce-bg-window: #1c1a17;
  --ce-bg-loader: #0f1412;
  --ce-bg-card: rgba(10, 18, 13, 0.94);
  --ce-green: #38eb61;
  --ce-green-dim: #249442;
  --ce-green-border: rgba(31, 158, 61, 0.55);
  --ce-text: #f5f0e8;
  --ce-text-muted: #a8a29e;
  --ce-cta-green: #123d1c;
  --ce-titlebar-purple: #352d4a;
  --ce-radius: 6px;
  --section-pad: clamp(3.5rem, 8vw, 6rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; background: var(--bg); color: var(--text); font-family: var(--font); }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92vw); margin: 0 auto; }

.matrix-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(var(--matrix) 1px, transparent 1px),
    linear-gradient(90deg, var(--matrix) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(7, 10, 13, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1.15rem; letter-spacing: 0.04em; }
.logo img, .logo .ce-logo-svg { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.logo span { color: var(--ce-green); }
nav { display: flex; gap: 1.25rem; color: var(--muted); }
nav a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 0.5rem; align-items: center; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 0.4rem 0.65rem; cursor: pointer;
  font-size: 1.1rem; line-height: 1;
}
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}
.nav-drawer.open { display: block; }
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; width: min(300px, 88vw); height: 100%;
  background: var(--bg-elevated); border-left: 1px solid var(--border);
  padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateX(100%); transition: transform 0.25s ease;
}
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer a { padding: 0.65rem 0.75rem; border-radius: 8px; color: var(--muted); }
.nav-drawer a:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.nav-drawer-close {
  align-self: flex-end; background: transparent; border: none; color: var(--muted);
  font-size: 1.4rem; cursor: pointer; margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.2rem; border-radius: 8px; font-weight: 600;
  border: 1px solid transparent; transition: 0.2s ease;
}
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.9rem; }
.btn-primary {
  background: linear-gradient(135deg, #123d1c, #1a5c29);
  color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-ghost { border-color: var(--border); color: var(--muted); }
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }

main { position: relative; z-index: 1; }
.hero { padding: 6rem 0 4rem; position: relative; overflow: hidden; }
.hero-content { max-width: 680px; }
.eyebrow {
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--success); margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 1rem; }
.hero h1 .accent { color: var(--accent); }
.lead { color: var(--muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.status-pill {
  display: inline-block; font-family: var(--mono); font-size: 0.78rem;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted);
}
.status-pill.online { color: var(--success); border-color: rgba(62, 207, 110, 0.35); }

.features-preview {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; padding-bottom: 4rem;
}
.feature-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover { border-color: var(--ce-green-border); box-shadow: 0 0 32px rgba(56, 235, 97, 0.08); }
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.feature-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(56, 235, 97, 0.1); color: var(--ce-green, #38eb61); font-size: 1.1rem; margin-bottom: 0.75rem;
}

.auth-card {
  width: min(420px, 92vw); margin: 4rem auto; padding: 2rem;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.auth-card h1 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.auth-card .sub { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.92rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.35rem; }
.form-group input {
  width: 100%; padding: 0.7rem 0.85rem; border-radius: 8px;
  border: 1px solid var(--border); background: #0a0f14; color: var(--text);
  font-family: var(--font);
}
.form-group input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-error { color: #f87171; font-size: 0.85rem; margin-top: 0.75rem; min-height: 1.2em; }
.form-success { color: var(--success); font-size: 0.85rem; margin-top: 0.75rem; min-height: 1.2em; }
.notice { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; margin-bottom: 1rem; }
.notice.success { background: rgba(62, 207, 110, 0.1); border: 1px solid rgba(62, 207, 110, 0.35); color: var(--success); }

.verify-steps { display: grid; gap: 0.75rem; margin-top: 1rem; }
.verify-steps .step {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem;
  background: #0a0f14; border: 1px solid var(--border); border-radius: 8px; font-size: 0.92rem;
}
.verify-steps .step span {
  width: 1.6rem; height: 1.6rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(56, 235, 97, 0.12); color: var(--accent); font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}

.dashboard { width: min(960px, 92vw); margin: 2rem auto 4rem; }
.dashboard-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.dashboard-header h1 { font-size: 1.8rem; margin: 0.25rem 0; }
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.dash-card {
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem;
}
.dash-card.wide { grid-column: 1 / -1; }
.dash-card h2 { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.time-display {
  font-family: var(--mono); font-size: 2.4rem; font-weight: 600; letter-spacing: 0.04em; margin: 0.5rem 0;
}
.time-display.unlimited { color: var(--success); }
.license-status {
  display: inline-block; margin-top: 0.75rem; padding: 0.35rem 0.75rem; border-radius: 999px; font-size: 0.8rem;
  border: 1px solid var(--border);
}
.license-status.active { color: var(--success); border-color: rgba(62, 207, 110, 0.35); }
.license-status.inactive { color: #f87171; border-color: rgba(248, 113, 113, 0.35); }
.meta-list { list-style: none; display: grid; gap: 0.65rem; }
.meta-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; }
.meta-list span { color: var(--muted); }
.tx-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.tx-table th, .tx-table td { text-align: left; padding: 0.55rem 0.35rem; border-bottom: 1px solid var(--border); }
.tx-table .pos { color: var(--success); }
.tx-table .neg { color: #f87171; }

.content-page { width: min(720px, 92vw); margin: 3rem auto; }
.content-page h1 { margin-bottom: 0.5rem; }
.prose { color: var(--muted); line-height: 1.7; display: grid; gap: 1rem; margin-top: 1.5rem; }

.site-footer {
  border-top: 1px solid var(--border); padding: 2rem 0; margin-top: 3rem;
  color: var(--muted); font-size: 0.88rem;
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.footer-grid a { display: block; margin-bottom: 0.35rem; }
.footer-grid a:hover { color: var(--text); }
.muted { opacity: 0.7; }

.section-block { padding: var(--section-pad) 0; position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head .eyebrow { margin-bottom: 0.75rem; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.15; margin-bottom: 0.75rem; }
.section-head p { color: var(--muted); line-height: 1.65; font-size: 1.02rem; }
.section-cta { text-align: center; margin-top: 2rem; }

.btn-green {
  background: var(--ce-cta-green); color: var(--ce-green); border-color: var(--ce-green-border);
}
.btn-green:hover { background: #1a5c29; filter: none; transform: translateY(-1px); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem;
}
.pricing-card {
  position: relative;
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem; transition: 0.2s ease;
}
.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(56, 235, 97, 0.15);
  color: var(--ce-green, #38eb61);
  margin-bottom: 0.5rem;
}
.pricing-card.featured { border-color: rgba(56, 235, 97, 0.35); box-shadow: 0 0 40px rgba(56, 235, 97, 0.08); }
.pricing-card .price { font-size: 1.75rem; color: var(--accent); font-weight: 700; margin: 0.5rem 0; }
.pricing-card .price-sub { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.pricing-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

.faq-list { display: grid; gap: 0.75rem; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.1rem 1.25rem;
}
.faq-item h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.faq-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 720px) {
  nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ─── Dashboard v2 ─── */
.dash-shell {
  position: relative;
  width: min(1180px, 94vw);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}
.dash-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.dash-glow-a { width: 420px; height: 420px; top: 8%; left: -8%; background: rgba(56, 235, 97, 0.18); }
.dash-glow-b { width: 380px; height: 380px; top: 40%; right: -6%; background: rgba(34, 197, 94, 0.15); }

.dash-topbar {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem; margin-bottom: 2rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(13, 18, 24, 0.95), rgba(10, 15, 20, 0.88));
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.dash-user-block { display: flex; align-items: center; gap: 1rem; }
.dash-avatar {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; letter-spacing: 0.05em;
  background: linear-gradient(145deg, #123d1c, #249442);
  box-shadow: 0 8px 24px rgba(56, 235, 97, 0.25);
}
.dash-eyebrow {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--success); margin-bottom: 0.2rem;
}
.dash-topbar h1 { font-size: 1.65rem; line-height: 1.15; margin: 0; }
.dash-email { color: var(--muted); font-size: 0.88rem; margin-top: 0.15rem; }
.dash-top-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }
.dash-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--muted);
}
.dash-chip.live { color: var(--success); border-color: rgba(62, 207, 110, 0.4); background: rgba(62, 207, 110, 0.08); }
.dash-chip.off { color: #f87171; border-color: rgba(248, 113, 113, 0.35); background: rgba(248, 113, 113, 0.06); }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: currentColor;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

.dash-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem;
}
@media (max-width: 860px) { .dash-hero-grid { grid-template-columns: 1fr; } }

.dash-panel {
  background: linear-gradient(160deg, rgba(13, 18, 24, 0.92), rgba(8, 12, 16, 0.96));
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.dash-panel-wide { position: relative; z-index: 1; margin-bottom: 1.25rem; }
.dash-panel-head h2 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.dash-panel-head p { color: var(--muted); font-size: 0.86rem; }
.dash-panel-head.row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1rem; }

.dash-ring-wrap {
  position: relative; width: 200px; height: 200px; margin: 1rem auto 1.25rem;
}
.dash-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255, 255, 255, 0.06); stroke-width: 8; }
.ring-fg {
  fill: none; stroke: url(#ringGrad); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 327; stroke-dashoffset: var(--ring-offset, 327);
  transition: stroke-dashoffset 1s ease;
  filter: drop-shadow(0 0 8px rgba(56, 235, 97, 0.45));
}
.dash-ring-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.dash-time {
  font-family: var(--mono); font-size: 2rem; font-weight: 700; letter-spacing: 0.06em;
  background: linear-gradient(180deg, #fff, #a8b4c0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.dash-time.unlimited { font-size: 2.8rem; -webkit-text-fill-color: var(--success); }
.dash-time-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }

.dash-meter-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.dash-meter {
  padding: 0.65rem 0.75rem; border-radius: 12px;
  background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.05);
}
.dash-meter span { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.dash-meter strong { font-size: 0.92rem; }
.dash-meter strong.ok { color: var(--success); }
.dash-meter strong.bad { color: #f87171; }

.dash-panel-stats h2 { font-size: 0.95rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.dash-stat-list { list-style: none; display: grid; gap: 0.65rem; margin-bottom: 1.25rem; }
.dash-stat-list li {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 1rem; border-radius: 12px;
  background: rgba(0, 0, 0, 0.22); border: 1px solid rgba(255, 255, 255, 0.04);
}
.stat-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56, 235, 97, 0.12); color: var(--accent); font-size: 0.9rem;
}
.dash-stat-list small { display: block; color: var(--muted); font-size: 0.75rem; }
.dash-stat-list strong { font-size: 0.92rem; }

.dash-quick-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
@media (max-width: 480px) { .dash-quick-links { grid-template-columns: 1fr; } }
.dash-link-card {
  padding: 1rem; border-radius: 14px; border: 1px solid var(--border);
  background: rgba(10, 15, 20, 0.6); transition: 0.2s ease;
}
.dash-link-card:hover { border-color: rgba(56, 235, 97, 0.4); transform: translateY(-2px); }
.dash-link-card strong { display: block; font-size: 0.92rem; margin-bottom: 0.2rem; }
.dash-link-card span { font-size: 0.78rem; color: var(--muted); }
.dash-link-card.accent { border-color: rgba(62, 207, 110, 0.3); background: rgba(62, 207, 110, 0.05); }

.dash-empty {
  padding: 2rem; text-align: center; color: var(--muted);
  border: 1px dashed var(--border); border-radius: 12px;
}
.dash-timeline { display: grid; gap: 0.5rem; }
.dash-tx {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center;
  padding: 0.85rem 1rem; border-radius: 12px;
  background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.04);
}
.dash-tx-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.dash-tx-icon.gain { background: rgba(62, 207, 110, 0.15); color: var(--success); }
.dash-tx-icon.spend { background: rgba(248, 113, 113, 0.12); color: #f87171; }
.dash-tx-body span { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }
.dash-tx-meta { text-align: right; }
.dash-tx-meta small { display: block; color: var(--muted); font-size: 0.75rem; margin-top: 0.15rem; }
.pos { color: var(--success); }
.neg { color: #f87171; }

.dash-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.75rem; }
.dash-step {
  display: flex; gap: 0.85rem; padding: 1rem; border-radius: 14px;
  background: rgba(0, 0, 0, 0.22); border: 1px solid rgba(255, 255, 255, 0.05);
}
.dash-step span {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #123d1c, #1a5c29); color: var(--accent); font-weight: 700; font-size: 0.85rem;
}
.dash-step p { font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; line-height: 1.45; }

/* ─── Guide page ─── */
.guide-shell { width: min(1100px, 94vw); margin: 0 auto; padding: 2rem 0 4rem; position: relative; z-index: 1; }
.guide-hero { margin-bottom: 2rem; }
.guide-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0.35rem 0; }
.guide-lead { color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.6; }
.guide-layout { display: grid; grid-template-columns: 220px 1fr; gap: 1.25rem; }
@media (max-width: 768px) { .guide-layout { grid-template-columns: 1fr; } }

.guide-tabs {
  display: flex; flex-direction: column; gap: 0.35rem;
  position: sticky; top: 5rem; align-self: start;
}
@media (max-width: 768px) {
  .guide-tabs { flex-direction: row; flex-wrap: wrap; position: static; }
}
.guide-tab {
  text-align: left; padding: 0.65rem 1rem; border-radius: 10px;
  border: 1px solid transparent; background: transparent;
  color: var(--muted); font-family: var(--font); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: 0.15s ease;
}
.guide-tab:hover { color: var(--text); background: rgba(255, 255, 255, 0.03); }
.guide-tab.active {
  color: var(--text); background: rgba(56, 235, 97, 0.12);
  border-color: rgba(56, 235, 97, 0.35); font-weight: 600;
}

.guide-panel {
  display: none; padding: 1.75rem 2rem;
  background: linear-gradient(160deg, rgba(13, 18, 24, 0.95), rgba(8, 12, 16, 0.98));
  border: 1px solid rgba(34, 197, 94, 0.18); border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  animation: fadeIn 0.25s ease;
}
.guide-panel.active { display: block; }
.guide-panel h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.guide-panel p { color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.guide-list { list-style: none; display: grid; gap: 0.65rem; }
.guide-list li {
  padding: 0.75rem 1rem; border-radius: 10px;
  background: rgba(0, 0, 0, 0.22); border-left: 3px solid var(--accent);
  font-size: 0.92rem; line-height: 1.55; color: #c8d0d8;
}
.guide-list strong { color: var(--text); }
.guide-callout {
  margin-top: 1rem; padding: 0.85rem 1rem; border-radius: 10px;
  background: rgba(62, 207, 110, 0.08); border: 1px solid rgba(62, 207, 110, 0.25);
  font-size: 0.88rem; color: var(--success);
}
.guide-callout.warn { background: rgba(224, 89, 71, 0.08); border-color: rgba(224, 89, 71, 0.3); color: #f0a090; }

/* Sitewide free-beta banner */
.beta-banner {
  position: relative;
  z-index: 11;
  background: linear-gradient(90deg, rgba(18, 61, 28, 0.95), rgba(13, 18, 15, 0.98), rgba(18, 61, 28, 0.95));
  border-bottom: 1px solid var(--ce-green-border);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ce-text, #f5f7f2);
}
.beta-banner strong { color: var(--accent); }
.beta-banner a { color: var(--accent); text-decoration: underline; margin-left: 0.35rem; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.5rem;
}
.lang-switcher a {
  font-size: 0.72rem;
  font-family: var(--mono);
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
  color: var(--muted);
  border: 1px solid transparent;
}
.lang-switcher a:hover { color: var(--text); border-color: var(--border); }
.lang-switcher a.active { color: var(--accent); border-color: var(--ce-green-border); background: rgba(56, 235, 97, 0.08); }

.pricing-card.coming-soon { opacity: 0.55; pointer-events: none; }
.pricing-card.coming-soon .price { color: var(--muted); font-size: 1.1rem; }
.pricing-soon-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--mono);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(168, 162, 158, 0.15);
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.guide-footer-cta { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

