/* ── Hero Slider ──────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  margin: 0 !important;
  padding: 0;
  line-height: 0;
  display: block;
}
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-slide-1     { background: linear-gradient(135deg, #0d1b3e 0%, #1565c0 60%, #1e88e5 100%); }
.hero-slide-2     { background: linear-gradient(135deg, #0a2744 0%, #006064 60%, #00838f 100%); }
.hero-slide-mock2 { background: linear-gradient(135deg, #1a0508 0%, #38101e 60%, #1e0810 100%); }

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 780px;
}
.hero-content .hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-family: var(--font-bold), sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.85);
}
.hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-family: var(--font-extra-bold), sans-serif;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}
.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-content .hero-btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-bold), sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
}
.hero-content .hero-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
}

@media (max-width: 768px) {
  .hero-slider { height: 600px; }
}

/* ── Slide text animation ────────────────────────────────────────── */
@keyframes hero-text-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content .hero-tag,
.hero-content h1,
.hero-content p,
.hero-content .hero-btn {
  opacity: 0;
}

.hero-slide.is-active .hero-content .hero-tag { animation: hero-text-in 0.55s ease forwards 0.15s; }
.hero-slide.is-active .hero-content h1        { animation: hero-text-in 0.55s ease forwards 0.30s; }
.hero-slide.is-active .hero-content p         { animation: hero-text-in 0.55s ease forwards 0.45s; }
.hero-slide.is-active .hero-content .hero-btn { animation: hero-text-in 0.55s ease forwards 0.60s; }

/* ── Slide 1 — ES Cluster ──────────────────────────────────────── */
.hero-slide-1-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 1140px;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}
.hero-slide-1 .hero-content {
  flex: 0 0 390px;
  text-align: left;
}

.es-cluster-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
}
.hero-slide.is-active .es-cluster-wrap {
  animation: hero-text-in 0.7s ease forwards 0.5s;
}
.es-cluster-svg { overflow: visible; }

.es-ring {
  fill: none;
  stroke: #4fc3f7;
  stroke-width: 1.5;
  opacity: 0;
}
.hero-slide.is-active .es-ring-1 { animation: es-ring-out 2.8s ease-out infinite 1s; }
.hero-slide.is-active .es-ring-2 { animation: es-ring-out 2.8s ease-out infinite 1.9s; }
@keyframes es-ring-out {
  0%   { r: 38; opacity: 0.7; }
  100% { r: 75; opacity: 0; }
}

.es-packet { opacity: 0; }
.hero-slide.is-active .es-packet { animation: es-packet-show 0.3s ease forwards 1.2s; }
@keyframes es-packet-show { to { opacity: 1; } }

