/* ── PostDrip Landing Page Enhancements ──────────────────────────────── */

.landing-body {
  background: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ── 0. Landing Nav Links ──────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  order: -1;
  margin-right: auto;
  margin-left: var(--space-6);
}
.nav-links .nav-link {
  padding: 6px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-600);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links .nav-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}
@media (max-width: 640px) {
  .nav-links {
    order: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links .nav-link {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    font-weight: 500;
    border-radius: var(--radius-md);
    color: var(--text);
  }
  .nav-links .nav-link:hover {
    background: var(--color-primary-ghost);
  }
  .landing-body .nav-actions > .btn-primary.btn-nav {
    background: var(--color-primary) !important;
    color: #fff !important;
    text-align: center;
    margin-top: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
  }
}

/* ── 1. Hero Display Font ────────────────────────────────────────────── */
.landing-body .hero .hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-shadow: 0 0 80px rgba(124, 58, 237, 0.15);
}

/* ── 1b. Animated Gradient Hero Text ─────────────────────────────────── */
.landing-body .hero .text-gradient {
  font-style: normal;
  background: linear-gradient(
    135deg,
    #e2e8f0 0%,
    #22d3ee 20%,
    #f1f5f9 45%,
    #67e8f9 70%,
    #e2e8f0 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ── 2. Orchestration Hub Visualization ──────────────────────────────── */

/* Dark hero background + side-by-side layout */
.landing-body .hero {
  background:
    radial-gradient(circle at 15% 25%, rgba(124, 58, 237, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(6, 182, 212, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 60% 10%, rgba(124, 58, 237, 0.06) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 40%, #1a1040 0%, #0f172a 70%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: left;
}
/* Noise/grain texture overlay */
.landing-body .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
/* Smooth transition into the light section below */
.landing-body .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, rgba(248,250,252,0.3) 50%, #f8fafc 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-split {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-6) var(--space-24, 6rem);
  position: relative;
  z-index: 2;
}
.landing-body .hero .hero-inner {
  flex: 1 1 62%;
  min-width: 0;
  max-width: none;
  margin: 0;
}
.landing-body .hero .hero-sub {
  margin-left: 0;
  margin-right: 0;
}
.landing-body .hero .hero-actions {
  justify-content: flex-start;
}
.hero-hub {
  flex: 1 1 38%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Mobile platform icon strip (hidden on desktop) */
.hero-platforms-mobile {
  display: none;
}
.hero-plat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--plat-color, rgba(255,255,255,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: plat-icon-pulse 3s ease-in-out infinite;
}
.hero-plat-icon:nth-child(1) { animation-delay: 0s; }
.hero-plat-icon:nth-child(2) { animation-delay: -2.1s; }
.hero-plat-icon:nth-child(3) { animation-delay: -0.7s; }
.hero-plat-icon:nth-child(4) { animation-delay: -1.4s; }
.hero-plat-icon:nth-child(5) { animation-delay: -2.6s; }
.hero-plat-icon:nth-child(6) { animation-delay: -0.3s; }
.hero-plat-icon:nth-child(7) { animation-delay: -1.8s; }
.hero-plat-icon:nth-child(8) { animation-delay: -0.9s; }
.hero-plat-icon:nth-child(9) { animation-delay: -2.3s; }
@keyframes plat-icon-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--plat-color, rgba(255,255,255,0.1)); }
  50%      { transform: scale(1.12); box-shadow: 0 0 12px 2px var(--plat-color, rgba(255,255,255,0.15)); }
}

/* Dark hero text overrides */
.landing-body .hero .badge-primary {
  background: rgba(124, 58, 237, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.landing-body .hero .hero-title {
  color: #f1f5f9;
}
.landing-body .hero .hero-sub {
  color: rgba(203, 213, 225, 0.85);
}
.landing-body .hero .hero-sub strong {
  color: #e2e8f0;
}
.landing-body .hero .hero-note {
  color: rgba(203, 213, 225, 0.8);
}
.landing-body .hero .btn-outline {
  color: #e2e8f0;
  border-color: rgba(203, 213, 225, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.landing-body .hero .btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Connection lines */
.hub-conn {
  fill: none;
  stroke: url(#hub-line-grad);
  stroke-width: 2;
  opacity: 0.5;
  animation: hub-conn-breathe 4s ease-in-out infinite;
}
.hub-conn:nth-child(2) { animation-delay: -0.7s; }
.hub-conn:nth-child(3) { animation-delay: -1.4s; }
.hub-conn:nth-child(4) { animation-delay: -2.1s; }
.hub-conn:nth-child(5) { animation-delay: -2.8s; }
.hub-conn:nth-child(6) { animation-delay: -3.5s; }
@keyframes hub-conn-breathe {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.65; }
}

/* Center node — subtle idle glow, no pulse animation */
.hub-center-pulse {
  display: none;
}

/* Platform node — subtle idle breathing */
.hub-platform-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: hub-ring-breathe 5s ease-in-out infinite;
}
.hub-platform:nth-child(2) .hub-platform-ring { animation-delay: -0.8s; }
.hub-platform:nth-child(3) .hub-platform-ring { animation-delay: -1.6s; }
.hub-platform:nth-child(4) .hub-platform-ring { animation-delay: -2.4s; }
.hub-platform:nth-child(5) .hub-platform-ring { animation-delay: -3.2s; }
.hub-platform:nth-child(6) .hub-platform-ring { animation-delay: -4.0s; }
@keyframes hub-ring-breathe {
  0%, 100% { opacity: 0.15; }
  50%      { opacity: 0.35; }
}

/* Arrival pulse ring (spawned by JS at platform position) */
.hub-arrival-pulse {
  fill: none;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: hub-arrival-expand 0.9s ease-out forwards;
}
@keyframes hub-arrival-expand {
  0%   { r: 28; opacity: 0.8; }
  100% { r: 60; opacity: 0; }
}

/* Content packets */
.hub-packet {
  filter: url(#hub-glow-packet);
}

/* ── 3. Scroll-Triggered Reveal Animations ───────────────────────────── */
/* Progressive enhancement: JS adds .reveal-ready to <html>, which enables
   the hidden initial state. Without JS, all content remains visible. */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.reveal-ready .reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-ready .reveal-stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-ready .reveal-stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-ready .reveal-stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-ready .reveal-stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-ready .reveal-stagger > .reveal:nth-child(6) { transition-delay: 400ms; }

/* ── 4. Animated Counter ─────────────────────────────────────────────── */
.matrix-calc strong {
  transition: color 0.3s ease;
}
.matrix-calc strong.counting {
  color: var(--color-accent);
}

/* ── 5. Matrix Pill Cycling Highlight ────────────────────────────────── */
.matrix-pills span {
  transition: border-color 0.7s ease, background-color 0.7s ease, color 0.7s ease, box-shadow 0.7s ease;
}
.matrix-pills span.pill-glow {
  border-color: rgba(124, 58, 237, 0.4);
  background-color: rgba(124, 58, 237, 0.12);
  color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.18);
}

/* ── 6. CTA Button Glow Pulse ────────────────────────────────────────── */
.hero .btn-cta {
  animation: cta-glow 3s ease-in-out infinite;
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35); }
  50%      { box-shadow: 0 4px 30px rgba(124, 58, 237, 0.55), 0 0 60px rgba(124, 58, 237, 0.15); }
}
.hero .btn-cta:hover {
  animation: none;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

/* ── 6b. Hero Social Proof Bar ──────────────────────────────────────── */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-5);
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hero-proof-stars {
  color: #fbbf24;
  font-size: var(--text-sm);
  letter-spacing: 1px;
}
.hero-proof-text {
  font-size: var(--text-sm);
  color: rgba(203, 213, 225, 0.7);
}
.hero-proof-text strong {
  color: rgba(241, 245, 249, 0.9);
  font-weight: 600;
}
.hero-proof-sep {
  color: rgba(148, 163, 184, 0.3);
  font-size: var(--text-sm);
}
@media (max-width: 900px) {
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .hero-proof {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    padding: 8px 14px;
  }
}

/* ── 7. Connecting Line in Steps Section ─────────────────────────────── */
.steps {
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 22px; /* center of the 48px step-num */
  top: 48px;
  bottom: 48px;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  opacity: 0.25;
  border-radius: 4px;
  filter: blur(4px);
}

/* ── 8. Comparison Table ────────────────────────────────────────────── */
.compare-table {
  max-width: 760px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.compare-table th,
.compare-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-gray-200);
}
.compare-table thead th {
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  border-bottom: 2px solid var(--color-gray-200);
}
.compare-table thead th.compare-highlight {
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-primary-light);
  border-bottom-color: var(--color-primary);
  position: relative;
}
.compare-table td.compare-highlight {
  color: var(--color-gray-900);
  font-weight: 500;
  background: rgba(124, 58, 237, 0.03);
}
.compare-table td.compare-label {
  font-weight: 600;
  color: var(--color-gray-700);
  white-space: nowrap;
}
.compare-table tbody td:not(.compare-label):not(.compare-highlight) {
  color: var(--color-gray-400);
  font-style: italic;
}
.compare-star-row {
  background: var(--color-primary-light);
}
.compare-star-row td.compare-highlight {
  background: rgba(124, 58, 237, 0.08);
}
.compare-star-row td.compare-highlight strong {
  color: var(--color-primary);
}

/* ── 9. Features 2x2 Grid ──────────────────────────────────────────── */
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (max-width: 640px) {
  .grid-2x2 {
    grid-template-columns: 1fr;
  }
}

/* ── 10. Example Output Section — Carousel ─────────────────────────── */
#examples {
  background: linear-gradient(180deg, #f5f0ff 0%, #fff 100%);
}
#examples .container-wide {
  max-width: 100%;
  padding: 0;
}
#examples .section-header {
  max-width: 800px;
  margin: 0 auto var(--space-8);
  padding: 0 var(--space-6);
}

