/* ══ Global font ══ */
*, *::before, *::after {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* ══════════════════════════════════════════════
   3D CAMERA ANGLE CONTROL — SHOWCASE SECTION
   Full responsive: mobile · iPad · laptop · desktop
   ══════════════════════════════════════════════ */

/* ── Section wrapper ── */
.sc-section {
  padding: 100px 5%;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.sc-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse 80% 80% at 80% 10%,
    rgba(127,255,58,.10) 0%, rgba(29,184,64,.05) 40%, transparent 70%);
  pointer-events: none;
}
.sc-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse 70% 70% at 10% 90%,
    rgba(127,255,58,.07) 0%, transparent 70%);
  pointer-events: none;
}
.sc-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* ── Two-column grid ── */
.sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ══════════ LEFT MOCKUP FRAME ══════════ */
.sc-mockup-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-frame {
  width: 100%;
  max-width: 580px;
  background: #0d160d;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,20,0,.55),
    0 8px 28px rgba(0,20,0,.30),
    0 0 0 1px rgba(127,255,58,0.12);
  border: 1px solid rgba(127,255,58,.15);
}

/* title bar */
.sc-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: #091009;
  border-bottom: 1px solid rgba(127,255,58,.10);
}
.sc-dots { display: flex; gap: 6px; }
.sc-dot {
  width: 12px; height: 12px;
  border-radius: 50%; display: block;
}
.sc-dot-red    { background: #ff5f57; }
.sc-dot-yellow { background: #febc2e; }
.sc-dot-green  { background: #28c840; }
.sc-win-title {
  flex: 1; text-align: center;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.55);
  font-family: 'Inter', sans-serif;
}
.sc-win-close {
  font-size: 11px;
  color: rgba(255,255,255,.22);
  cursor: pointer;
}

/* body split */
.sc-body {
  display: grid;
  grid-template-columns: 1fr 160px;
  min-height: 260px;
}

/* ── video panel ── */
.sc-video-col {
  border-right: 1px solid rgba(127,255,58,.10);
  display: flex;
  flex-direction: column;
}
.sc-video-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(0,20,0,.25);
  position: relative;
  z-index: 2;
}
.sc-fps-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  font-family: 'Inter', sans-serif;
  letter-spacing: .06em;
}
.sc-fps-div {
  width: 1px; height: 10px;
  background: rgba(255,255,255,.25);
}
.sc-film-wm {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  letter-spacing: .1em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
/* corner bracket decorations in topbar */
.sc-corner-brk {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.sc-brk-tl { border-top: 2px solid rgba(255,255,255,.3); border-left: 2px solid rgba(255,255,255,.3); }
.sc-brk-tr { border-top: 2px solid rgba(255,255,255,.3); border-right: 2px solid rgba(255,255,255,.3); }
.sc-brk-bl { border-bottom: 2px solid rgba(255,255,255,.3); border-left: 2px solid rgba(255,255,255,.3); }
.sc-brk-br { border-bottom: 2px solid rgba(255,255,255,.3); border-right: 2px solid rgba(255,255,255,.3); }

/* cinematic scene bg */
.sc-cinematic-bg {
  flex: 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #091009;
}
/* city layers */
.sc-city-far {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #061a08 0%, #0a2410 40%, #050e06 100%);
}
.sc-city-mid {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 80%,
      rgba(29,184,64,.28) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 20% 70%,
      rgba(127,255,58,.18) 0%, transparent 50%);
}
.sc-city-near {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background:
    linear-gradient(0deg,
      rgba(3,10,4,1) 0%,
      rgba(6,18,7,.65) 40%,
      transparent 100%);
}
.sc-city-vig {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%,
    transparent 40%, rgba(0,0,0,.55) 100%);
}
/* play button */
.sc-play-btn {
  position: relative; z-index: 3;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(29,184,64,.82);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(127,255,58,.45);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  box-shadow:
    0 0 0 0 rgba(127,255,58,.5),
    0 6px 32px rgba(29,184,64,.55);
  animation: scPlayPulse 2.4s ease-in-out infinite;
  cursor: pointer;
}
@keyframes scPlayPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(127,255,58,.5), 0 6px 32px rgba(29,184,64,.55); }
  50%      { box-shadow: 0 0 0 12px rgba(127,255,58,0), 0 6px 32px rgba(29,184,64,.55); }
}
.sc-cinematic-bg:hover .sc-play-btn {
  background: rgba(29,184,64,1);
  transform: scale(1.1);
  animation: none;
}
.sc-play-btn svg { margin-left: 4px; }

