/* ═══════════════════════════════════════════════════════════════
   ReconAI — showcase.css
   Showcase page: hero, ticker, carousel, gallery, CTA.
═══════════════════════════════════════════════════════════════ */

/* ── SHOWCASE HERO ───────────────────────────────────────────── */
.showcase-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(224,32,47,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(0,118,188,0.06) 0%, transparent 50%);
}

/* Grid overlay */
.showcase-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,118,188,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,118,188,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.6s var(--ease) 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
}

.showcase-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 10vw, 10rem);
  line-height: 0.87;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.6s var(--ease) 0.25s both;
}
.line-blue { color: var(--blue); }

.showcase-hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s var(--ease) 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.6s var(--ease) 0.55s both;
}

.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s var(--ease) 0.7s both;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.hero-meta-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker-strip {
  background: rgba(0, 118, 188, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 24s linear infinite;
}
.ticker-track span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.ticker-sep { color: var(--blue) !important; opacity: 0.6; }

/* ── CAROUSEL ────────────────────────────────────────────────── */
.carousel-section {
  padding: 80px 48px;
  background: var(--surface);
}
.carousel-viewport {
  width: 100%;
}

.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.c-nav-btn {
  width: 40px; height: 40px;
  background: var(--card);
  border: 1px solid var(--border-mid);
  color: var(--text);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.c-nav-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}
.c-nav-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.c-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.c-nav-count {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  min-width: 52px;
  text-align: center;
}

/* ── CAROUSEL CARDS ──────────────────────────────────────────── */
.c-card {
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  height: auto;
}
.c-card:hover { border-color: var(--border-mid); }

.c-visual {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.c-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-cam-label {
  position: absolute;
  top: 12px; left: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.52rem;
  color: rgba(0,118,188,0.85);
  letter-spacing: 0.1em;
  z-index: 10;
}
.c-cam-rec {
  position: absolute;
  top: 12px; right: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.52rem;
  color: var(--rec-red);
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 5px;
  z-index: 10;
}
.c-cam-rec::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rec-red);
  animation: pulse 1.2s ease-in-out infinite;
}

.c-corner-br {
  position: absolute;
  bottom: 12px; right: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.5rem;
  color: rgba(224,32,47,0.38);
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: right;
  z-index: 10;
}

.c-body { padding: 28px 24px; }

.c-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(224,32,47,0.28);
  display: inline-block;
  margin-bottom: 14px;
}

.c-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.c-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.c-stats {
  display: flex;
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.c-stat { display: flex; flex-direction: column; gap: 4px; }
.c-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.c-stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── IMAGE SLIDE CARDS ───────────────────────────────────────── */
.c-card--slide .c-visual {
  aspect-ratio: unset;
  width: 100%;
  height: auto;
  background: var(--bg);
  overflow: visible;
}
.c-card--slide .c-visual img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  user-select: none;
  pointer-events: none;
}
.c-slide-caption {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}

@media (max-width: 767px) {
  .carousel-section {
    padding: 48px 16px;
  }
}

@media (max-width: 639px) {
  .carousel-section {
    overflow: hidden;
  }
  #carouselViewport {
    overflow: visible;
  }
}


/* ── CAROUSEL DOTS ───────────────────────────────────────────── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.c-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-mid);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.c-dot:hover { background: var(--muted); }
.c-dot.active { background: var(--accent); transform: scale(1.4); }
.c-dot:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ── CARD VISUALS — RADAR ────────────────────────────────────── */
.v-radar {
  background: radial-gradient(circle at center, rgba(0,118,188,0.06) 0%, transparent 70%);
}
.radar-rings {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.r-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,118,188,0.2);
}
.rr1 { width: 88%; height: 88%; }
.rr2 { width: 64%; height: 64%; border-color: rgba(0,118,188,0.16); }
.rr3 { width: 40%; height: 40%; border-color: rgba(0,118,188,0.22); }
.r-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  top: 6%;
  left: 50%;
  transform-origin: 0 44%;
  animation: orbit 8s linear infinite;
}
.r-dot2 {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  top: 28%;
  left: 75%;
  transform-origin: -37% 22%;
  animation: orbit 14s linear infinite reverse;
}
.r-sweep {
  position: absolute;
  width: 50%; height: 50%;
  top: 0; left: 50%;
  transform-origin: 0% 100%;
  background: conic-gradient(from 0deg, transparent 330deg, rgba(0,118,188,0.2) 360deg);
  animation: spin 4s linear infinite;
}
.r-center {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--blue-glow);
}
.r-blip {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
.b1 { top: 30%; left: 60%; }
.b2 { top: 55%; left: 25%; animation-delay: 0.6s; }
.b3 { top: 70%; left: 68%; animation-delay: 1.2s; }

/* ── CARD VISUALS — FACE ─────────────────────────────────────── */
.v-face {
  background: radial-gradient(circle at center, rgba(224,32,47,0.04) 0%, transparent 70%);
}
.face-scan-area {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.face-box {
  width: 120px; height: 140px;
  border: 1px solid rgba(224,32,47,0.4);
  position: relative;
}
.face-box-br, .face-box-tr {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--accent);
  border-style: solid;
}
.face-box-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.face-box-tr { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.face-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
  animation: scan 2s ease-in-out infinite;
  top: 50%;
}
.face-points {
  position: absolute;
  inset: 0;
}
.fp {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
  animation: pulse 1.8s ease-in-out infinite;
}
.fp:nth-child(1) { top: 20%; left: 30%; }
.fp:nth-child(2) { top: 20%; left: 70%; }
.fp:nth-child(3) { top: 40%; left: 50%; }
.fp:nth-child(4) { top: 55%; left: 28%; }
.fp:nth-child(5) { top: 55%; left: 72%; }
.fp:nth-child(6) { top: 68%; left: 40%; }
.fp:nth-child(7) { top: 68%; left: 60%; }
.fp:nth-child(8) { top: 78%; left: 50%; }
.face-id-tag {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.5rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  white-space: nowrap;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ── CARD VISUALS — WAVEFORM ─────────────────────────────────── */
.v-wave {
  background: radial-gradient(circle at center, rgba(0,118,188,0.05) 0%, transparent 70%);
}
.wave-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.wave-line {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,118,188,0.5), transparent);
}
.wave-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 80px;
}
.wave-bar {
  width: 4px;
  height: var(--h, 20px);
  background: var(--blue);
  opacity: 0.75;
  border-radius: 2px;
  animation: waveAnim 1.2s ease-in-out infinite alternate;
}
.wave-bar:nth-child(odd)  { animation-delay: 0.2s; background: var(--accent); opacity: 0.6; }
.wave-bar:nth-child(3n)   { animation-delay: 0.4s; }
.wave-bar:nth-child(4n)   { animation-delay: 0.6s; }
@keyframes waveAnim {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1.1); }
}

