/* ═══════════════════════════════════════════════
   SnowOps Intelligence — Enterprise Landing Page
   Minimal Corporate SaaS Design
   Dark + Light Mode | Boxy | Edgy | Modern
   ═══════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Hero Canvas & Glow ── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-subtle) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* ── Trusted By Bar ── */
.trusted-bar {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg-secondary);
}

.trusted-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.trusted-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.trusted-items {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-items span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trusted-dot {
  color: var(--border-hover);
}

/* ── Quote / Social Proof Bar ── */
.quote-bar {
  padding: 64px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.quote-text {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
  border: none;
  padding: 0;
}

.quote-text strong {
  color: var(--accent);
  font-weight: 700;
}

.quote-author {
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Deploy Method Tabs ── */
.deploy-tabs {
  display: flex;
  gap: 2px;
  margin-top: 32px;
  margin-bottom: 0;
  justify-content: center;
}

.deploy-tab {
  padding: 12px 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.deploy-tab:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.deploy-tab.active {
  background: var(--accent-subtle);
  color: var(--accent);
  border-color: var(--accent-border);
}

/* ── Enhanced Feature Card Hover ── */

/* ── CSS Variables — Dark Mode (default) ── */
:root,
[data-theme="dark"] {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --bg-nav: rgba(10, 10, 10, 0.9);
  --text-primary: #fafafa;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border: #222222;
  --border-hover: #333333;
  --accent: #29B5E8;
  --accent-hover: #1da3d4;
  --accent-subtle: rgba(41, 181, 232, 0.08);
  --accent-border: rgba(41, 181, 232, 0.2);
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --code-bg: #0d0d0d;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
}

/* ── Light Mode ── */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-tertiary: #f0f0f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f5f5;
  --bg-nav: rgba(255, 255, 255, 0.92);
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #999999;
  --border: #e5e5e5;
  --border-hover: #d0d0d0;
  --accent: #0c8ce9;
  --accent-hover: #0a7ad4;
  --accent-subtle: rgba(12, 140, 233, 0.06);
  --accent-border: rgba(12, 140, 233, 0.15);
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  --code-bg: #f5f5f5;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

/* ── Typography ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

.text-accent {
  color: var(--accent);
}

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-logo svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════
   PRODUCT SHOWCASE (Bento Grid)
   ═══════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.bento-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: background 0.2s;
}

.bento-item:hover {
  background: var(--bg-card-hover);
}

.bento-item.large {
  grid-column: span 2;
}

.bento-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.bento-item:hover img {
  transform: scale(1.02);
}

.bento-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

[data-theme="light"] .bento-label {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
  color: #111;
}

/* ═══════════════════════════════
   FEATURES GRID
   ═══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.feature-card:nth-child(3n) {
  border-right: none;
}

.feature-card:hover {
  background: var(--bg-card-hover);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
}

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

.feature-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
}

.tag-free {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.tag-pro {
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

/* ═══════════════════════════════
   DEEP DIVE SECTIONS (Alternating)
   ═══════════════════════════════ */
.deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.deep-dive.reverse {
  direction: rtl;
}

.deep-dive.reverse>* {
  direction: ltr;
}

.deep-dive-content .section-label {
  margin-bottom: 12px;
}

.deep-dive-content .section-title {
  font-size: 2rem;
}

.deep-dive-content p {
  margin-top: 16px;
}

.deep-dive-content ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.deep-dive-content ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.deep-dive-content ul li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}

.deep-dive-img {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.deep-dive-img img {
  width: 100%;
}

/* ═══════════════════════════════
   SETUP / GETTING STARTED
   ═══════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.step-card {
  padding: 32px;
  background: var(--bg-card);
}

.step-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-code {
  background: var(--code-bg);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.78rem;
  color: var(--accent);
  overflow-x: auto;
  white-space: pre;
}

/* ═══════════════════════════════
   PRICING
   ═══════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.pricing-card {
  padding: 40px;
  background: var(--bg-card);
}

.pricing-card.highlighted {
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* ═══════════════════════════════
   TRY FREE / CTA SECTION
   ═══════════════════════════════ */
.cta-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 64px;
  margin-top: 48px;
  text-align: center;
}

.cta-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 32px auto 0;
  justify-content: center;
}

.cta-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.9rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input:focus {
  border-color: var(--accent);
}

.cta-input::placeholder {
  color: var(--text-muted);
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════
   ANIMATIONS
   ═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .deep-dive {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .deep-dive.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.large {
    grid-column: span 1;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-section {
    padding: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Step Cards (Setup Guide) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: border-color 0.2s, background 0.2s;
}

.step-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.step-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-code {
  background: var(--code-bg);
  border: 1px solid var(--border);
  padding: 16px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.7;
  overflow-x: auto;
}

/* ── Image Gallery (Showcase Section) ── */
.gallery-container {
  position: relative;
  margin-top: 48px;
}

.gallery-track {
  display: flex;
  gap: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-slide {
  min-width: 100%;
  background: var(--bg-card);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-caption span {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.82rem;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.15s;
}

.gallery-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.gallery-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.gallery-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 24px;
}

.gallery-counter {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ── View All Features Link ── */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 32px;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.view-all-link:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 16px;
  }

  .step-card {
    padding: 28px 20px;
  }

  .nav-github-btn {
    display: none !important;
  }
}

/* ═══════════════════════════════
   LITE vs PRO COMPARISON TABLE
   ═══════════════════════════════ */
.comparison-table {
  margin-top: 40px;
  overflow-x: auto;
}

.feature-comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.feature-comparison th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1;
}

.feature-comparison th:nth-child(3),
.feature-comparison th:nth-child(4) {
  text-align: center;
  width: 80px;
}

.feature-comparison td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.feature-comparison tr:hover td {
  background: var(--bg-card-hover);
}

.category-row td {
  background: var(--bg-secondary) !important;
  font-weight: 700;
  color: var(--text-primary) !important;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px !important;
}

.feature-comparison .check,
.feature-comparison .lock {
  text-align: center;
  font-size: 1rem;
}

.feature-comparison .check {
  color: var(--success);
}

.feature-comparison .lock {
  color: var(--text-muted);
  opacity: 0.5;
}

@media (max-width: 600px) {
  .feature-comparison {
    font-size: 0.75rem;
  }

  .feature-comparison th,
  .feature-comparison td {
    padding: 8px 10px;
  }
}

.deep-dive-img,
.gallery-slide img {
  border: 4px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .deep-dive-img,
[data-theme="light"] .gallery-slide img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}