/* hover label */
.sc-play-hover-lbl {
  position: absolute; z-index: 3;
  bottom: 28px;
  left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.75);
  font-family: 'Inter', sans-serif;
  background: rgba(0,0,0,.55);
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
  transition: color .2s, opacity .2s;
  pointer-events: none;
}
.sc-cinematic-bg:hover .sc-play-hover-lbl {
  color: #fff;
}
/* corner frame overlays */
.sc-corner {
  position: absolute; z-index: 2;
  width: 18px; height: 18px;
}
.sc-c-tl { top: 8px; left: 8px; border-top: 2px solid rgba(255,255,255,.4); border-left: 2px solid rgba(255,255,255,.4); }
.sc-c-tr { top: 8px; right: 8px; border-top: 2px solid rgba(255,255,255,.4); border-right: 2px solid rgba(255,255,255,.4); }
.sc-c-bl { bottom: 8px; left: 8px; border-bottom: 2px solid rgba(255,255,255,.4); border-left: 2px solid rgba(255,255,255,.4); }
.sc-c-br { bottom: 8px; right: 8px; border-bottom: 2px solid rgba(255,255,255,.4); border-right: 2px solid rgba(255,255,255,.4); }
/* video bottom bar */
.sc-video-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: rgba(0,20,0,.3);
}
.sc-vid-label {
  font-size: 9.5px;
  color: rgba(255,255,255,.9);
  font-family: 'Inter', sans-serif;
  flex: 1;
  text-align: center;
  font-weight: 500;
}

/* ── orbit control panel ── */
.sc-ctrl-col {
  padding: 12px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sc-cam-lbl {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: rgba(255,255,255,.4);
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  align-self: flex-start;
}
.sc-orbit-svg {
  width: 100%;
  max-width: 144px;
  height: auto;
}
.sc-angle-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.sc-angle-btn {
  width: 100%;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
  font-size: 10.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all .2s;
}
.sc-angle-btn.active {
  background: rgba(127,255,58,.18);
  border-color: rgba(127,255,58,.55);
  color: #7fff3a;
  font-weight: 700;
}
.sc-angle-btn:hover:not(.active) {
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.8);
}

/* ── bottom navigation bar ── */
.sc-bottombar {
  border-top: 1px solid rgba(127,255,58,0.10);
  background: #091009;
}
.sc-nav-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.sc-nav-arr {
  background: none; border: none;
  color: rgba(255,255,255,.35);
  font-size: 10px; cursor: pointer;
  padding: 2px 4px; line-height: 1;
}
.sc-nav-cnt {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  font-family: 'Inter', sans-serif;
  min-width: 22px; text-align: center;
}
.sc-prompt-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10.5px;
  color: rgba(255,255,255,.3);
  font-family: 'Inter', sans-serif;
  outline: none;
}
.sc-gen-btn {
  padding: 5px 14px;
  border-radius: 6px;
  border: 2px solid #1db840;
  background: transparent;
  color: #1db840;
  font-size: 10.5px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .04em;
  box-shadow: none;
  transition: background .22s, color .22s, border-color .22s;
}
.sc-gen-btn:hover { background: rgba(29,184,64,.14); color: #7fff3a; border-color: #7fff3a; }
.sc-scene-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 7px;
  flex-wrap: wrap;
}
.sc-scene-txt {
  font-size: 9px;
  color: rgba(255,255,255,.32);
  font-family: 'Inter', sans-serif;
  letter-spacing: .03em;
}
.sc-scene-txt strong {
  color: rgba(127,255,58,.85);
  font-weight: 600;
}
.sc-scene-sep { color: rgba(255,255,255,.15); font-size: 10px; }
.sc-scene-light {
  font-size: 9px;
  color: rgba(255,255,255,.28);
  font-family: 'Inter', sans-serif;
  letter-spacing: .03em;
}

