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

:root {
  --bg-dark:    #060a12;
  --bg-card:    #0b1220;
  --bg-panel:   #0f1a2e;
  --primary:    #4debffff;
  --primary-dim:#0099bb;
  --primary-glow: rgba(77,235,255,0.22);
  --blue:       #4f9cf9;
  --blue2:      #38bdf8;
  --purple:     #818cf8;
  --text:       #ffffff;
  --text-muted: #e8f4ff;
  --border:     rgba(0,212,255,0.1);
  --border-soft: rgba(255,255,255,0.06);
  --radius:     16px;
  --glow:       0 0 48px rgba(0,212,255,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a:not(.nav-brand):not(.nav-links a):not(.btn-primary):not(.btn-secondary):not(.btn-demo):not(.blog-card) {
  color: var(--primary);
}

a:not(.nav-brand):not(.nav-links a):not(.btn-primary):not(.btn-secondary):not(.btn-demo):not(.blog-card):visited {
  color: var(--primary);
}

a:not(.nav-brand):not(.nav-links a):not(.btn-primary):not(.btn-secondary):not(.btn-demo):not(.blog-card):hover {
  color: #ffffff;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  color: var(--primary) !important;
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color 0.2s, transform 0.2s;
}

.btn-text:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

.nav-links a {
  color: #ffffff;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 15%, rgba(0,212,255,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 80%, rgba(79,156,249,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 50% 50%, rgba(129,140,248,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(6,10,18,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-slot {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px dashed var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
  opacity: 0.65;
}

.nav-wordmark {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-wordmark span { color: var(--primary); }

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

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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


.nav-links a.btn-demo:hover { color: #06091a !important; }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.btn-demo {
  background: var(--primary);
  color: #06091a !important;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.btn-demo:hover {
  background: var(--blue2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,212,255,0.35);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 64px 5% 72px;
  min-height: calc(100vh - 68px);
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.28);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: fit-content;
}

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

@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0px rgba(0,212,255,0.7); }
  70%  { opacity: 0.8; transform: scale(1); box-shadow: 0 0 0 7px rgba(0,212,255,0); }
  100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0px rgba(0,212,255,0); }
}

.logo-slot {
  width: 88px;
  height: 88px;
  border-radius: var(--radius);
  border: 2px dashed rgba(0,212,255,0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(0,212,255,0.04);
  transition: border-color 0.3s, background 0.3s;
}

.logo-slot:hover {
  border-color: rgba(0,212,255,0.65);
  background: rgba(0,212,255,0.07);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

h1 .accent {
  color: var(--primary);
  text-shadow: 0 0 32px rgba(0,212,255,0.45);
}

h1 .smalleraccent {
  color: var(--primary);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.22;
  max-width: 480px;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  color: #f5f9ff;
  line-height: 1.75;
  max-width: 520px;
}

.hero-sub strong { color: #daeeff; font-weight: 600; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #06091a !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(0,212,255,0.32);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,212,255,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0f6ff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 10px;
  padding: 12px 20px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(0,212,255,0.5);
  background: rgba(0,212,255,0.06);
}

/* ── Demo Panel ───────────────────────────────────────────── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.demo-shell {
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--glow), 0 32px 80px rgba(0,0,0,0.55);
  overflow: hidden;
  position: relative;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.02);
}

.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-dot.red    { background: #ff5f57; }
.demo-dot.yellow { background: #febc2e; }
.demo-dot.green  { background: #28c840; }

.demo-title {
  margin-left: 8px;
  font-size: 0.73rem;
  color: #d8ebfa;
  letter-spacing: 0.04em;
}

.vimeo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(0,212,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.vimeo-link:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #040810;
}

#demoVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#videoPlaceholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #060d1a 0%, #0b1525 100%);
  cursor: pointer;
  transition: background 0.3s;
}

#videoPlaceholder:hover { background: linear-gradient(135deg, #080f20 0%, #0d1a2e 100%); }

.placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px dashed rgba(0,212,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.8rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#videoPlaceholder:hover .placeholder-icon {
  border-color: rgba(0,212,255,0.7);
  box-shadow: 0 0 24px rgba(0,212,255,0.2);
}

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

.placeholder-text p {
  color: #c4ddf0;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.placeholder-text span {
  color: #d8ebfa;
  font-size: 0.75rem;
}

.placeholder-hint {
  font-size: 0.7rem;
  color: rgba(0,212,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

#videoFileInput { display: none; }

.demo-shell.drag-over #videoPlaceholder {
  background: rgba(0,212,255,0.07);
}

.demo-shell.drag-over .placeholder-icon {
  border-color: var(--primary);
  box-shadow: 0 0 32px rgba(0,212,255,0.3);
}

.demo-caption {
  font-size: 0.71rem;
  color: #d8ebfa;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-caption span { color: var(--primary); }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-panel);
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #e8f4ff;
  line-height: 1.5;
}

/* ── Page Header (subpages) ─────────────────────────────── */
.page-header {
  position: relative;
  z-index: 1;
  padding: 80px 5% 60px;
  max-width: 1040px;
  margin: 0 auto;
}

.page-header .section-label { margin-bottom: 14px; }

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.page-header .page-lead {
  font-size: 1.05rem;
  color: #f0f6ff;
  line-height: 1.75;
  max-width: 820px;
}

.page-header:has(+ .consulting-hero) .page-lead {
  max-width: none;
}

.page-header .page-meta {
  margin-top: 24px;
  font-size: 0.82rem;
  color: #cce4f7;
  letter-spacing: 0.04em;
}

/* ── ICP Carousel ─────────────────────────────────────────── */
.icp-section {
  position: relative;
  z-index: 1;
  padding: 64px 5%;
}

.icp-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.icp-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.icp-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y pinch-zoom;
}

.icp-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.icp-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-card);
  display: block;
}

