/* RSH AI landing - hero row: content column + Nexa showcase slider on the right. */

.home-row {
  display: flex;
  align-items: stretch; /* left column grows to match the showcase height — bottoms line up */
  gap: clamp(28px, 4vw, 56px);
  /* sit the card + showcase row below the hero CTA — no negative lift (was colliding with the Beta button) */
  margin-top: 0;
}
.home-col {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center the Nexa card + FAQ as a group against the taller screenshot */
  gap: clamp(22px, 3.5vh, 40px);
  width: min(620px, 100%);
}
/* Nexa card + FAQ keep their natural size — no stretch — and sit centered in the column */
.home-col > .door-row,
.home-col > .faq-in-col { flex: 0 0 auto; min-height: 0; display: flex; }
.home-col > .faq-in-col { flex-direction: column; }

/* ---------- hero title + go-live side by side (uses empty space beside headline) ---------- */
.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
}
.hero-top > section { flex: 1 1 auto; min-width: 0; }

/* ---------- showcase slider ---------- */
.home-shot-wrap {
  flex: 1;
  min-width: 0;
  align-self: flex-start;
  /* bleed gently past the 1200px container - always leave breathing room at the right edge */
  margin-right: min(0px, calc((1200px - 100vw) / 2 + 64px));
}
/* wide screens: pull the whole hero a bit left and give the slider a larger, airier zone */
@media (min-width: 1680px) {
  .home-main { max-width: 1360px; }
  .home-shot-wrap { margin-right: min(0px, calc((1360px - 100vw) / 2 + 64px)); }
}
/* go-live delay note — sits beside hero text, not above the slider */
.go-live {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
  width: min(480px, 42%);
  margin: 6px 0 0;
  padding: 22px 24px 20px;
  border-radius: 22px;
  background: var(--glass-tint);
  border: 1px solid var(--glass-border);
  box-shadow: 0 22px 52px var(--glass-shadow), inset 0 1px 0 var(--glass-spec);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}
.go-live-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.go-live-heart {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, #ff5a7a 12%, var(--field-sheen));
  border: 1px solid color-mix(in srgb, #ff5a7a 22%, var(--hairline));
  color: #ff5a7a;
  font-size: 20px;
  line-height: 1;
  box-shadow: inset 0 1px 0 var(--glass-spec);
}
.go-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--field-sheen);
  font: 600 12.5px var(--grotesk);
  letter-spacing: 0.04em;
  color: var(--blue);
  text-transform: uppercase;
}
.go-live-pill .pulse {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
  animation: go-live-pulse 1.8s ease-out infinite;
}
@keyframes go-live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}
.go-live h2 {
  margin: 2px 0 0;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}
.go-live p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-60);
}
.go-live-lead { max-width: 32ch; }
.go-live-when {
  font-size: 16px !important;
  color: var(--ink) !important;
  font-weight: 500;
}
.go-live-when b {
  color: var(--blue);
  font-weight: 700;
}
.go-live-note {
  margin-top: 2px !important;
  font-size: 14.5px !important;
  color: var(--ink-60);
}
.go-live-note span { color: #ff5a7a; }

/* head row: "This is Nexa" on the left, Join Discord pill on the right */
.shot-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 6px 12px;
}
.shot-head {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--ink-60);
}
.shot-head b { color: var(--ink); font-weight: 600; }
.shot-head em { color: var(--blue); }
.home-shot { position: relative; padding: 0; border: 0; background: none; }
/* the clip lives on a stationary viewport - never on the moving track */
/* single 0.5px hairline + soft 3D float lives here so the screenshot itself reads clean */
.shot-view {
  border-radius: 14px; overflow: hidden;
  border: 0.5px solid var(--hairline);
  box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.35), 0 4px 12px -6px rgba(15, 23, 42, 0.18);
}
.shot-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.shot-slide { flex: none; width: 100%; margin: 0; }
.shot-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.9; /* uniform frame height - shots vary slightly, cover crops the rest */
  object-fit: cover;
  border-radius: 0; /* .shot-view owns the radius + the single hairline now */
  border: 0;
  cursor: zoom-in;
}
/* caption + dots row inside the frame */
.shot-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 8px 2px;
}
.shot-caption { min-width: 0; font-size: 12.5px; color: var(--ink-60); letter-spacing: 0.01em; }
.shot-caption b { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.shot-dots { display: inline-flex; align-items: center; gap: 7px; }
.shot-dots button {
  width: 7px; height: 7px; padding: 0;
  border: 0; border-radius: 50%; cursor: pointer;
  background: var(--ink-40); opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.shot-dots button[aria-current="true"] { background: var(--blue); opacity: 1; transform: scale(1.25); }
/* hover arrows - .home-shot > prefix outranks site.css's .glass > :not(.lens) rule */
.home-shot > .shot-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--glass-border); border-radius: 999px;
  background: var(--field-sheen); color: var(--ink);
  font: 400 22px/1 var(--grotesk); padding-bottom: 3px;
  cursor: pointer; opacity: 0;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.home-shot > .shot-nav[hidden] { display: none; }
.shot-nav.prev { left: 20px; }
.shot-nav.next { right: 20px; }
.home-shot:hover .shot-nav, .shot-nav:focus-visible { opacity: 1; }
.shot-nav:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- full-view lightbox ---------- */
.shot-lightbox {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 8, 14, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.shot-lightbox[hidden] { display: none; }
.shot-lightbox img {
  max-width: min(1600px, 94vw); max-height: 92vh;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  cursor: zoom-out;
}
.shot-close {
  position: absolute; top: 18px; right: 22px;
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px;
  background: rgba(255, 255, 255, 0.1); color: #fff;
  font: 300 24px/1 var(--grotesk);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.shot-close:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.06); }

/* Launch status belongs with the original Nexa card, not in the hero. */
.door-live-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 5px 10px;
  color: var(--ink-60);
  font-size: 12px;
}
.door-live-note b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 12.5px;
  letter-spacing: .01em;
}
.door-live-note b i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18c782;
  box-shadow: 0 0 0 4px color-mix(in srgb, #18c782 12%, transparent);
}
.door-live-note span { color: var(--blue); font-weight: 600; }

/* ---------- responsive: slider visible on every size ---------- */
@media (max-width: 1100px) {
  .hero-top { flex-direction: column; align-items: stretch; }
  .go-live { width: 100%; margin: 0; }
  .home-row { display: block; }
  .home-col { width: 100%; }
  .home-shot-wrap { margin: clamp(40px, 7vh, 72px) 0 0; }
  .shot-nav { opacity: 1; } /* no hover on touch - keep arrows visible */
}
@media (max-width: 600px) {
  .shot-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .shot-nav { width: 32px; height: 32px; }
  .shot-nav.prev { left: 14px; }
  .shot-nav.next { right: 14px; }
}