/* ══════════ RIGHT CONTENT COLUMN ══════════ */
.sc-content-col {
  display: flex;
  flex-direction: column;
}
.sc-heading {
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.0834933333;
  color: #f5f5f7;
  margin-bottom: 18px;
}
.sc-heading-grad {
  background: linear-gradient(135deg, #1db840, #7fff3a, #a8f030);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
html[data-theme="light"] .sc-heading-grad {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #1db840;
  color: #1db840;
}
.sc-desc {
  font-family: 'Plus Jakarta Sans','Inter',-apple-system,sans-serif;
  font-size: 16px;
  line-height: 1.78;
  font-weight: 500;
  text-align: justify;
  letter-spacing: .012em;
  letter-spacing: -0.022em;
  color: #fff;
  margin-bottom: 36px;
  max-width: 490px;
}
.sc-feat-list {
  list-style: none;
  padding: 0; margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sc-feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Plus Jakarta Sans','Inter',-apple-system,sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  letter-spacing: .008em;
  line-height: 1.65;
}
.sc-feat-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1db840, #7fff3a);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(127,255,58,.35);
}
.sc-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sc-try-btn {
  padding: 15px 36px;
  border-radius: 12px;
  border: 2px solid #1db840;
  background: transparent;
  color: #1db840;
  font-size: 15px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  box-shadow: none;
  transition: background .22s, color .22s, border-color .22s, transform .15s;
  white-space: nowrap;
  letter-spacing: .04em;
}
.sc-try-btn:hover {
  background: rgba(29,184,64,.14);
  color: #7fff3a;
  border-color: #7fff3a;
  transform: translateY(-2px);
  box-shadow: none;
}
.sc-demo-btn {
  padding: 15px 32px;
  border-radius: 999px;
  border: 2px solid #1db840;
  background: transparent;
  color: #1db840;
  font-size: 15px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .22s, transform .15s;
  white-space: nowrap;
  box-shadow: none;
  letter-spacing: .04em;
}
.sc-demo-btn:hover {
  background: rgba(29,184,64,.14);
  color: #7fff3a;
  border-color: #7fff3a;
  transform: translateY(-2px);
  box-shadow: none;
}

/* ══════════ RESPONSIVE ══════════ */

/* Large desktop ≥ 1440px */
@media(min-width:1440px) {
  .sc-grid { gap: 90px; }
  .sc-frame { max-width: 620px; }
}

/* Laptop 1024px – 1280px */
@media(max-width:1280px) {
  .sc-section { padding: 90px 4%; }
  .sc-grid { gap: 52px; }
}

/* iPad landscape / small laptop ≤ 1024px */
@media(max-width:1024px) {
  .sc-section { padding: 80px 4%; }
  .sc-grid { gap: 40px; }
  .sc-body { grid-template-columns: 1fr 140px; }
  .sc-heading { font-size: 34px; }
  .sc-desc { font-size: 15px; margin-bottom: 28px; }
  .sc-feat-list { margin-bottom: 32px; }
}

/* iPad portrait ≤ 768px — stack vertically, body side-by-side still ok */
@media(max-width:768px) {
  .sc-section { padding: 64px 16px; overflow-x: hidden; }
  .sc-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-frame { max-width: 100%; width: 100%; box-sizing: border-box; }
  .sc-mockup-col { width: 100%; overflow: hidden; box-sizing: border-box; }
  .sc-inner { padding: 0; }
  .sc-content-col { text-align: center; align-items: center; }
  .sc-desc { margin-left: auto; margin-right: auto; }
  .sc-feat-list { align-items: flex-start; width: 100%; max-width: 420px; }
  .sc-cta-row { justify-content: center; }
  .sc-heading { font-size: 30px; }
  /* Stack body columns on tablets too */
  .sc-body { grid-template-columns: 1fr; }
  .sc-ctrl-col {
    border-top: 1px solid rgba(255,255,255,.07);
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 10px;
  }
  .sc-cam-lbl { width: 100%; }
  .sc-orbit-svg { max-width: 110px; }
  .sc-angle-list { flex: 1; min-width: 0; flex-direction: column; width: 100%; }
  .sc-angle-btn { width: 100%; box-sizing: border-box; }
}

/* Mobile ≤ 480px — compact */
@media(max-width:480px) {
  .sc-section { padding: 48px 12px; overflow-x: hidden; }
  .sc-frame { border-radius: 14px; }
  .sc-ctrl-col { padding: 10px 12px; gap: 8px; }
  .sc-orbit-svg { max-width: 90px; }
  .sc-cinematic-bg { min-height: 150px; }
  .sc-heading { font-size: 26px; }
  .sc-desc { font-size: 14px; }
  .sc-feat-item { font-size: 14px; }
  .sc-nav-row { gap: 4px; padding: 8px 10px; }
  .sc-prompt-input { min-width: 0; flex: 1; font-size: 10px; }
  .sc-gen-btn { padding: 5px 10px; font-size: 9.5px; }
  .sc-bottombar { overflow: hidden; }
}

/* ── YouTube overlay (covers the entire sc-video-col) ── */
.sc-yt-overlay {
  display: none;                   /* shown via JS */
  position: absolute;
  inset: 0;
  z-index: 20;
  flex-direction: column;
  background: #060a06;
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 0;                /* inherits frame radius */
}
.sc-yt-overlay.sc-yt-visible {
  opacity: 1;
}

/* iframe wrapper — fills the overlay */
.sc-yt-iframe-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.sc-yt-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* close button */
.sc-yt-close-btn {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 30;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(6px);
}
.sc-yt-close-btn:hover {
  background: rgba(29,184,64,.85);
  border-color: rgba(127,255,58,.5);
  transform: scale(1.1);
}

/* now-playing label strip */
.sc-yt-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(0,0,0,.75);
  font-size: 10px;
  color: rgba(255,255,255,.65);
  font-family: 'Inter', sans-serif;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.sc-yt-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7fff3a;
  flex-shrink: 0;
  animation: ytDotPulse 1.4s ease-in-out infinite;
}
@keyframes ytDotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}

/* Watch Demo button — active state */
.sc-demo-btn-active {
  border-color: rgba(127,255,58,.5) !important;
  color: #7fff3a !important;
  background: rgba(127,255,58,.06) !important;
}

/* Small mobile ≤ 420px */
@media(max-width:420px) {
  .sc-section { padding: 48px 14px; }
  .sc-try-btn, .sc-demo-btn { width: 100%; justify-content: center; text-align: center; }
  .sc-cta-row { flex-direction: column; }
  .sc-heading { font-size: 24px; }
  .sc-nav-row { gap: 4px; }
  .sc-gen-btn { padding: 5px 10px; font-size: 9.5px; }
}


/* ══════════════════════════════════════════════════════════
   3D CAMERA ANGLE FEATURE SECTION
   Responsive: mobile · iPad · laptop · desktop
   ══════════════════════════════════════════════════════════ */