/* ── CARD VISUALS — THERMAL ──────────────────────────────────── */
.v-thermal { background: #07040a; }
.thermal-canvas {
  position: absolute;
  inset: 0;
}
.t-sig {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}
.t-sig:nth-child(1) { width: 100px; height: 100px; background: rgba(255,100,0,0.45); top: 20%; left: 25%; }
.t-sig:nth-child(2) { width: 70px;  height: 70px;  background: rgba(255,50,0,0.35);  top: 40%; left: 55%; }
.t-sig:nth-child(3) { width: 50px;  height: 50px;  background: rgba(255,160,0,0.30); top: 60%; left: 30%; }
.t-sig:nth-child(4) { width: 40px;  height: 40px;  background: rgba(200,30,0,0.25);  top: 30%; left: 70%; }
.t-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,100,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,100,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.t-temp-badge {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.52rem;
  color: var(--thermal);
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.6);
  padding: 3px 8px;
  border: 1px solid rgba(255,100,0,0.3);
}
.t-scale {
  position: absolute;
  right: 14px; top: 20%; bottom: 20%;
  width: 6px;
  background: linear-gradient(to bottom, #ff3300, #ff8800, #ffcc00, #00ccff, #0033ff);
  border-radius: 3px;
  opacity: 0.6;
}

/* ── CARD VISUALS — MOTION ───────────────────────────────────── */
.v-motion {
  background: radial-gradient(circle at center, rgba(0,118,188,0.04) 0%, transparent 70%);
}
.motion-field { position: absolute; inset: 0; }
.m-node {
  position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: rgba(0,118,188,0.3);
}
.m-node:nth-child(1) { top: 30%; left: 35%; animation: pulse 1.8s ease-in-out infinite; }
.m-node:nth-child(2) { top: 55%; left: 60%; animation: pulse 2.2s ease-in-out infinite 0.4s; }
.m-node:nth-child(3) { top: 45%; left: 20%; animation: pulse 1.6s ease-in-out infinite 0.8s; }
.m-trail {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.4;
}
.m-trail:nth-child(4) { width: 80px; top: 33%; left: 20%; transform: rotate(-15deg); }
.m-trail:nth-child(5) { width: 60px; top: 57%; left: 44%; transform: rotate(20deg); }
.m-trail:nth-child(6) { width: 50px; top: 47%; left: 10%; transform: rotate(-30deg); }
.m-zone-box {
  position: absolute;
  top: 18%; left: 10%;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.48rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  border: 1px solid rgba(224,32,47,0.3);
  padding: 4px 8px;
  background: rgba(224,32,47,0.05);
}
.m-zone-box2 {
  position: absolute;
  bottom: 18%; right: 10%;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.48rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  border: 1px solid rgba(0,118,188,0.3);
  padding: 4px 8px;
  background: rgba(0,118,188,0.05);
}

/* ── CARD VISUALS — LPR ──────────────────────────────────────── */
.v-lpr {
  background: radial-gradient(circle at center, rgba(224,32,47,0.04) 0%, transparent 70%);
}
.lpr-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.lpr-plate-zone {
  position: relative;
  width: 200px;
  background: var(--white);
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: center;
}
.lpr-br, .lpr-tr {
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--accent);
  border-style: solid;
}
.lpr-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.lpr-tr { top: -1px;    left: -1px;  border-width: 2px 0 0 2px; }
.lpr-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: rgba(224,32,47,0.6);
  animation: scan 1.5s ease-in-out infinite;
  top: 50%;
}
.lpr-plate-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: #111;
  font-weight: 700;
  position: relative; z-index: 1;
  transition: opacity 0.3s;
}
.lpr-conf-bar {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.52rem;
  color: var(--blue);
  letter-spacing: 0.1em;
}
.lpr-info {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.5rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.lpr-info span { color: var(--text); }

/* ── GALLERY SECTION ─────────────────────────────────────────── */
.gallery-section {
  padding: 80px 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 4px;
  margin-top: 48px;
}

/* Cells */
.g-cell {
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.g-cell:hover { border-color: var(--border-mid); }

.g-big   { grid-column: span 2; grid-row: span 2; }
.g-med   { grid-column: span 1; grid-row: span 1; }
.g-small { grid-column: span 1; grid-row: span 1; }
.g-wide  { grid-column: span 2; grid-row: span 1; }

/* Stat cells */
.g-stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.g-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.g-stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Radar in big cell */
.g-radar-wrap {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.g-mini-rings {
  position: relative;
  width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.g-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,118,188,0.18);
}
.g-ring:nth-child(1) { width: 100%; height: 100%; }
.g-ring:nth-child(2) { width: 68%; height: 68%; border-color: rgba(224,32,47,0.15); }
.g-ring:nth-child(3) { width: 38%; height: 38%; }
.g-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  top: 0; left: 50%;
  transform-origin: 0 110px;
  animation: orbit 8s linear infinite;
}
.g-sweep {
  position: absolute;
  width: 50%; height: 50%;
  top: 0; left: 50%;
  transform-origin: 0% 100%;
  background: conic-gradient(from 0deg, transparent 320deg, rgba(0,118,188,0.18) 360deg);
  animation: spin 4s linear infinite;
}
.g-center {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--blue);
}