.carousel-wrapper {
  position: relative;
  padding: 0 0 var(--space-6);
}
.carousel-track {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-4) max(var(--space-6), calc((100vw - 1100px) / 2));
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.example-post {
  flex: 0 0 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.example-post:hover {
  transform: translateY(-6px);
}
.example-post-platform {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
}
.example-post .fb-post-mock,
.example-post .bsky-post-mock,
.example-post .ig-post-mock,
.example-post .li-post-mock {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.example-post:hover .fb-post-mock,
.example-post:hover .bsky-post-mock,
.example-post:hover .ig-post-mock,
.example-post:hover .li-post-mock {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Carousel edge fade masks */
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f5f0ff, transparent);
}
.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Carousel navigation arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-200);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-700);
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  color: var(--color-primary);
  border-color: var(--color-primary-light);
}
.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.carousel-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}
.carousel-prev {
  left: max(12px, calc((100vw - 1160px) / 2));
}
.carousel-next {
  right: max(12px, calc((100vw - 1160px) / 2));
}

/* Post image overrides for landing carousel */
.example-post .fb-post-image-placeholder {
  display: block;
  height: auto;
  max-height: 220px;
  overflow: hidden;
  background: none;
}
.example-post .fb-post-image-placeholder img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  display: block;
}
.example-post .bsky-post-image-wrap {
  margin: 0 16px 12px;
  border-radius: 8px;
  overflow: hidden;
  max-height: 200px;
}
.example-post .bsky-post-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 200px;
}