.es-spoke {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.hero-slide.is-active .es-spoke { animation: es-draw 0.6s ease forwards 0.7s; }
@keyframes es-draw { to { stroke-dashoffset: 0; } }

.es-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  opacity: 0;
}
.es-stat-card .esc-val {
  font-family: var(--font-extra-bold), sans-serif;
  font-size: 22px;
  color: #4fc3f7;
  line-height: 1;
  margin-bottom: 3px;
}
.es-stat-card .esc-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}
.es-stat-card-1 { top: 10px; left: -10px; }
.es-stat-card-2 { bottom: 20px; left: -10px; }
.hero-slide.is-active .es-stat-card-1 { animation: es-card-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards 1.1s; }
.hero-slide.is-active .es-stat-card-2 { animation: es-card-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards 1.4s; }
@keyframes es-card-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.es-query-chip {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(79,195,247,0.4);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Courier New', monospace;
  font-size: 11.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  white-space: nowrap;
}
.hero-slide.is-active .es-query-chip {
  animation: es-card-in 0.55s ease forwards 1.7s;
}
.es-query-chip .qk { color: #80cbc4; }
.es-query-chip .qv { color: #ce93d8; }

@media (max-width: 960px) {
  .es-cluster-wrap { display: none; }
  .hero-slide-1-inner { justify-content: center; padding: 0 24px; }
  .hero-slide-1 .hero-content { flex: none; width: 100%; max-width: 100%; text-align: center; }
}

/* ── Slide NC — No-Code Backend ──────────────────────────────────── */
.hero-slide-nc { background: linear-gradient(135deg, #0f0c29 0%, #302b63 60%, #24243e 100%); }
.hero-slide-nc-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 1140px;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}
.hero-slide-nc .hero-content { flex: 0 0 390px; text-align: left; }

.nc-flow-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
}
.hero-slide.is-active .nc-flow-wrap { animation: hero-text-in 0.5s ease forwards 0.5s; }

.nc-sources, .nc-endpoints { display: flex; flex-direction: column; gap: 10px; }

.nc-source-card, .nc-endpoint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}
.nc-source-card { transform: translateX(-28px); opacity: 0; }
.nc-endpoint { transform: translateX(28px); opacity: 0; font-family: 'Courier New', monospace; font-size: 11.5px; color: rgba(255,255,255,0.75); }

.hero-slide.is-active .nc-source-card:nth-child(1) { animation: nc-from-left 0.45s ease forwards 0.8s; }
.hero-slide.is-active .nc-source-card:nth-child(2) { animation: nc-from-left 0.45s ease forwards 1.0s; }
.hero-slide.is-active .nc-source-card:nth-child(3) { animation: nc-from-left 0.45s ease forwards 1.2s; }
@keyframes nc-from-left { to { transform: translateX(0); opacity: 1; } }

.hero-slide.is-active .nc-endpoint:nth-child(1) { animation: nc-from-right 0.45s ease forwards 1.65s; }
.hero-slide.is-active .nc-endpoint:nth-child(2) { animation: nc-from-right 0.45s ease forwards 1.85s; }
.hero-slide.is-active .nc-endpoint:nth-child(3) { animation: nc-from-right 0.45s ease forwards 2.05s; }
@keyframes nc-from-right { to { transform: translateX(0); opacity: 1; } }

.nc-file-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-bold), sans-serif;
  letter-spacing: 0.5px;
}
.nc-file-csv  { background: rgba(74,222,128,0.18);  color: #4ade80; }
.nc-file-json { background: rgba(251,191,36,0.18);  color: #fbbf24; }
.nc-file-sql  { background: rgba(96,165,250,0.18);  color: #60a5fa; }

.nc-method { font-weight: 700; min-width: 38px; display: inline-block; }
.nc-method-get  { color: #4ade80; }
.nc-method-post { color: #fb923c; }
.nc-path { color: rgba(255,255,255,0.6); }

.nc-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
}
.hero-slide.is-active .nc-connector-1 { animation: hero-text-in 0.3s ease forwards 1.3s; }
.hero-slide.is-active .nc-connector-2 { animation: hero-text-in 0.3s ease forwards 1.55s; }
.nc-conn-track {
  width: 36px; height: 3px;
  border-radius: 2px;
  background: rgba(167,139,250,0.15);
  position: relative;
  overflow: hidden;
}
.nc-conn-track::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, #a78bfa, transparent);
  border-radius: 2px;
}
.hero-slide.is-active .nc-connector-1 .nc-conn-track::after { animation: nc-flow-track 1s ease-in-out infinite 1.4s; }
.hero-slide.is-active .nc-connector-2 .nc-conn-track::after { animation: nc-flow-track 1s ease-in-out infinite 1.7s; }
@keyframes nc-flow-track { 0% { left: -100%; } 100% { left: 100%; } }
.nc-conn-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(167,139,250,0.3); }
.nc-conn-arrow { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1; }

.nc-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.15));
  border: 1.5px solid rgba(139,92,246,0.5);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(139,92,246,0.2), inset 0 0 20px rgba(139,92,246,0.05);
  text-align: center;
  transform: scale(0.85);
  opacity: 0;
}
.hero-slide.is-active .nc-platform { animation: nc-pop-in 0.55s cubic-bezier(0.22,1,0.36,1) forwards 1.35s; }
@keyframes nc-pop-in { to { transform: scale(1); opacity: 1; } }
.nc-platform-icon {
  width: 40px; height: 40px;
  background: rgba(139,92,246,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nc-platform-name { font-family: var(--font-bold), sans-serif; font-size: 13px; color: #fff; }
.nc-platform-sub  { font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }
.nc-scan {
  width: 100%; height: 2px;
  border-radius: 1px;
  background: rgba(167,139,250,0.12);
  overflow: hidden;
  position: relative;
}
.nc-scan::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, #a78bfa, transparent);
}
.hero-slide.is-active .nc-scan::after { animation: nc-flow-track 1.4s ease-in-out infinite 1.9s; }

@media (max-width: 960px) {
  .nc-flow-wrap { display: none; }
  .hero-slide-nc-inner { justify-content: center; padding: 0 24px; }
  .hero-slide-nc .hero-content { flex: none; width: 100%; max-width: 100%; text-align: center; }
}

/* ── Slide 2 — Import ───────────────────────────────────────────── */
.hero-slide-2-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1100px;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}
.hero-slide-2 .hero-content {
  flex: 0 0 400px;
  text-align: left;
}
.s2-mockup {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.s2-packets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(-100px);
  opacity: 0;
}
.hero-slide.is-active .s2-packets {
  animation: s2-pkts-in 0.55s ease forwards 0.8s;
}
@keyframes s2-pkts-in {
  to { transform: translateX(0); opacity: 1; }
}
.s2-packet {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  font-size: 12px;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.s2-packet i { font-size: 14px; opacity: 0.75; }
.s2-flow {
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: 0;
}
.hero-slide.is-active .s2-flow {
  animation: s2-fadein 0.2s ease forwards 1.35s;
}
@keyframes s2-fadein { to { opacity: 1; } }
.s2-flow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  display: block;
}
.hero-slide.is-active .s2-flow-dot:nth-child(1) { animation: s2-pulse 0.9s ease-in-out 2 1.5s, s2-dot-green 0.4s ease forwards 3.3s; }
.hero-slide.is-active .s2-flow-dot:nth-child(2) { animation: s2-pulse 0.9s ease-in-out 2 1.7s, s2-dot-green 0.4s ease forwards 3.5s; }
.hero-slide.is-active .s2-flow-dot:nth-child(3) { animation: s2-pulse 0.9s ease-in-out 2 1.9s, s2-dot-green 0.4s ease forwards 3.7s; }
@keyframes s2-pulse {
  0%, 100% { transform: scale(1);   background: rgba(255,255,255,0.4); }
  50%       { transform: scale(1.7); background: rgba(255,255,255,0.9); }
}
@keyframes s2-dot-green {
  from { background: rgba(255,255,255,0.45); transform: scale(1); }
  50%  { background: #00e676; transform: scale(1.5); }
  to   { background: #00e676; transform: scale(1); }
}
.s2-db-wrap {
  position: relative;
  font-size: 90px;
  line-height: 1;
  flex-shrink: 0;
}
.s2-db-empty {
  display: block;
  color: rgba(255,255,255,0.12);
}
.s2-db-filled {
  position: absolute;
  top: 0; left: 0;
  display: block;
  clip-path: inset(100% 0 0 0);
  color: #26c6da;
}
.hero-slide.is-active .s2-db-filled {
  animation: db-reveal 1.8s ease-out forwards 1.2s;
}
@keyframes db-reveal {
  0%   { clip-path: inset(100% 0 0 0); color: #26c6da; }
  75%  { clip-path: inset(0%   0 0 0); color: #26c6da; }
  100% { clip-path: inset(0%   0 0 0); color: #00e676; }
}
.s2-db-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.s2-status {
  position: relative;
  height: 18px;
  width: 100px;
  text-align: center;
}
.s2-status-loading,
.s2-status-done {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Courier New', monospace;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
}
.s2-status-loading { color: rgba(255,255,255,0.65); }
.s2-status-done    { color: #00e676; }
.hero-slide.is-active .s2-status-loading {
  animation: s2-loading-txt 2.4s ease forwards 1.2s;
}
.hero-slide.is-active .s2-status-done {
  animation: s2-done-txt 0.4s ease forwards 3.1s;
}
@keyframes s2-loading-txt {
  0%  { opacity: 1; }
  90% { opacity: 1; }
  100%{ opacity: 0; }
}
@keyframes s2-done-txt {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (max-width: 900px) {
  .s2-mockup { display: none; }
  .hero-slide-2-inner { justify-content: center; padding: 0 24px; }
  .hero-slide-2 .hero-content { flex: none; width: 100%; max-width: 100%; text-align: center; }
}

/* ── Slide Mock2 — API Mocking ─────────────────────────────────── */
.hero-slide-mock2-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 1140px;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}
.hero-slide-mock2 .hero-content { flex: 0 0 360px; text-align: left; }

.mock2-anim-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.hero-slide.is-active .mock2-anim-wrap { animation: hero-text-in 0.5s ease forwards 0.5s; }

.mock2-scene-inner {
  position: relative;
  width: 490px;
  height: 270px;
  flex-shrink: 0;
}

.mock2-arc-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: visible;
  pointer-events: none;
}
.mock2-arc {
  fill: none;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}
.mock2-arc-req { stroke: rgba(34,211,238,0.4); stroke-width: 1.5; }
.mock2-arc-res { stroke: rgba(52,211,153,0.4); stroke-width: 1.5; }
.hero-slide.is-active .mock2-arc-req { animation: es-draw 0.9s ease forwards 1.1s; }
.hero-slide.is-active .mock2-arc-res { animation: es-draw 0.9s ease forwards 1.55s; }

.mock2-packet { opacity: 0; }
.mock2-packet-req { fill: #22d3ee; }
.mock2-packet-res { fill: #34d399; }
.hero-slide.is-active .mock2-packet-req { animation: es-packet-show 0.25s ease forwards 1.7s; }
.hero-slide.is-active .mock2-packet-res { animation: es-packet-show 0.25s ease forwards 2.1s; }

.mock2-arc-label {
  position: absolute;
  font-size: 8.5px;
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
}
.mock2-arc-label-req { top: 3px; color: rgba(34,211,238,0.65); }
.mock2-arc-label-res { bottom: 3px; color: rgba(52,211,153,0.65); }
.hero-slide.is-active .mock2-arc-label-req { animation: s2-fadein 0.4s ease forwards 1.3s; }
.hero-slide.is-active .mock2-arc-label-res { animation: s2-fadein 0.4s ease forwards 1.8s; }

.mock2-browser {
  position: absolute;
  left: 0;
  top: 58px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  width: 148px;
  opacity: 0;
}
.hero-slide.is-active .mock2-browser { animation: hero-text-in 0.5s ease forwards 0.7s; }

.mock2-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mock2-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mock2-dot-r { background: #ff5f57; }
.mock2-dot-y { background: #febc2e; }
.mock2-dot-g { background: #28c840; }
.mock2-browser-url {
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  font-family: 'Courier New', monospace;
  margin-left: 3px;
  overflow: hidden;
  white-space: nowrap;
}

.mock2-browser-body { padding: 10px; position: relative; min-height: 72px; }
.mock2-state-loading { position: absolute; top: 10px; left: 10px; right: 10px; }
.mock2-skel {
  height: 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 9px;
}
.mock2-skel-short { width: 55%; }
.hero-slide.is-active .mock2-state-loading { animation: mock2-hide 0.3s ease forwards 2.2s; }
@keyframes mock2-hide { to { opacity: 0; } }

.mock2-state-loaded { opacity: 0; }
.hero-slide.is-active .mock2-state-loaded { animation: s2-fadein 0.4s ease forwards 2.3s; }

.mock2-data-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}
.mock2-data-row:last-child { border-bottom: none; }
.mock2-data-dot { width: 5px; height: 5px; border-radius: 50%; background: #22d3ee; flex-shrink: 0; }
.mock2-data-name { flex: 1; overflow: hidden; white-space: nowrap; }
.mock2-data-price { color: #34d399; font-size: 9px; white-space: nowrap; }

.mock2-server-box {
  position: absolute;
  right: 0;
  top: 62px;
  width: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(6,182,212,0.08));
  border: 1.5px solid rgba(34,211,238,0.4);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(34,211,238,0.12), inset 0 0 16px rgba(34,211,238,0.04);
  text-align: center;
  transform: scale(0.85);
  opacity: 0;
}
.hero-slide.is-active .mock2-server-box { animation: nc-pop-in 0.55s cubic-bezier(0.22,1,0.36,1) forwards 0.9s; }
.mock2-server-label { font-size: 9px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.mock2-server-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 20px;
  font-size: 9px;
  color: #34d399;
  font-family: var(--font-bold), sans-serif;
}
.mock2-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #34d399; }
.hero-slide.is-active .mock2-live-dot { animation: mock2-blink 1s ease-in-out infinite 2.0s; }
@keyframes mock2-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.mock2-json-card {
  position: absolute;
  left: 157px;
  top: 75px;
  width: 176px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
}
.hero-slide.is-active .mock2-json-card { animation: s2-fadein 0.5s ease forwards 1.0s; }

.mock2-json-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(52,211,153,0.08);
  border-bottom: 1px solid rgba(34,211,238,0.12);
}
.mock2-json-status { font-size: 10px; color: #34d399; font-family: var(--font-bold), sans-serif; }
.mock2-json-time { font-size: 9px; color: rgba(255,255,255,0.35); font-family: 'Courier New', monospace; }
.mock2-json-pre {
  padding: 8px 10px;
  margin: 0;
  font-size: 9px;
  font-family: 'Courier New', monospace;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  white-space: pre;
  overflow: hidden;
}
.mj-k { color: #7dd3fc; }
.mj-s { color: #86efac; }
.mj-n { color: #fb923c; }

@media (max-width: 960px) {
  .mock2-anim-wrap { display: none; }
  .hero-slide-mock2-inner { justify-content: center; padding: 0 24px; }
  .hero-slide-mock2 .hero-content { flex: none; width: 100%; max-width: 100%; text-align: center; }
}

/* ── Navigation dots ──────────────────────────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.hero-dot.active {
  width: 24px;
  background: #fff;
}

/* ── Navigation arrows ────────────────────────────────────────────── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* ── References / logo carousel ──────────────────────────────────── */
.references-section {
  margin-bottom: 60px;
  overflow: hidden;
}

.references-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}
.references-lead {
  font: 15px var(--font-medium), sans-serif;
  color: var(--gray-color);
  line-height: 1.75;
  margin: 14px 0 32px;
}

.logos-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.logos-track {
  display: flex;
  width: max-content;
  animation: logos-scroll 30s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }

@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 40px;
  white-space: nowrap;
  min-width: 140px;
}
.logo-item svg  { transition: transform 0.2s ease; }
.logo-item:hover svg { transform: scale(1.15); }
.logo-item span {
  font-size: 10px;
  font-family: var(--font-bold), sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a96a4;
}