.g-label {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
}
.g-label-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.g-label-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* Scan cells */
.g-scan-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-scan-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(0,118,188,0.03) 10px, rgba(0,118,188,0.03) 11px);
}
.g-scan-bg--red {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(224,32,47,0.03) 10px, rgba(224,32,47,0.03) 11px);
}
.g-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,118,188,0.5), transparent);
  animation: scan 3s ease-in-out infinite;
  top: 50%;
}
.g-scan-line--blue {
  background: linear-gradient(90deg, transparent, rgba(0,118,188,0.5), transparent);
}
.g-scan-text {
  position: relative;
  z-index: 2;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 2;
  text-align: center;
  padding: 0 16px;
}

/* ── CTA SECTION ─────────────────────────────────────────────── */
.showcase-cta {
  padding: 100px 48px;
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-rings-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-rings {
  position: relative;
  width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.cta-ring:nth-child(1) { width: 100%; height: 100%; border: 1px solid rgba(0,118,188,0.18); }
.cta-ring:nth-child(2) { width: 72%; height: 72%; border: 1px dashed rgba(224,32,47,0.18); animation-duration: 12s; animation-direction: reverse; }
.cta-ring:nth-child(3) { width: 44%; height: 44%; border: 1px solid rgba(0,118,188,0.24); animation-duration: 7s; }
.cta-dot {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  top: 0; left: 50%;
  transform-origin: 0 130px;
  animation: orbit 20s linear infinite;
}
.cta-dot2 {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue);
  top: 14%; left: 80%;
  transform-origin: -90px 80px;
  animation: orbit 12s linear infinite reverse;
}
.cta-sweep {
  position: absolute;
  width: 50%; height: 50%;
  top: 0; left: 50%;
  transform-origin: 0% 100%;
  background: conic-gradient(from 0deg, transparent 330deg, rgba(0,118,188,0.15) 360deg);
  animation: spin 4s linear infinite;
}
.cta-center-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid rgba(0,118,188,0.28);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 0 30px rgba(0,118,188,0.1);
}
.cta-center-logo img {
  width: 50px;
  filter: drop-shadow(0 0 8px rgba(224,32,47,0.5));
}

.cta-content { display: flex; flex-direction: column; gap: 0; }
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── SHOWCASE FOOTER NOTE ────────────────────────────────────── */
.showcase-footer-note {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sfn-left {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.sfn-right { display: flex; gap: 24px; align-items: center; }
.sfn-link {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.sfn-link:hover { color: var(--blue); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .showcase-hero { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .carousel-section { padding: 60px 20px; }
  .gallery-section  { padding: 60px 20px; }
  .showcase-cta     { padding: 60px 20px; grid-template-columns: 1fr; }
  .cta-rings-wrap   { display: none; }

  /* .c-card min-width intentionally unchanged — 2-up layout preserved at all sizes */

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
  .g-big { grid-column: span 2; grid-row: span 2; }
  .g-wide { grid-column: span 2; }

  .showcase-footer-note { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
}

@media (max-width: 600px) {
  .carousel-header { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 140px; }
  .g-big, .g-wide { grid-column: span 1; grid-row: span 1; }
}
