/* ─────────────────────────────────────────────────────────────────
   Auto Perchance · shared design system
   Used by index.html, perchance-pro.html, auto-perchance.html
   ───────────────────────────────────────────────────────────────── */

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

:root {
  --bg: #050a10;
  --bg2: #080f18;
  --surface: rgba(255, 255, 255, 0.04);
  --surface2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --text: #f0f6ff;
  --muted: #7a8fa6;
  --muted2: #4a6070;
  --blue: #38bdf8;
  --blue-dim: rgba(56, 189, 248, 0.15);
  --gold: #f59e0b;
  --green: #10b981;
  --purple: #a78bfa;
  --red: #ef4444;
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: var(--blue);
}

/* ── Canvas Background ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Layout ── */
.wrapper {
  position: relative;
  z-index: 1;
}

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

section {
  padding: 80px 0;
}

/* ── Navbar ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(5, 10, 16, 0.85);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #7dd3fc;
  transform: translateY(-1px);
}

.nav-cta.gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #fff;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.3);
}

.nav-cta.gold:hover {
  filter: brightness(1.1);
}

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-ext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 2px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
}

.hero-logo.gold {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h1 .highlight {
  background: linear-gradient(135deg, var(--blue), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 .highlight.gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
  background: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.35);
}

.btn-primary.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
}

.btn-primary.gold:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--surface2);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-num.gold {
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Two-Product Cards ── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
  text-align: left;
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.product-card.featured {
  border-color: rgba(245, 158, 11, 0.45);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.08);
}

.recommended-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.product-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.product-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover;
  flex-shrink: 0;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-tagline {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 2px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.84rem;
}

.product-bullets li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

.product-card.featured .product-bullets li::before {
  color: var(--gold);
}

.product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-actions .btn-primary,
.product-actions .btn-ghost {
  justify-content: center;
  font-size: 0.9rem;
  padding: 12px 18px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}

.product-link:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-eyebrow.gold {
  color: var(--gold);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
  transition:
    border-color 0.3s,
    transform 0.3s;
}

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

/* ── Feature Grid ── */
.features-bg {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(56, 189, 248, 0.03),
    transparent
  );
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.04),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-dim);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-icon.gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 2px solid rgba(56, 189, 248, 0.3);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Use Cases ── */
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.usecase-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.25s;
}

.usecase-item:hover {
  border-color: var(--border-hover);
}

.usecase-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.usecase-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.usecase-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Comparison Table ── */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px);
}

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

.compare-table th,
.compare-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.compare-table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 800;
}

.compare-table thead th.col-premium {
  color: var(--gold);
  background: rgba(245, 158, 11, 0.06);
}

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

.compare-table td.cmp-feature {
  color: var(--muted);
  font-weight: 500;
}

.compare-table th.cmp-col,
.compare-table td.cmp-col {
  text-align: center;
  width: 26%;
}

.compare-table td.col-premium {
  background: rgba(245, 158, 11, 0.04);
}

.compare-table .cmp-yes {
  color: var(--green);
  font-weight: 800;
}

.compare-table .cmp-no {
  color: var(--muted2);
  font-weight: 600;
}

.compare-table .cmp-value {
  color: var(--text);
  font-weight: 700;
}

.compare-table .cmp-value.limited {
  color: var(--muted);
  font-weight: 500;
}

.compare-table .cmp-cta {
  text-align: center;
  padding: 22px 18px;
}

/* ── Pricing Teaser ── */
.pricing-teaser {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.06),
    rgba(129, 140, 248, 0.06)
  );
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
}

.pricing-plan {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.pricing-plan.featured {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.06);
}

.pricing-divider {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.plan-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}

.plan-label.gold {
  color: var(--gold);
}

.plan-amt {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-amt .currency {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}

.plan-amt.gold-text {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-period {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.plan-perks {
  list-style: none;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
  flex: 1;
}

.plan-perks li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

.plan-unlock-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-unlock-btns .btn-primary,
.plan-unlock-btns .btn-ghost {
  justify-content: center;
  font-size: 0.85rem;
  padding: 12px 14px;
  text-align: center;
}

.plan-unlock-btns .btn-unlock-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.plan-unlock-btns .btn-unlock-pro:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.plan-unlock-btns .btn-unlock-auto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.plan-unlock-btns .btn-unlock-auto:hover {
  border-color: var(--border-hover);
  background: var(--surface2);
}

.pricing-cta {
  text-align: center;
  margin-top: 28px;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  padding: 18px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition:
    color 0.2s,
    background 0.2s;
}

.faq-q:hover {
  color: var(--blue);
  background: rgba(56, 189, 248, 0.03);
}

.faq-q .chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s;
  font-size: 1rem;
}

.faq-a {
  padding: 0 22px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.2s;
}

.faq-item.open .faq-a {
  max-height: 340px;
  padding-bottom: 18px;
}

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

.faq-item.open .faq-q {
  color: var(--gold);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.1),
    rgba(167, 139, 250, 0.08)
  );
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(56, 189, 248, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ── Dev Card ── */
.dev-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.dev-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.35);
  object-fit: cover;
  flex-shrink: 0;
}

.dev-name {
  font-weight: 800;
  font-size: 1.05rem;
}

.dev-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

.dev-links {
  margin-left: auto;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: all 0.2s;
  white-space: nowrap;
}

.pill:hover {
  border-color: var(--border-hover);
  background: var(--surface2);
}

.pill.tg {
  background: rgba(42, 171, 238, 0.1);
  border-color: rgba(42, 171, 238, 0.35);
  color: #2aabee;
}

.pill.chrome {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--blue);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.8rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

footer a {
  color: var(--blue);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ── Telegram FAB ── */
.telegram-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  box-shadow: 0 4px 20px rgba(42, 171, 238, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
  animation: fabPulse 2.5s ease-in-out infinite;
}

.telegram-fab:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 30px rgba(42, 171, 238, 0.7);
}

.telegram-fab svg {
  width: 26px;
  height: 26px;
  fill: white;
}

@keyframes fabPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(42, 171, 238, 0.5);
  }
  50% {
    box-shadow: 0 4px 36px rgba(42, 171, 238, 0.85);
  }
}

/* ── Helpers ── */
.stats-block {
  margin-top: 56px;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-note strong {
  color: var(--text);
}

.footer-links {
  margin-top: 10px;
}

.footer-copyright {
  margin-top: 10px;
  font-size: 0.73rem;
  color: var(--muted2);
}

.cta-banner .hero-actions {
  margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 70px 0 60px;
  }
  .nav-links {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  .pricing-row {
    grid-template-columns: 1fr;
  }
  .pricing-divider {
    display: none;
  }
  .dev-links {
    display: none;
  }
  .cta-banner {
    padding: 40px 24px;
  }
  .hero-stats {
    gap: 24px;
  }
  .compare-table th,
  .compare-table td {
    padding: 12px 12px;
    font-size: 0.82rem;
  }
}
