/* ══════════════════════════════════════════════════════════
   OPENFLUFF — Product Studio Design System
   Dark-mode, premium, modern glassmorphism
   ══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --accent-purple: #8B5CF6;
  --accent-blue: #3B82F6;
  --accent-green: #10B981;
  --accent-amber: #F59E0B;
  --accent-pink: #EC4899;
  --gradient-hero: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #10B981 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.06), transparent 40%);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 8px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Container ───────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 10, 15, 0.8);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--gradient-hero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.nav-logo span { font-weight: 400; opacity: 0.6; -webkit-text-fill-color: var(--text-muted); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent-purple) !important;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-1px);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0%, 0%) rotate(0deg); }
  100% { transform: translate(-5%, -3%) rotate(3deg); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 6px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--accent-purple);
  margin-bottom: 32px;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 800px;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero h1 .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-top: 24px;
  line-height: 1.7;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-ctas {
  display: flex; gap: 16px;
  margin-top: 48px;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.btn-primary {
  padding: 14px 32px;
  background: var(--gradient-hero);
  border: none; border-radius: 100px;
  font-size: 1rem; font-weight: 600;
  color: white; cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4); }
.btn-secondary {
  padding: 14px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 1rem; font-weight: 500;
  color: var(--text-secondary); cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--border-hover); color: var(--text-primary); }

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 64px;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-size: 2rem; font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Section ─────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-purple);
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.5rem; font-weight: 800;
  letter-spacing: -1px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
}

/* ── Product Grid ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--accent-purple));
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.product-card:hover::before { opacity: 1; }
.product-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  margin-bottom: 20px;
}
.product-card h3 {
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 8px;
}
.product-tagline {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-pricing {
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent-green);
}
.product-status {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
}
.status-live { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.status-coming-soon { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); }
.product-tags {
  display: flex; gap: 8px;
  margin-top: 16px; flex-wrap: wrap;
}
.product-tag {
  font-size: 0.72rem; font-weight: 500;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ── How It Works ────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-card {
  text-align: center;
  padding: 40px 24px;
}
.how-number {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  font-size: 1.1rem; font-weight: 800;
  color: var(--accent-purple);
  font-family: var(--font-mono);
}
.how-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 12px;
}
.how-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Blog Grid ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}
.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.blog-date {
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent-purple);
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
}
.cta-box {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cta-box h2 {
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cta-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.ghl-form {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.ghl-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.ghl-input:focus { border-color: var(--accent-purple); background: rgba(255, 255, 255, 0.06); }
.ghl-input::placeholder { color: var(--text-muted); }
.ghl-submit {
  margin-top: 4px;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ghl-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
  margin-top: 2px;
}
.ghl-checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent-purple);
  cursor: pointer;
}
.ghl-checkbox-label strong { color: var(--text-secondary); }
.ghl-success {
  padding: 16px 24px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.ghl-error {
  padding: 12px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  color: #EF4444;
  font-size: 0.85rem;
  text-align: center;
}

/* ── Contact Form / Panel ────────────────────────────────── */
.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888a0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-purple);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer .container {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-text { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-built {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.footer-built span {
  background: var(--gradient-hero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ── Blog Hero (listing page) ────────────────────────────── */
.blog-hero {
  padding: 160px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 60% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 55%);
}
.blog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  position: relative;
}
.blog-hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: 16px;
  position: relative;
}

/* ── Blog Card Tag ───────────────────────────────────────── */
.blog-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ── Blog Card as Link ───────────────────────────────────── */
.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ── Active Nav Link ─────────────────────────────────────── */
.nav-active { color: var(--text-primary) !important; }

/* ── Blog Post Article ───────────────────────────────────── */
.blog-post {
  padding: 140px 0 80px;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 48px;
  transition: color 0.2s, gap 0.2s;
}
.blog-back:hover { color: var(--accent-purple); gap: 10px; }

.blog-post-header {
  max-width: 720px;
  margin-bottom: 48px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.blog-reading-time {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.blog-post-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.blog-post-lede {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Blog Prose ──────────────────────────────────────────── */
.blog-prose {
  max-width: 720px;
}
.blog-prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.blog-prose p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-prose a {
  color: var(--accent-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.blog-prose a:hover { color: var(--accent-blue); }
.blog-prose ul {
  margin: 0 0 24px 24px;
  padding: 0;
}
.blog-prose li {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}
.blog-prose li strong {
  color: var(--text-primary);
}
.blog-prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: rgba(139, 92, 246, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--accent-purple);
}
.blog-prose blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--accent-purple);
  background: rgba(139, 92, 246, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
}

/* ── Blog Post Footer ────────────────────────────────────── */
.blog-post-footer {
  max-width: 720px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ── AEO: TL;DR Block ────────────────────────────────────── */
.blog-tldr {
  max-width: 720px;
  margin: 0 0 48px;
  padding: 24px 32px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 3px solid var(--accent-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.blog-tldr h2 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-green);
  margin-bottom: 12px;
}
.blog-tldr ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.blog-tldr li {
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ── AEO: Copy-for-AI Button ─────────────────────────────── */
.blog-copy-md {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-mono);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}
.blog-copy-md:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--accent-purple);
}

/* ── AEO: Proof Table ────────────────────────────────────── */
.blog-proof-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 0.92rem;
}
.blog-proof-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.06);
  border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}
.blog-proof-table tbody td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.blog-proof-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.015);
}
.blog-proof-table tbody tr:hover td {
  background: rgba(139, 92, 246, 0.04);
  color: var(--text-primary);
}
.blog-proof-table td strong, .blog-proof-table td code {
  color: var(--text-primary);
}

/* ── AEO: Agent CTA ──────────────────────────────────────── */
.blog-agent-cta {
  max-width: 720px;
  margin: 48px 0 0;
  padding: 24px 32px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-sm);
}
.blog-agent-cta h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.blog-agent-cta p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.blog-agent-cta code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(139, 92, 246, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--accent-purple);
}
.blog-agent-cta a {
  color: var(--accent-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
  .hero-sub { font-size: 1.05rem; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-stats { gap: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .footer .container { flex-direction: column; gap: 16px; text-align: center; }
  .section-title { font-size: 2rem; }
  .blog-post { padding: 120px 0 60px; }
  .blog-post-header h1 { font-size: 2rem; }
  .blog-prose blockquote { padding: 16px 20px; margin: 24px 0; }
  .blog-hero { padding: 140px 24px 48px; }
}