/* Instagram post card mock */
.ig-post-mock {
  background: #fff;
  border: 1px solid var(--color-gray-200);
}
.ig-post-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
}
.ig-post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdf497 0%, #fd5949 50%, #d6249f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.ig-post-meta {
  flex: 1;
}
.ig-post-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-gray-900);
}
.ig-post-dots {
  color: var(--color-gray-400);
  font-size: var(--text-lg);
}
.ig-post-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-gray-100);
}
.ig-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ig-post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3);
}
.ig-post-actions-left {
  display: flex;
  gap: var(--space-3);
}
.ig-post-action {
  color: var(--color-gray-700);
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ig-post-body {
  padding: 0 var(--space-3) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-gray-900);
  line-height: 1.5;
}
.ig-post-body strong {
  font-weight: 600;
}

/* LinkedIn post card mock */
.li-post-mock {
  background: #fff;
  border: 1px solid var(--color-gray-200);
}
.li-post-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: 12px 16px;
}
.li-post-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0A66C2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.li-post-meta {
  flex: 1;
  min-width: 0;
}
.li-post-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-gray-900);
  display: block;
}
.li-post-headline {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  display: block;
  line-height: 1.3;
}
.li-post-time {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}
.li-post-dots {
  color: var(--color-gray-400);
  font-size: var(--text-lg);
  align-self: flex-start;
  padding-top: 2px;
}
.li-post-body {
  padding: 0 16px 12px;
  font-size: 0.875rem;
  color: var(--color-gray-800);
  line-height: 1.5;
  white-space: pre-line;
}
.li-post-image-wrapper {
  overflow: hidden;
  height: 200px;
}
.li-post-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.li-post-actions {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-gray-200);
  padding: 4px 8px;
}
.li-post-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-500);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
}
.li-post-action:hover {
  background: var(--color-gray-50);
  color: var(--color-gray-700);
}