/* ── Section ── */
.cam3d-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(127,255,58,0.10);
  border-bottom: 1px solid rgba(127,255,58,0.10);
}
.cam3d-section::before {
  content: '';
  position: absolute;
  top: -180px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse 60% 60% at 20% 30%,
    rgba(127,255,58,.10) 0%, rgba(29,184,64,.05) 45%, transparent 70%);
  pointer-events: none;
}
.cam3d-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse 60% 60% at 80% 70%,
    rgba(127,255,58,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cam3d-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Left: Image grid — storyboarder.ai style ── */
.cam3d-images {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(127,255,58,0.18);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,20,0,.5), 0 8px 24px rgba(0,20,0,.3);
}

/* ── Top row: tall images ── */
.cam3d-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(127,255,58,0.08);
}
/* ── Bottom row: short images ── */
.cam3d-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(127,255,58,0.08);
  border-top: 1px solid rgba(127,255,58,0.10);
}

/* ── Individual cell ── */
.cam3d-cell {
  position: relative;
  overflow: hidden;
  background: #0d160d;
  cursor: pointer;
}
.cam3d-cell-tall  { aspect-ratio: 3/4; }
.cam3d-cell-short { aspect-ratio: 16/9; }

/* center cell slightly brighter (active) */
.cam3d-cell-center { background: #111; }

/* image */
.cam3d-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .5s ease;
  filter: brightness(.75) contrast(1.15) saturate(.9);
}
.cam3d-flip { transform: scaleX(-1); }
.cam3d-cell:hover .cam3d-img {
  transform: scale(1.07);
  filter: brightness(.95) contrast(1.1) saturate(1);
}
.cam3d-cell:hover .cam3d-flip {
  transform: scaleX(-1) scale(1.07);
}

/* gradient overlay per cell */
.cam3d-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.15) 0%,
    transparent 40%,
    rgba(0,0,0,.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.cam3d-overlay-dark {
  background: linear-gradient(180deg,
    rgba(0,0,0,.3) 0%,
    transparent 50%,
    rgba(0,0,0,.7) 100%);
}

/* active glow on center cell */
.cam3d-active-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #FFE600;
  z-index: 5;
  box-shadow: 0 0 12px rgba(255,230,0,.7);
}

/* ── Camera frame ── */
.cam3d-frame {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
}
.cam3d-corner {
  position: absolute;
  width: 16px; height: 16px;
}
.cam3d-tl { top: 10px;  left: 10px;  border-top: 1.5px solid rgba(255,255,255,.55); border-left: 1.5px solid rgba(255,255,255,.55); }
.cam3d-tr { top: 10px;  right: 10px; border-top: 1.5px solid rgba(255,255,255,.55); border-right: 1.5px solid rgba(255,255,255,.55); }
.cam3d-bl { bottom: 24px; left: 10px;  border-bottom: 1.5px solid rgba(255,255,255,.55); border-left: 1.5px solid rgba(255,255,255,.55); }
.cam3d-br { bottom: 24px; right: 10px; border-bottom: 1.5px solid rgba(255,255,255,.55); border-right: 1.5px solid rgba(255,255,255,.55); }

/* + crosshair markers */
.cam3d-plus {
  position: absolute;
  color: rgba(255,230,0,.75);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  font-family: monospace;
  z-index: 2;
}
.cam3d-p-tl { top: 22px;  left: 22px; }
.cam3d-p-tr { top: 22px;  right: 22px; }
.cam3d-p-bl { bottom: 30px; left: 22px; }
.cam3d-p-br { bottom: 30px; right: 22px; }

/* orange tracking dot */
.cam3d-track-dot {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff6b35;
  box-shadow: 0 0 10px rgba(255,107,53,.9);
  z-index: 3;
}

/* scene label */
.cam3d-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 5px 8px;
  background: rgba(0,0,0,.7);
  color: rgba(255,255,255,.55);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: 'Inter', monospace;
  z-index: 4;
}

/* filmstrip */
.cam3d-filmstrip {
  display: flex;
  align-items: center;
  gap: 0;
  background: #0d160d;
  border-top: 1px solid rgba(127,255,58,0.10);
  padding: 6px 0;
  margin-top: 4px;
}
.cam3d-film-holes {
  display: flex;
  gap: 5px;
  padding: 0 8px;
  flex-shrink: 0;
}
.cam3d-film-holes span {
  width: 8px; height: 8px;
  border-radius: 2px;
  border: 1px solid #333;
  display: block;
}
.cam3d-film-bar {
  flex: 1;
  height: 4px;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
}
.cam3d-film-progress {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, #FFE600, #ff9900);
  border-radius: 2px;
  animation: cam3dProgress 4s ease-in-out infinite alternate;
}
@keyframes cam3dProgress {
  from { width: 20%; }
  to   { width: 75%; }
}

/* ── Right: Content ── */
.cam3d-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* eyebrow */
.cam3d-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7fff3a;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.cam3d-eyebrow-line {
  display: inline-block;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, #1db840, #7fff3a);
  flex-shrink: 0;
  border-radius: 2px;
}