.icp-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, rgba(79,156,249,0.04) 100%);
  border: 2px dashed rgba(0,212,255,0.25);
}

.icp-slide-placeholder .icp-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed rgba(0,212,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.icp-slide-placeholder p {
  color: #f5f9ff;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
}

.icp-slide-placeholder .icp-hint {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
}

.icp-slide-caption {
  display: none;
}

.icp-slide-caption h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.icp-slide-caption p {
  font-size: 0.85rem;
  color: #f5f9ff;
}

.icp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.icp-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.06);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icp-btn:hover {
  background: rgba(0,212,255,0.14);
  border-color: rgba(0,212,255,0.5);
  transform: scale(1.05);
}

.icp-dots {
  display: flex;
  gap: 8px;
}

.icp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,212,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.icp-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* ── Features ─────────────────────────────────────────────── */
.features {
  position: relative;
  z-index: 1;
  padding: 64px 5%;
}

.section-label {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  text-shadow: 0 0 16px rgba(0,212,255,0.4);
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin-bottom: 36px;
  max-width: 720px;
  color: #ffffff;
}

.section-subheading {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 36px;
  max-width: 820px;
  color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0), transparent);
  transition: background 0.4s;
}

.feature-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1);
}

.feature-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.5), transparent);
}

.feature-icon {
  width: 100%;
  border-radius: 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.875rem;
  color: #e8f4ff;
  line-height: 1.7;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.7;
}

.mcp-demo-card {
  max-width: 1120px;
  margin: 44px auto 0;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(77,235,255,0.18);
  background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(79,156,249,0.05));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}

.mcp-demo-copy .section-label {
  margin-bottom: 10px;
}

.mcp-demo-copy h3 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.mcp-demo-copy p {
  color: #e8f4ff;
  font-size: 0.98rem;
  line-height: 1.7;
}

.mcp-demo-video {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(77,235,255,0.2);
  background: #050914;
  box-shadow: 0 14px 34px rgba(0,0,0,0.32);
}

@media (max-width: 820px) {
  .mcp-demo-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 64px 5%;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(0,212,255,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #daeeff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-question:hover { color: #ffffff; }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: #e8f4ff;
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-answer-inner p + p { margin-top: 12px; }

.faq-teaser-footer {
  margin-top: 40px;
}

.faq-teaser-footer a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.faq-teaser-footer a:hover { color: var(--blue2); }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-section {
  position: relative;
  z-index: 1;
  padding: 64px 5%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 960px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(79,156,249,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card-body p {
  font-size: 0.875rem;
  color: #e8f4ff;
  line-height: 1.7;
  flex: 1;
}

.blog-card-meta {
  margin-top: 20px;
  font-size: 0.78rem;
  color: #d8ebfa;
  font-weight: 600;
}

.blog-card-link {
  margin-top: 16px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── Article Prose ────────────────────────────────────────── */
.article-wrap {
  position: relative;
  z-index: 1;
  padding: 0 4% 64px;
  max-width: 1040px;
  margin: 0 auto;
}

.article-prose {
  color: #f5f9ff;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-prose h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 52px 0 18px;
  line-height: 1.3;
}

.article-prose h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin: 36px 0 14px;
}

.article-prose p { margin-bottom: 24px; }

.article-prose a,
.consulting-copy a:not(.btn-primary),
.page-lead a,
.faq-answer a {
  color: #7ef9ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(126, 249, 255, 0.45);
  font-weight: 600;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.article-prose a:hover,
.consulting-copy a:not(.btn-primary):hover,
.page-lead a:hover,
.faq-answer a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 20px 24px;
}

.article-prose li { margin-bottom: 8px; }

.article-prose strong { color: #daeeff; font-weight: 600; }

.benchmark-article .article-prose strong {
  color: var(--primary);
}

.benchmark-article .article-prose li strong {
  color: var(--blue);
  font-weight: 800;
}

.article-prose blockquote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(0,212,255,0.04);
  border-radius: 0 8px 8px 0;
  color: #f0f6ff;
  font-style: italic;
}

.article-figure {
  margin: 36px 0 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,212,255,0.18);
  background: rgba(0,212,255,0.03);
  overflow: hidden;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-figure figcaption {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: #cce4f7;
  line-height: 1.5;
  border-top: 1px solid rgba(0,212,255,0.12);
}

.article-prose code {
  background: rgba(0,212,255,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--primary);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.article-back:hover { color: var(--blue2); }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6,10,18,0.94);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.12); }

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #f5f9ff;
  font-size: 0.9rem;
  max-width: 600px;
}

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  position: relative;
  z-index: 1;
  margin: 0 5% 64px;
  border-radius: 24px;
  padding: 64px 56px;
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(79,156,249,0.09) 50%, rgba(129,140,248,0.07) 100%);
  border: 1px solid rgba(0,212,255,0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.22;
  max-width: 480px;
  color: #ffffff;
}