@media (max-width: 768px) {
  .example-post {
    flex: 0 0 300px;
  }
  .carousel-track {
    gap: var(--space-4);
    padding: var(--space-3) var(--space-4);
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .carousel-prev {
    left: 8px;
  }
  .carousel-next {
    right: 8px;
  }
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 30px;
  }
}

/* ── 11. Testimonials Section ─────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(180deg, var(--color-primary-light) 0%, #fff 100%);
}
.testimonials-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.testimonial-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}
.testimonial-stat-num {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gray-900);
}
.testimonial-stat-label {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonial-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--color-gray-200);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 960px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: var(--text-lg);
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}
.testimonial-quote {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-gray-800);
  margin: 0;
  flex: 1;
}
.testimonial-divider {
  height: 1px;
  background: var(--color-gray-100);
  margin: var(--space-4) 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-info {
  flex: 1;
  min-width: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-gray-900);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.testimonial-verified {
  flex-shrink: 0;
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
}
.testimonial-platform {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Testimonial carousel dots (mobile only) */
.testimonial-dots {
  display: none;
}

@media (max-width: 768px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--space-4);
    padding: 0 var(--space-4);
    max-width: none;
    margin: 0;
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonial-card {
    flex: 0 0 calc(100vw - 48px);
    scroll-snap-align: center;
    max-width: 380px;
  }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-4);
  }
  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-300);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .testimonial-dot.active {
    background: var(--color-primary);
    transform: scale(1.25);
  }
  .testimonials-stats {
    gap: var(--space-4);
  }
  .testimonial-stat-num {
    font-size: var(--text-lg);
  }
}

/* ── Pricing Trust Signals ────────────────────────────────────────── */
.pricing-trust {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pricing-trust-sep {
  color: var(--color-gray-300);
}
.pricing-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pricing-trust-social {
  margin-top: var(--space-2);
}
.pricing-trust-stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

/* ── 12. FAQ Section ───────────────────────────────────────────────── */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-gray-900);
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-gray-400);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: var(--space-4);
}
details[open] .faq-question::after {
  content: "\2212";
}
.faq-answer {
  padding: 0 0 var(--space-4);
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.faq-answer p {
  margin: 0;
}

/* ── 12a. Pricing Card Enhancement ──────────────────────────────────── */
.landing-body #pricing .card-elevated {
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.1), 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.landing-body #pricing .card-elevated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.landing-body #pricing .heading-xl {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ── 12b. Landing Section Headings — Sora ──────────────────────────── */
.landing-body .section h2,
.landing-body .section-header h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── 13. Dark Final CTA Section ─────────────────────────────────────── */
.section-cta-dark {
  background:
    radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, #1a1040 0%, #0f172a 70%, #0a0e1a 100%);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.section-cta-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.section-cta-dark h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #f1f5f9;
  text-shadow: 0 0 80px rgba(124, 58, 237, 0.15);
}
.section-cta-dark .section-sub {
  color: rgba(203, 213, 225, 0.85);
}
.section-cta-badge {
  background: rgba(124, 58, 237, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(124, 58, 237, 0.3);
  margin-bottom: var(--space-4);
  display: inline-block;
}
.section-cta-note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(203, 213, 225, 0.6);
}

/* ── 11. Accessibility: Reduced Motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .landing-body .hero .text-gradient {
    animation: none;
  }
  .hub-conn { animation: none; }
  .hub-platform-ring { animation: none; }
  .hero-plat-icon { animation: none; }
  .hub-packet, .hub-arrival-pulse { display: none; }
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero .btn-cta {
    animation: none;
  }
  .matrix-pills span {
    transition: none;
  }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    padding-bottom: var(--space-16);
  }
  .landing-body .hero .hero-inner {
    text-align: center;
  }
  .landing-body .hero .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .landing-body .hero .hero-actions {
    justify-content: center;
  }
  .hero-hub {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .hero-hub {
    display: none;
  }
  .hero-platforms-mobile {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-4);
    margin-bottom: var(--space-6);
    position: relative;
  }
  .steps::before {
    display: none;
  }
  .compare-table th,
  .compare-table td {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
  }
  .matrix-pills {
    gap: 0.3rem;
  }
  .matrix-pills span {
    padding: 0.1rem 0.35rem;
    font-size: 0.65rem;
  }
}