/* heading */
.cam3d-heading {
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.0834933333;
  letter-spacing: -0.003em;
  color: #f5f5f7;
  margin-bottom: 24px;
}
.cam3d-heading-yellow {
  background: linear-gradient(135deg, #1db840, #7fff3a, #a8f030);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
html[data-theme="light"] .cam3d-eyebrow {
  color: #1db840;
}
html[data-theme="light"] .cam3d-heading-yellow {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #1db840;
  color: #1db840;
}

/* description */
.cam3d-desc {
  font-family: 'Plus Jakarta Sans','Inter',-apple-system,sans-serif;
  font-size: 16px;
  line-height: 1.78;
  font-weight: 500;
  letter-spacing: .012em;
  color: rgba(255,255,255,.92);
  margin-bottom: 32px;
  max-width: 480px;
  text-align: justify;
}

/* feature list */
.cam3d-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.cam3d-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Plus Jakarta Sans','Inter',-apple-system,sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.90);
  line-height: 1.65;
  letter-spacing: .008em;
  font-weight: 500;
}
.cam3d-arrow {
  background: linear-gradient(135deg, #1db840, #7fff3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA buttons */
.cam3d-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cam3d-btn-primary {
  padding: 15px 32px;
  background: transparent;
  color: #1db840;
  border: 2px solid #1db840;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .22s, transform .15s;
  white-space: nowrap;
  box-shadow: none;
}
.cam3d-btn-primary:hover {
  background: rgba(29,184,64,.14);
  color: #7fff3a;
  border-color: #7fff3a;
  transform: translateY(-2px);
  box-shadow: none;
}
.cam3d-btn-ghost {
  padding: 15px 32px;
  background: transparent;
  color: #1db840;
  border: 2px solid #1db840;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .22s, transform .15s;
  white-space: nowrap;
  box-shadow: none;
}
.cam3d-btn-ghost:hover {
  background: rgba(29,184,64,.14);
  color: #7fff3a;
  border-color: #7fff3a;
  transform: translateY(-2px);
  box-shadow: none;
}

/* Stats row */
.cam3d-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.cam3d-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cam3d-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #1db840, #7fff3a, #a8f030);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -.02em;
}
/* ── Light theme: #1db840 overrides ── */
html[data-theme="light"] .cam3d-stat-num {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #1db840;
  color: #1db840;
}
.cam3d-stat-label {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.cam3d-stat-div {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══ RESPONSIVE ══════════════════════════════════════ */

/* Desktop ≥ 1440px */
@media(min-width:1440px) {
  .cam3d-inner { gap: 90px; }
  .cam3d-heading { font-size: 36px; }
}

/* Laptop ≤ 1280px */
@media(max-width:1280px) {
  .cam3d-inner { gap: 52px; }
  .cam3d-heading { font-size: 30px; }
}

/* iPad landscape ≤ 1024px */
@media(max-width:1024px) {
  .cam3d-section { padding: 80px 0; }
  .cam3d-inner { gap: 40px; grid-template-columns: 1fr 1fr; }
  .cam3d-heading { font-size: 26px; }
  .cam3d-desc { font-size: 14px; }
  .cam3d-feat-item { font-size: 13.5px; }
}

/* iPad portrait ≤ 768px — stack */
@media(max-width:768px) {
  .cam3d-section { padding: 64px 0; }
  .cam3d-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 5%;
  }
  .cam3d-images { order: 2; }
  .cam3d-content { order: 1; }
  .cam3d-heading { font-size: 24px; }
  .cam3d-desc { max-width: 100%; }
}

/* Mobile ≤ 600px */
@media(max-width:600px) {
  .cam3d-section { padding: 56px 0; }
  .cam3d-inner { padding: 0 20px; gap: 36px; }
  .cam3d-hide-sm { display: none; }
  .cam3d-top-row  { grid-template-columns: repeat(2, 1fr); }
  .cam3d-bottom-row { grid-template-columns: repeat(2, 1fr); }
  .cam3d-heading { font-size: 21px; }
  .cam3d-desc { font-size: 14px; }
  .cam3d-features { gap: 12px; }
  .cam3d-feat-item { font-size: 13px; }
  .cam3d-btn-primary, .cam3d-btn-ghost { width: 100%; text-align: center; }
  .cam3d-cta-row { flex-direction: column; gap: 10px; }
  .cam3d-stats { gap: 18px; }
  .cam3d-stat-num { font-size: 18px; }
  .cam3d-film-holes { display: none; }
}

/* Small mobile ≤ 420px */
@media(max-width:420px) {
  .cam3d-inner { padding: 0 16px; }
  .cam3d-heading { font-size: 19px; }
  .cam3d-eyebrow { font-size: 9px; }
  .cam3d-cell-tall  { aspect-ratio: 3/3.5; }
}

/* ══════════════════════════════════════════════════════
   TAKE A PEEK INSIDE — SAMPLE OUTPUT STORYBOARD SECTION
   Responsive: mobile · iPad · laptop · desktop
   ══════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.peek-section {
  padding: 96px 0 80px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.peek-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse 80% 70% at 50% 0%,
    rgba(127,255,58,.12) 0%, rgba(29,184,64,.06) 45%, transparent 70%);
  pointer-events: none;
}
.peek-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── Section header ── */
.peek-header {
  text-align: center;
  margin-bottom: 40px;
}
.peek-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(127,255,58,.10);
  border: 1px solid rgba(127,255,58,.28);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #7fff3a;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.peek-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1db840, #7fff3a);
  animation: pulse 2s infinite;
  display: inline-block;
}
.peek-heading {
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.003em;
  color: #f5f5f7;
  line-height: 1.0834933333;
  margin-bottom: 16px;
}
.peek-subheading {
  font-size: clamp(14px, 1.8vw, 17px);
  color: #fff;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ── Scene selector ── */
.peek-scene-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.peek-scene-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0d160d;
  border: 1.5px solid rgba(127,255,58,0.12);
  border-radius: 14px;
  padding: 10px 16px 10px 10px;
  cursor: pointer;
  transition: all .25s;
  min-width: 200px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.peek-scene-card.active,
.peek-scene-card:hover {
  border-color: rgba(127,255,58,.45);
  box-shadow: 0 4px 20px rgba(127,255,58,.15);
  background: rgba(127,255,58,.04);
}
.peek-scene-thumb {
  width: 64px; height: 44px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.peek-thumb-bg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.peek-thumb-1 { background: linear-gradient(135deg,#1a1040,#3d2080,#7c40d0); }
.peek-thumb-2 { background: linear-gradient(135deg,#0d2040,#1a4080,#2060c0); }
.peek-thumb-3 { background: linear-gradient(135deg,#200d10,#602020,#c04030); }
.peek-thumb-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
}
.peek-thumb-play svg { filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
.peek-scene-info { flex: 1; }
.peek-scene-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #7fff3a;
  letter-spacing: .04em;
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
}
html[data-theme="light"] .peek-scene-label {
  color: #1db840;
}
.peek-scene-title {
  font-size: 14px;
  font-weight: 600;
  color: #f5f5f7;
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", sans-serif;
  line-height: 1.2;
}
.peek-scene-shots {
  font-size: 11px;
  color: rgba(245,245,247,0.5);
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

/* ── Storyboard viewer wrapper ── */
/* ── Carousel wrapper ── */
.peek-board-wrap {
  position: relative;
  background: #091009;
  border-radius: 22px;
  border: 1px solid rgba(127,255,58,0.12);
  box-shadow: 0 8px 48px rgba(0,20,0,0.4), 0 0 0 1px rgba(127,255,58,0.06);
  overflow: hidden;
  padding: 28px 0;
}

/* ── Scrolling track (manual, no auto-animation) ── */
.peek-board {
  display: flex;
  gap: 20px;
  padding: 0 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.peek-board::-webkit-scrollbar { display: none; }

/* ── Prev / Next nav arrows ── */
.peek-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.peek-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(127,255,58,.35);
  background: rgba(127,255,58,.08);
  color: #7fff3a;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.peek-nav-btn:hover {
  background: rgba(127,255,58,.2);
  border-color: #7fff3a;
  box-shadow: 0 0 16px rgba(127,255,58,.3);
  transform: scale(1.08);
}
@media(max-width:768px){
  .peek-nav { display: none; }
}

/* ── Individual shot card ── */
.peek-shot-card {
  background: #0d160d;
  border-radius: 16px;
  border: 1.5px solid rgba(127,255,58,0.12);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  width: 300px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}
.peek-shot-card:hover {
  border-color: rgba(127,255,58,.45);
  box-shadow: 0 14px 40px rgba(127,255,58,.15);
  transform: translateY(-6px);
}

/* ── Single image wrapper ── */
.peek-shot-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: #0d160d;
  flex-shrink: 0;
}
.peek-shot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.peek-shot-card:hover .peek-shot-img {
  transform: scale(1.05);
}

/* ── Lightbox overlay ── */
.peek-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: peekFadeIn .25s ease;
}
.peek-lightbox.open { display: flex; }
@keyframes peekFadeIn {
  from { opacity:0; } to { opacity:1; }
}
.peek-lightbox-inner {
  background: #0d160d;
  border-radius: 20px;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,20,0,.7);
  border: 1px solid rgba(127,255,58,0.15);
  animation: peekSlideUp .3s ease;
}
@keyframes peekSlideUp {
  from { transform: translateY(30px); opacity:0; }
  to   { transform: translateY(0);    opacity:1; }
}

/* lightbox header */
.peek-lb-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(127,255,58,0.10);
  flex-shrink: 0;
}
.peek-lb-nav {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(127,255,58,0.18);
  background: rgba(127,255,58,0.06);
  color: #f5f5f7;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.peek-lb-nav:hover {
  border-color: rgba(127,255,58,.5);
  color: #7fff3a;
  background: rgba(127,255,58,.06);
}
.peek-lb-title {
  flex: 1;
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", sans-serif;
  font-size: clamp(15px,2vw,20px);
  font-weight: 600;
  color: #f5f5f7;
  letter-spacing: -0.003em;
  text-align: center;
}
.peek-lb-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: rgba(245,245,247,0.6);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.peek-lb-close:hover {
  border-color: #cc3366;
  color: #cc3366;
  background: rgba(204,51,102,.06);
}

/* dot indicator inside lightbox */
.peek-lb-dot-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px 0;
  flex-shrink: 0;
}
.peek-lb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(127,255,58,.2);
  cursor: pointer;
  transition: all .22s;
}
.peek-lb-dot.active {
  background: #7fff3a;
  transform: scale(1.35);
}

/* lightbox body: 3-col shot grid */
.peek-lb-body {
  overflow-y: auto;
  padding: 20px 24px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.peek-lb-shot {
  background: #0d160d;
  border: 1.5px solid rgba(127,255,58,0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s;
  cursor: pointer;
}
.peek-lb-shot:hover {
  border-color: rgba(127,255,58,.4);
  box-shadow: 0 6px 24px rgba(127,255,58,.12);
  transform: translateY(-3px);
}
.peek-lb-img-wrap {
  position: relative;
  overflow: hidden;
}
.peek-lb-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.peek-lb-shot:hover .peek-lb-img { transform: scale(1.06); }
.peek-lb-shot-meta {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.peek-lb-shot-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #7fff3a;
  letter-spacing: .04em;
  font-family: 'Inter', sans-serif;
}
.peek-lb-shot-desc {
  font-size: 11.5px;
  color: rgba(245,245,247,0.55);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  flex: 1;
}
.peek-lb-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 12px 12px;
}
.peek-lb-row {
  display: flex;
  gap: 5px;
}
.peek-lb-btn-ghost {
  flex: 1;
  padding: 5px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(245,245,247,0.7);
  font-size: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: .04em;
  transition: all .18s;
}
.peek-lb-btn-ghost:hover {
  border-color: rgba(127,255,58,.4);
  color: var(--purple);
  background: rgba(127,255,58,.05);
}
.peek-lb-btn-upload {
  flex: 1;
  padding: 5px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(135deg, #1db840, #7fff3a);
  color: #060a06;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: .04em;
  transition: opacity .2s;
}
.peek-lb-btn-upload:hover { opacity: .88; }
/* Varied cinematic gradient thumbnails */
.peek-img-c1 { background: linear-gradient(135deg,#8B4513,#D2691E,#FF8C00); }
.peek-img-c2 { background: linear-gradient(135deg,#1a1a2e,#16213e,#0f3460); }
.peek-img-c3 { background: linear-gradient(135deg,#2d1b69,#11998e,#38ef7d); }
.peek-img-c4 { background: linear-gradient(135deg,#373B44,#4286f4); }
.peek-img-c5 { background: linear-gradient(135deg,#f7971e,#ffd200); }
.peek-img-c6 { background: linear-gradient(135deg,#c94b4b,#4b134f); }

.peek-img-s1 { background: linear-gradient(135deg,#0f0c29,#302b63,#24243e); }
.peek-img-s2 { background: linear-gradient(135deg,#1e3c72,#2a5298); }
.peek-img-s3 { background: linear-gradient(135deg,#544a7d,#ffd452); }
.peek-img-s4 { background: linear-gradient(135deg,#005c97,#363795); }
.peek-img-s5 { background: linear-gradient(135deg,#403a3e,#be5869); }
.peek-img-s6 { background: linear-gradient(135deg,#0f2027,#203a43,#2c5364); }

.peek-img-a1 { background: linear-gradient(135deg,#e96c1e,#f7dc6f); }
.peek-img-a2 { background: linear-gradient(135deg,#1a1a1a,#434343); }
.peek-img-a3 { background: linear-gradient(135deg,#d31027,#ea384d); }
.peek-img-a4 { background: linear-gradient(135deg,#360033,#0b8793); }
.peek-img-a5 { background: linear-gradient(135deg,#4e54c8,#8f94fb); }
.peek-img-a6 { background: linear-gradient(135deg,#093028,#237a57); }

.peek-img-b1 { background: linear-gradient(135deg,#1d4350,#a43931); }
.peek-img-b2 { background: linear-gradient(135deg,#834d9b,#d04ed6); }
.peek-img-b3 { background: linear-gradient(135deg,#1e130c,#9a8478); }
.peek-img-b4 { background: linear-gradient(135deg,#003973,#e5e5be); }
.peek-img-b5 { background: linear-gradient(135deg,#2c3e50,#3498db); }
.peek-img-b6 { background: linear-gradient(135deg,#f46b45,#eea849); }

.peek-img-d1 { background: linear-gradient(135deg,#141e30,#243b55); }
.peek-img-d2 { background: linear-gradient(135deg,#c21500,#ffc500); }
.peek-img-d3 { background: linear-gradient(135deg,#43cea2,#185a9d); }
.peek-img-d4 { background: linear-gradient(135deg,#ee0979,#ff6a00); }
.peek-img-d5 { background: linear-gradient(135deg,#4facfe,#00f2fe); }
.peek-img-d6 { background: linear-gradient(135deg,#f093fb,#f5576c); }

.peek-img-e1 { background: linear-gradient(135deg,#30cfd0,#330867); }
.peek-img-e2 { background: linear-gradient(135deg,#a8edea,#fed6e3); }
.peek-img-e3 { background: linear-gradient(135deg,#5f72bd,#9b23ea); }
.peek-img-e4 { background: linear-gradient(135deg,#ffecd2,#fcb69f); }
.peek-img-e5 { background: linear-gradient(135deg,#2af598,#009efd); }
.peek-img-e6 { background: linear-gradient(135deg,#fc5c7d,#6a82fb); }

/* ── Shot metadata ── */
.peek-shot-meta {
  padding: 16px 18px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.peek-shot-label {
  font-size: 13px;
  font-weight: 700;
  color: #7fff3a;
  letter-spacing: .02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
html[data-theme="light"] .peek-shot-label {
  color: #1db840;
}
.peek-shot-desc {
  font-size: 13px;
  color: #fff;
  line-height: 1.65;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
.peek-shot-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}
.peek-action-row {
  display: flex;
  gap: 8px;
}
.peek-btn-ghost {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: .05em;
  transition: all .2s;
  white-space: nowrap;
}
.peek-btn-ghost:hover {
  border-color: rgba(127,255,58,.5);
  color: #7fff3a;
  background: rgba(127,255,58,.06);
}
.peek-btn-upload {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 2px solid #1db840;
  background: transparent;
  color: #1db840;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: .05em;
  transition: background .22s, color .22s, border-color .22s, transform .15s;
  box-shadow: none;
}
.peek-btn-upload:hover {
  background: rgba(29,184,64,.14);
  color: #7fff3a;
  border-color: #7fff3a;
  transform: translateY(-1px);
  box-shadow: none;
}

/* ── Scroll arrows — hidden for grid layout ── */
.peek-arrow { display: none; }

/* ── Dots — hidden (3-card grid needs no pagination) ── */
.peek-dots { display: none; }

/* ══ RESPONSIVE ══════════════════════════════ */

/* Desktop ≥ 1440px */
@media(min-width:1440px) {
  .peek-shot-card { width: 340px; }
  .peek-shot-img-wrap { height: 210px; }
  .peek-board { gap: 24px; animation-duration: 32s; }
}

/* Laptop ≤ 1280px */
@media(max-width:1280px) {
  .peek-shot-card { width: 290px; }
  .peek-shot-img-wrap { height: 185px; }
}

/* iPad landscape ≤ 1024px */
@media(max-width:1024px) {
  .peek-section { padding: 72px 0 60px; }
  .peek-shot-card { width: 270px; }
  .peek-shot-img-wrap { height: 172px; }
  .peek-lb-body { grid-template-columns: repeat(2,1fr); }
}

/* iPad portrait ≤ 768px */
@media(max-width:768px) {
  .peek-section { padding: 56px 0 48px; }
  .peek-inner { padding: 0 20px; }
  .peek-heading { font-size: 36px; }
  .peek-scene-selector { gap: 8px; }
  .peek-scene-card { min-width: 160px; padding: 8px 12px 8px 8px; }
  .peek-scene-thumb { width: 52px; height: 36px; }
  .peek-shot-card { width: 250px; }
  .peek-shot-img-wrap { height: 160px; }
  .peek-board-wrap { padding: 20px 0; }
  .peek-lb-body { grid-template-columns: repeat(2,1fr); padding: 16px; gap: 12px; }
  .peek-lb-title { font-size: 16px; }
}

/* Mobile ≤ 600px */
@media(max-width:600px) {
  .peek-section { padding: 48px 0 40px; }
  .peek-inner { padding: 0 16px; }
  .peek-heading { font-size: 28px; letter-spacing: -.02em; }
  .peek-subheading { font-size: 14px; }
  .peek-scene-selector { flex-direction: column; align-items: stretch; gap: 10px; overflow-x: unset; flex-wrap: nowrap; padding-bottom: 0; }
  .peek-scene-card { width: 100%; min-width: unset; flex-shrink: unset; }
  .peek-shot-card { width: 220px; }
  .peek-shot-img-wrap { height: 145px; }
  .peek-board { gap: 14px; padding: 0 16px; animation-duration: 20s; }
  .peek-board-wrap { border-radius: 16px; padding: 16px 0; }
  .peek-lb-body { grid-template-columns: 1fr; }
  .peek-lightbox-inner { max-height: 95vh; }
}

/* Small mobile ≤ 420px */
@media(max-width:420px) {
  .peek-heading { font-size: 24px; }
  .peek-shot-card { width: 190px; }
  .peek-shot-img-wrap { height: 125px; }
  .peek-shot-meta { padding: 10px 12px 4px; }
  .peek-shot-actions { padding: 6px 12px 10px; gap: 5px; }
  .peek-btn-ghost, .peek-btn-upload { font-size: 10px; padding: 6px 7px; }
  .peek-lb-body { padding: 12px; gap: 10px; }
}