.cta-strip h2 span { color: var(--primary); text-shadow: 0 0 24px rgba(0,212,255,0.4); }

/* ── Contact Section ──────────────────────────────────────── */
.contact {
  position: relative;
  z-index: 1;
  padding: 0 5% 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
}

.contact-info p {
  color: #f0f6ff;
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f5f9ff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e8f4ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,212,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: #e8f4ff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #2e4a64; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  color: #f5f9ff;
}

.form-group select option { background: #0b1220; color: #e8f4ff; }

.form-group textarea { resize: vertical; min-height: 110px; }

.hp-field { display: none; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #060912;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: inherit;
  box-shadow: 0 4px 24px rgba(0,212,255,0.28);
}

.form-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 36px rgba(0,212,255,0.42);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.73rem;
  color: #6a8ea8;
  text-align: center;
  margin-top: 12px;
}

.toast {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #06091a;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  z-index: 999;
  box-shadow: 0 8px 36px rgba(0,212,255,0.42);
  animation: slideUp 0.3s ease;
}

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

/* ── Footer ───────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
  padding: 36px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer p { color: #cce4f7; font-size: 0.82rem; }
footer a  { color: var(--primary); text-decoration: none; font-size: 0.82rem; font-weight: 600; }
footer a:hover { color: var(--blue2); }

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

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 40px 5% 48px;
    min-height: auto;
    gap: 28px;
  }
  .hero-right { order: -1; width: 100%; }
  .hero-left { gap: 18px; }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-tiles-home .faq-tiles-grid { grid-template-columns: 1fr; }
  .solve-grid { grid-template-columns: 1fr; gap: 28px; }
  .solve-visual { order: -1; }
  .solve-visual img { max-width: 100%; }
  .solve-section,
  .features,
  .icp-section,
  .faq-section,
  .blog-section { padding-top: 40px; padding-bottom: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-visual { position: static; order: -1; max-width: 420px; margin: 0 auto; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 5% 20px;
    background: rgba(6,10,18,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }
  .nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-links a.btn-demo {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
  }
  .consulting-hero { grid-template-columns: 1fr; gap: 28px; }
  .consulting-visual { order: -1; }
}

@media (max-width: 600px) {
  .cta-strip { padding: 40px 28px; margin: 0 4% 60px; }
  .contact-form { padding: 28px 22px; }
  .logo-slot { width: 64px; height: 64px; }
  .logo-slot img { width: 64px; }
  h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
}


/* ── Hero tagline ───────────────────────────────────────────── */
.hero-tagline {
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  color: #f5f9ff;
  line-height: 1.75;
  max-width: 520px;
}

.hero-tagline strong { color: #daeeff; font-weight: 600; }

/* ── Solve section ──────────────────────────────────────────── */
.solve-section {
  position: relative;
  z-index: 1;
  padding: 64px 5%;
}

.solve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.solve-content {
  max-width: 560px;
}

.solve-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solve-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--glow), 0 24px 64px rgba(0,0,0,0.45);
}

.solve-content p {
  color: #f5f9ff;
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.solve-content emphasize {
  display: block;
  color: var(--primary);
  line-height: 1.85;
  font-weight: 800;
  font-size: 1.10rem;
  margin-top: 14px;
  margin-bottom: 18px;
}
.solve-content p:last-child { margin-bottom: 0; }

.solve-content strong {
  color: var(--primary);
  font-weight: 800;
}

.solve-content p:last-child strong {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(77,235,255,0.24);
  border-radius: 14px;
  background: rgba(77,235,255,0.05);
  color: #ffffff;
  box-shadow: 0 0 28px rgba(0,212,255,0.08);
}

.solve-kicker {
  max-width: 900px;
  margin: -12px 0 36px;
  text-align: left;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary);
  text-shadow: 0 0 32px rgba(0,212,255,0.38);
}

