/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 88px 0 100px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}
.hero-orb--1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(79,70,229,.2), transparent 65%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  animation: orb1 16s ease-in-out infinite alternate;
}
.hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(52,211,153,.12), transparent 65%);
  top: 100px; right: -150px;
  animation: orb2 12s ease-in-out infinite alternate;
}
.hero-orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.1), transparent 65%);
  bottom: -100px; left: -100px;
  animation: orb2 18s ease-in-out infinite alternate-reverse;
}
@keyframes orb1 {
  from { transform: translateX(-50%) scale(1); }
  to   { transform: translateX(calc(-50% + 40px)) scale(1.1); }
}
@keyframes orb2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-30px, 20px) scale(1.08); }
}

/* dot grid */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

.hero-badge { margin-bottom: 32px; }

.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.035em;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
}
.hero-sub {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* social proof row */
.hero-proof {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  margin-left: -8px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}
.hero-proof-item svg { flex-shrink: 0; color: rgba(165,180,252,.7); }
.hero-proof-item strong { color: #fff; }
.hero-proof-divider { width: 1px; height: 16px; background: var(--border); }

/* hero UI preview card */
.hero-preview {
  margin: 52px auto 0;
  max-width: 860px;
  border-radius: 20px;
  border: 1px solid var(--border-2);
  background: rgba(10,15,30,.8);
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(99,102,241,.25), 0 0 0 1px rgba(99,102,241,.08);
}
.hero-preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(3,7,18,.6);
}
.hero-preview-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-preview-dot:nth-child(1) { background: #f87171; }
.hero-preview-dot:nth-child(2) { background: #fbbf24; }
.hero-preview-dot:nth-child(3) { background: #34d399; }
.hero-preview-url {
  flex: 1;
  margin: 0 12px;
  padding: 5px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.hero-preview-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 260px;
}
@media(max-width:640px) { .hero-preview-body { grid-template-columns: 1fr; } }
.hero-preview-sidebar {
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-sidebar-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: background .2s, color .2s;
}
.hp-sidebar-item.active {
  background: rgba(99,102,241,.12);
  color: #a5b4fc;
}
.hp-sidebar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.hero-preview-main { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.hp-prompt-box {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}
.hp-prompt-box span { color: #a5b4fc; }
.hp-response {
  background: rgba(99,102,241,.06);
  border: 1px solid rgba(99,102,241,.15);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--fg);
  line-height: 1.6;
}
.hp-response-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 8px;
}
.hp-tokens {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
}
.hp-token-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  overflow: hidden;
}
.hp-token-bar div {
  height: 100%;
  width: 34%;
  background: linear-gradient(90deg, #6366f1, #34d399);
  border-radius: 999px;
}

/* ── Marquee ────────────────────────────────────────────────────────────────── */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.marquee-inner {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  transition: color .3s;
}
.marquee-item:hover { color: rgba(255,255,255,.7); }
.marquee-item::after {
  content: '·';
  color: rgba(99,102,241,.4);
  font-size: 20px;
}

/* ── Stats strip ────────────────────────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats-strip .stat-cell + .stat-cell { border-left: 1px solid var(--border); }
.stat-cell {
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-num {
  font-size: clamp(32px,4vw,48px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── Section shared ─────────────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: #a5b4fc;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(30px,4vw,44px); color: #fff; line-height: 1.15; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 17px; line-height: 1.7; }

/* ── Bento Feature Grid ─────────────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width:700px)  { .bento { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .bento { grid-template-columns: repeat(3,1fr); } }

.bento-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(145deg, rgba(15,20,40,.9), rgba(8,12,28,.95));
  border-radius: 20px;
  padding: 36px;
  overflow: hidden;
  transition: border-color .4s, box-shadow .4s, transform .4s;
  will-change: transform;
  backdrop-filter: blur(12px);
}
@media(min-width:1024px) {
  .bento-card--wide { grid-column: span 2; }
}
/* noise texture overlay */
.bento-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,.13), transparent),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
/* shimmer sweep on hover */
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.04) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s ease;
  pointer-events: none;
}
.bento-card:hover {
  border-color: rgba(99,102,241,.5);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 0 0 1px rgba(99,102,241,.15), 0 24px 64px -16px rgba(99,102,241,.3), 0 0 80px -20px rgba(99,102,241,.15);
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover::after  { transform: translateX(100%); }
.bento-card.emerald:hover {
  border-color: rgba(52,211,153,.5);
  box-shadow: 0 0 0 1px rgba(52,211,153,.15), 0 24px 64px -16px rgba(52,211,153,.28), 0 0 80px -20px rgba(52,211,153,.12);
}
.bento-card.emerald::before {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(52,211,153,.12), transparent);
}
/* top accent line */
.bento-card .bento-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.6), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.bento-card.emerald .bento-accent {
  background: linear-gradient(90deg, transparent, rgba(52,211,153,.6), transparent);
}
.bento-card:hover .bento-accent { opacity: 1; }

