.exp-page {
  min-height: 100vh;
  padding: 24px;
  color: #f8fafc;
  background: linear-gradient(135deg, #07111f 0%, #0f172a 35%, #111827 100%);
}

.exp-hero,
.exp-section,
.exp-final-cta {
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 20px 60px rgba(2, 8, 23, 0.35);
  border-radius: 28px;
  backdrop-filter: blur(18px);
}

.exp-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 36px;
  margin-bottom: 22px;
}

.exp-pill,
.exp-section-label,
.exp-result-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7dd3fc;
  background: rgba(59, 130, 246, 0.16);
}

.exp-hero h1,
.exp-section h2,
.exp-final-cta h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.exp-hero p,
.exp-section p,
.exp-final-cta p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
}

.exp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.exp-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.exp-btn:hover {
  transform: translateY(-1px);
}

.exp-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.25);
}

.exp-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #f8fafc;
  border: 1px solid rgba(255,255,255,0.16);
}

.exp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.exp-trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
  font-size: 0.92rem;
}

.exp-hero-visual {
  display: grid;
  gap: 16px;
}

.exp-visual-card {
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(30,41,59,0.95), rgba(15,23,42,0.9));
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.exp-card-main {
  min-height: 250px;
}

.exp-visual-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.16);
  color: #5eead4;
  font-weight: 700;
  margin-bottom: 16px;
}

.exp-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.exp-visual-chip {
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  color: #f8fafc;
  font-weight: 600;
}

.exp-mini-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
}

.exp-mini-metric strong {
  font-size: 1.2rem;
  color: white;
}

.exp-mini-metric span {
  color: #cbd5e1;
  font-size: 0.94rem;
}

.exp-section {
  padding: 28px;
  margin-bottom: 22px;
}

.exp-section-heading {
  margin-bottom: 20px;
}

.exp-ecosystem-shell {
  display: grid;
  gap: 18px;
}

.exp-ecosystem-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.exp-ecosystem-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  color: #f8fafc;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.exp-ecosystem-step.active {
  border-color: var(--step-accent);
  box-shadow: 0 10px 26px rgba(0,0,0,0.24);
  transform: translateY(-2px);
}

.exp-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--step-accent);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
}

.exp-step-title {
  font-weight: 700;
}

.exp-ecosystem-detail {
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(120deg, rgba(59,130,246,0.17), rgba(99,102,241,0.16));
  border: 1px solid rgba(129,140,248,0.25);
}

.exp-card-grid,
.exp-result-grid,
.exp-testimonial-grid,
.exp-stats-grid,
.exp-video-grid {
  display: grid;
  gap: 16px;
}

.exp-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.exp-feature-card,
.exp-result-card,
.exp-testimonial-card,
.exp-stat-card,
.exp-video-card {
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.exp-video-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.exp-video-card {
  overflow: hidden;
}

.exp-media-preview {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 150px;
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.exp-media-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,8,23,0.05), rgba(2,8,23,0.55));
}

.exp-media-preview span {
  position: relative;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #111827;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
}

.media-review {
  background: linear-gradient(135deg, rgba(59,130,246,0.9), rgba(14,165,233,0.75));
}

.media-transform {
  background: linear-gradient(135deg, rgba(16,185,129,0.92), rgba(34,197,94,0.7));
}

.media-story {
  background: linear-gradient(135deg, rgba(139,92,246,0.95), rgba(236,72,153,0.76));
}

.exp-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.exp-link-btn {
  margin-top: 14px;
  border: none;
  border-radius: 999px;
  background: rgba(59,130,246,0.14);
  color: #bfdbfe;
  padding: 9px 12px;
  font-weight: 700;
  cursor: pointer;
}

.exp-result-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.exp-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.exp-filter-pill {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
  cursor: pointer;
}

.exp-filter-pill.active {
  background: rgba(59,130,246,0.2);
  color: white;
}

.exp-testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.exp-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 10px;
}

.exp-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.exp-stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.exp-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.exp-stat-label {
  color: #cbd5e1;
  margin-top: 6px;
}

.exp-community-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(22,101,52,0.22), rgba(5,150,105,0.18));
  border: 1px solid rgba(74,222,128,0.2);
}

.exp-community-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exp-community-points span {
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}

.exp-final-cta {
  text-align: center;
  padding: 32px;
}

@media (max-width: 900px) {
  .exp-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .exp-page {
    padding: 14px;
  }

  .exp-hero,
  .exp-section,
  .exp-final-cta {
    padding: 20px;
    border-radius: 20px;
  }

  .exp-hero h1,
  .exp-section h2,
  .exp-final-cta h2 {
    font-size: 1.7rem;
  }
}