/* ── FAQ tiles (full page) ────────────────────────────────── */
.faq-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.faq-tile:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1);
}

.faq-tile h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #daeeff;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-tile p {
  font-size: 0.875rem;
  color: #e8f4ff;
  line-height: 1.7;
}

/* ── Blog cover images ──────────────────────────────────────── */
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ── Tightened spacing & readability tweaks ─────────────────── */
.solve-section .section-heading {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  max-width: 900px;
  line-height: 1.12;
  margin-bottom: 28px;
}

.faq-tiles-home .faq-tiles-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  gap: 28px;
  margin: 0 auto 8px;
}

.faq-tiles-home .faq-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
}

.faq-tiles-home .faq-tile h3 {
  color: var(--primary);
  text-align: center;
  font-size: 1.08rem;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(77, 235, 255, 0.35);
  margin-bottom: 14px;
}

.faq-tiles-home .faq-tile p {
  text-align: center;
  flex: 1;
}

.faq-accordion-page .faq-list {
  max-width: 800px;
}

.faq-accordion-page .faq-layout .faq-list {
  max-width: none;
}

.faq-answer-inner strong {
  color: var(--primary);
  font-weight: 700;
}


/* ── Gated PDF download ─────────────────────────────────────── */
.download-section {
  position: relative;
  z-index: 1;
  padding: 0 4% 64px;
}

.download-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,212,255,0.22);
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(79,156,249,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.download-card-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.download-card-text p {
  color: #f0f6ff;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

.download-trigger {
  border: none;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}

.download-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(6,10,18,0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.download-modal.open { display: flex; }

.download-modal-panel {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  position: relative;
}

.download-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.04);
  color: #f0f6ff;
  font-size: 1.25rem;
  cursor: pointer;
}

.download-modal-close:hover { color: #ffffff; border-color: rgba(0,212,255,0.3); }

.download-modal-panel h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.download-modal-panel .modal-lead {
  color: #e8f4ff;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.download-modal-panel .form-group { margin-bottom: 16px; }

.download-privacy-note {
  font-size: 0.72rem;
  color: #d8ebfa;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .download-card { flex-direction: column; align-items: flex-start; }
}


/* ── FAQ two-column layout + compare table ─────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-layout .faq-list {
  max-width: none;
  width: 100%;
}

.faq-visual {
  position: sticky;
  top: 88px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  overflow: hidden;
  padding: 16px;
}

.faq-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.faq-visual-caption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #dceaf8;
  text-align: center;
  line-height: 1.5;
}

.faq-compare {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 8px;
  font-size: 0.9rem;
}

.faq-compare th,
.faq-compare td {
  border: 1px solid var(--border-soft);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  color: #f5f9ff;
  line-height: 1.5;
}

.faq-compare th {
  background: rgba(0,212,255,0.08);
  color: var(--primary);
  font-weight: 700;
}

.faq-compare tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.faq-answer-inner a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer-inner a:hover { color: var(--blue2); }

/* ── Consulting page ──────────────────────────────────────── */
.consulting-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto 48px;
  padding: 0 4%;
}

.consulting-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.consulting-copy p {
  color: #f5f9ff;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.consulting-copy ul {
  margin: 16px 0 24px 1.1rem;
  color: #f5f9ff;
  line-height: 1.8;
  font-size: 1.05rem;
}

.consulting-copy li { margin-bottom: 10px; }

.consulting-copy strong { color: var(--primary); }

.consulting-visual {
  min-height: 280px;
  border-radius: var(--radius);
  border: 2px dashed rgba(0,212,255,0.35);
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(79,156,249,0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: #dceaf8;
}

.consulting-visual strong {
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.consulting-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  display: none;
}

.consulting-visual.has-media {
  border-style: solid;
  padding: 12px;
}

.consulting-visual.has-media img { display: block; }
.consulting-visual.has-media .consulting-placeholder-text { display: none; }

.article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}

.article-prose th,
.article-prose td {
  border: 1px solid var(--border-soft);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  color: #f5f9ff;
}

.article-prose th {
  background: rgba(0,212,255,0.08);
  color: var(--primary);
  font-weight: 700;
}

.article-prose pre {
  overflow-x: auto;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(0,0,0,0.35);
  color: #f0f6ff;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 24px 0;
}

.blog-card-image.placeholder {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(79,156,249,0.06));
  border-bottom: 1px solid var(--border-soft);
  color: #cce4f7;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