.bento-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(99,102,241,.25), rgba(99,102,241,.08));
  color: #a5b4fc;
  box-shadow: 0 0 0 1px rgba(99,102,241,.2), 0 4px 16px rgba(99,102,241,.15);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
  flex-shrink: 0;
}
.bento-icon.emerald {
  background: linear-gradient(135deg, rgba(52,211,153,.25), rgba(52,211,153,.08));
  color: #6ee7b7;
  box-shadow: 0 0 0 1px rgba(52,211,153,.2), 0 4px 16px rgba(52,211,153,.12);
}
.bento-card:hover .bento-icon       { transform: scale(1.15) rotate(-4deg); box-shadow: 0 0 0 1px rgba(99,102,241,.3), 0 0 28px rgba(99,102,241,.4); }
.bento-card.emerald:hover .bento-icon { box-shadow: 0 0 0 1px rgba(52,211,153,.3), 0 0 28px rgba(52,211,153,.35); }

.bento-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.bento-card p  { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.75; }

/* wide card layout */
.bento-card--wide .bento-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media(max-width:700px) { .bento-card--wide .bento-inner { grid-template-columns: 1fr; } }

/* mini code block inside bento */
.bento-code {
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 16px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: #a5b4fc;
  line-height: 1.7;
  margin-top: 16px;
}
.bento-code .c-green  { color: #6ee7b7; }
.bento-code .c-muted  { color: var(--muted); }
.bento-code .c-white  { color: #e2e8f0; }
.bento-code .c-yellow { color: #fcd34d; }

/* scroll reveal for bento */
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(32px) scale(.97); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) scale(1);    filter: blur(0); }
}
.bento-card.visible {
  animation: cardReveal .7s cubic-bezier(.22,1,.36,1) backwards;
}

/* ── Integrations ───────────────────────────────────────────────────────────── */
.integrations-section { background: rgba(2,6,23,.5); }
.integrations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
@media(min-width:800px) { .integrations-grid { grid-template-columns: 1fr 1fr; } }

.integration-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  background: rgba(10,15,30,.6);
  transition: border-color .3s, transform .3s;
  will-change: transform;
}
.integration-card:hover { transform: translateY(-3px); border-color: rgba(99,102,241,.4); }
.integration-card.featured:hover { border-color: rgba(52,211,153,.45); }

.integration-badge {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(99,102,241,.12); color: #a5b4fc;
  margin-bottom: 16px;
}
.integration-badge.emerald { background: rgba(52,211,153,.12); color: #6ee7b7; }
.integration-card h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.integration-card > p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }

.integration-code {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 12px 16px;
}
.integration-code code { font-size: 12px; color: #a5b4fc; font-family: ui-monospace,monospace; line-height: 1.7; }

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.integration-logos span {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.integration-logos span:hover { border-color: rgba(99,102,241,.4); color: #fff; }

/* ── Pricing ────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media(min-width:800px) { .pricing-grid { grid-template-columns: repeat(3,1fr); align-items: stretch; } }
@media(min-width:600px) { .pricing-grid--two { grid-template-columns: repeat(2,1fr); max-width: 720px; margin: 0 auto; align-items: stretch; } }

.pricing-card {
  border: 1px solid var(--border);
  background: rgba(10,15,30,.6);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  will-change: transform;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--indigo);
  background: rgba(79,70,229,.07);
  box-shadow: 0 0 0 1px rgba(99,102,241,.15), 0 32px 80px -24px rgba(99,102,241,.3);
}
.pricing-card.featured:hover { border-color: #818cf8; box-shadow: 0 0 0 1px rgba(129,140,248,.3), 0 40px 100px -24px rgba(99,102,241,.4); }

.pricing-badge {
  position: absolute;
  top: -13px; right: 24px;
  background: var(--grad);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: .04em;
}
.pricing-card h3 { color: #fff; font-size: 20px; }
.pricing-desc { color: var(--muted); font-size: 14px; margin-top: 6px; }
.price {
  font-size: 52px; font-weight: 800; color: #fff;
  margin: 28px 0 4px;
  line-height: 1;
  letter-spacing: -.03em;
}
.price span { font-size: 15px; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.pricing-card ul { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 2px; }
.pricing-card li {
  padding: 9px 0;
  font-size: 14px; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li::before { content: "✓"; color: var(--emerald); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* ── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials-section { background: rgba(2,6,23,.4); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width:800px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }

.testi-card {
  border: 1px solid var(--border);
  background: rgba(10,15,30,.6);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color .3s, transform .3s;
  will-change: transform;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,.35); }
.testi-card.featured {
  border-color: rgba(99,102,241,.35);
  background: rgba(79,70,229,.07);
}
.testi-quote {
  font-size: 48px;
  line-height: 1;
  color: rgba(99,102,241,.25);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
}
.testi-stars { color: #fbbf24; font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: #fff; }
.testi-author span   { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── CTA Section ────────────────────────────────────────────────────────────── */
.cta-wrap { padding: 0 0 120px; }
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #4f46e5 0%, #3730a3 50%, #1e1b4b 100%);
  padding: 96px 48px;
  text-align: center;
  color: #fff;
  isolation: isolate;
}
/* noise texture */
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: -1;
}
/* glow orbs inside CTA */
.cta::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.35), transparent 65%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  filter: blur(60px);
}
.cta-inner { position: relative; }
.cta h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.cta p {
  margin: 20px auto 0;
  color: #c7d2fe;
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
}
.cta-buttons {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-proof {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(199,210,254,.6);
}

/* ── Mobile ─────────────────────────────────────────────────────────────────── */
@media(max-width:768px) {
  .hero { padding: 64px 0 72px; }
  .hero-preview { display: none; }
  .section { padding: 48px 0; }
  .cta-wrap { padding: 0 0 80px; }
  .cta { padding: 56px 24px; }
  .pricing-card.featured { transform: none; }
}

/* ── How It Works ───────────────────────────────────────────────────────────── */
.hiw-section { background: rgba(2,6,23,.5); }
.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
@media(max-width:768px) { .hiw-steps { flex-direction: column; gap: 24px; } }

.hiw-step {
  flex: 1;
  min-width: 200px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(10,15,30,.6);
  transition: border-color .3s, transform .3s;
}
.hiw-step:hover { border-color: rgba(99,102,241,.4); transform: translateY(-4px); }

.hiw-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.hiw-step h3 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.hiw-step p  { color: var(--muted); font-size: 14px; line-height: 1.7; }

.hiw-connector {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 24px;
  color: rgba(99,102,241,.4);
  margin-top: 40px;
  flex-shrink: 0;
}
@media(max-width:768px) { .hiw-connector { display: none; } }

/* ── Comparison Table ───────────────────────────────────────────────────────── */
.compare-section { background: rgba(2,6,23,.3); }
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(10,15,30,.8);
}
.compare-table thead th:first-child { border-radius: 12px 0 0 0; }
.compare-table thead th:last-child  { border-radius: 0 12px 0 0; }
.compare-table tbody tr:hover td { background: rgba(99,102,241,.04); }
.compare-table td:first-child { color: #e2e8f0; font-weight: 500; }
.compare-us {
  background: rgba(99,102,241,.08);
  border-left: 1px solid rgba(99,102,241,.2);
  border-right: 1px solid rgba(99,102,241,.2);
  color: #a5b4fc !important;
}
.compare-us .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
  margin-right: 6px;
  vertical-align: middle;
}
.compare-no { color: var(--muted); }
.compare-yes { color: #6ee7b7; font-weight: 600; background: rgba(52,211,153,.04); border-left: 1px solid rgba(99,102,241,.2); border-right: 1px solid rgba(99,102,241,.2); }

/* ── CTA urgency badge ──────────────────────────────────────────────────────── */
.cta-urgency {
  display: inline-block;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.25);
  color: #fcd34d;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: .01em;
}

/* ── Sticky mobile CTA ──────────────────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,15,30,.97);
  border-top: 1px solid rgba(99,102,241,.3);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media(max-width:768px) { .sticky-cta { display: flex; } }
.sticky-cta p { font-size: 14px; color: var(--muted); margin: 0; flex: 1; }
.sticky-cta p strong { color: #fff; }
.sticky-cta-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Blog Section ───────────────────────────────────────────────────────────── */
.blog-section { background: rgba(2,6,23,.4); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width:700px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-column: span 2; }
}
@media(min-width:1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-card--featured { grid-column: span 1; }
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  background: rgba(10,15,30,.6);
  text-decoration: none;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  will-change: transform;
  overflow: hidden;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.4);
  box-shadow: 0 16px 48px -12px rgba(99,102,241,.2);
}
.blog-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.blog-card h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.01em;
  margin: 0;
}
.blog-card--featured h3 { font-size: 18px; }
.blog-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; flex: 1; }
.blog-read { font-size: 13px; font-weight: 600; color: #a5b4fc; margin-top: 4px; }
.blog-read span { transition: transform .2s; display: inline-block; }
.blog-card:hover .blog-read span { transform: translateX(4px); }

.blog-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
.blog-pill--green  { background: rgba(52,211,153,.12);  color: #6ee7b7; }
.blog-pill--indigo { background: rgba(99,102,241,.12);  color: #a5b4fc; }
.blog-pill--amber  { background: rgba(245,158,11,.12);  color: #fcd34d; }

.blog-footer { margin-top: 32px; display: flex; justify-content: center; }
