/* ─── TOKENS ─────────────────────────── */
:root {
  --c-bg:        #0B0E13;
  --c-surface:   #141820;
  --c-card:      #1C2130;
  --c-border:    rgba(255,255,255,0.08);
  --c-red:       #D72B2B;
  --c-red-hi:    #FF3B3B;
  --c-blue:      #6FA8FF;
  --c-text:      #E8EAF0;
  --c-muted:     #A7ADBE;
  --c-white:     #FFFFFF;

  --f-display: 'Barlow Condensed', sans-serif;
  --f-body:    'Inter', sans-serif;

  --r: 6px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-red); border-radius: 3px; }

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ─── HERO / LANDING SECTION ─────────────────────────── */
#hero {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 5vw;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: center top bottom;
  object-position: center top bottom;
  z-index: 0;
  background: var(--c-bg);
  padding-top: 38px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,14,19,0.92) 0%, rgba(11,14,19,0.6) 45%, rgba(11,14,19,0.35) 100%),
    linear-gradient(0deg, rgba(11,14,19,0.5) 0%, transparent 30%);
}

/* decorative corner bracket, echoes the reference design */
.hero-bracket {
  position: absolute;
  top: 10%; right: 6%;
  width: 90px; height: 90px;
  border-top: 3px solid var(--c-red);
  border-right: 3px solid var(--c-red);
  z-index: 2;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c-white);
}

.hero-h1 .accent {
  display: block;
  background: linear-gradient(90deg, var(--c-blue), #C9D9FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-divider {
  width: 100%;
  max-width: 460px;
  height: 3px;
  margin: 18px 0 26px;
  background: linear-gradient(90deg, var(--c-red), var(--c-blue));
  border-radius: 2px;
}

.hero-desc {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-text);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-red);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(215,43,43,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--c-red-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(215,43,43,0.45);
}
.btn-primary svg {
  width: 18px; height: 18px;
  transition: transform var(--transition);
}
.btn-primary:hover svg { transform: translateX(3px); }

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 860px) {
  #hero { min-height: 80vh; padding: 0 6vw; text-align: left; }
  .hero-bracket { display: none; }
  .hero-divider { max-width: 100%; }
}

@media (max-width: 500px) {
  .hero-desc { font-size: 14px; }
  .btn-primary { padding: 14px 26px; font-size: 14px; }
}
/* ─── TRUST / VALUE STRIP ─────────────────────── */
#trust-strip {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 36px 5vw;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 220px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(215,43,43,0.12);
  border: 1px solid rgba(215,43,43,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-red-hi);
}

.trust-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.3;
}

.trust-text span {
  display: block;
  font-size: 12.5px;
  color: var(--c-muted);
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--c-border);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-divider { display: none; }
}

@media (max-width: 600px) {
  .trust-row { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ─── PARALLAX SUPPORT ─────────────────────── */
.hero-bg-image,
.about-bg-image {
  will-change: transform;
  transform: scale(1.15); /* slight zoom so the drifting image never shows its edges */
}

/* ─── HERO CONTENT ENTRANCE ANIMATION ─────────────────────── */
.hero-content {
  opacity: 0;
  transform: translateX(-60px);
  animation: heroSlideIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
/* ─── SCROLL REVEAL: ABOUT CARDS ─────────────────────── */
.about-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each card slightly so they don't all pop in at once */
.about-card:nth-child(1) { transition-delay: 0s; }
.about-card:nth-child(2) { transition-delay: 0.15s; }
.about-card:nth-child(3) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .about-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── GALLERY MARQUEE SECTION ─────────────────────── */
#gallery-strip {
  background: var(--c-surface);
  padding: 80px 0 70px;
  border-top: 1px solid var(--c-border);
  overflow: hidden;
}

.gallery-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 5vw;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 10px;
}
.gallery-strip-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--c-red);
  border-radius: 2px;
}

.gallery-strip-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-white);
  letter-spacing: 0.01em;
  line-height: 1;
}

.gallery-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(215,43,43,0.3);
  flex-shrink: 0;
}
.gallery-strip-btn svg { width: 16px; height: 16px; }
.gallery-strip-btn:hover {
  background: var(--c-red-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(215,43,43,0.4);
}

/* ── Marquee outer (clips overflow) ── */
.marquee-outer {
  width: 100%;
  overflow: hidden;
}

/* ── Each row ── */
.marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 14px;
}
.marquee-row:last-child { margin-bottom: 0; }

/* ── Inner scrolling strip ── */
.marquee-inner {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  will-change: transform;
}

/* Row 1 scrolls left */
.marquee-left .marquee-inner {
  animation: marqueeLeft 30s linear infinite;
}

/* Row 2 scrolls right */
.marquee-right .marquee-inner {
  animation: marqueeRight 30s linear infinite;
}

/* Pause on hover */
.marquee-row:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Individual image items ── */
.marquee-item {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--c-card);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.marquee-item:hover img {
  transform: scale(1.06);
}

/* Pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee-left .marquee-inner,
  .marquee-right .marquee-inner {
    animation: none;
  }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  #gallery-strip { padding: 60px 0 56px; }
  .marquee-item { width: 240px; height: 170px; }
  .gallery-strip-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .marquee-item { width: 180px; height: 130px; }
  .marquee-inner { gap: 10px; }
  .marquee-row { margin-bottom: 10px; }
}

/* ─── NEWS MARQUEE SECTION ─────────────────────── */
#news-strip {
  background: var(--c-bg);
  padding: 80px 0 70px;
  border-top: 1px solid var(--c-border);
  overflow: hidden;
}

.news-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 5vw;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.news-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 10px;
}
.news-strip-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--c-red);
  border-radius: 2px;
}

.news-strip-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-white);
  letter-spacing: 0.01em;
  line-height: 1;
}

.news-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(215,43,43,0.3);
}
.news-strip-btn svg { width: 16px; height: 16px; }
.news-strip-btn:hover {
  background: var(--c-red-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(215,43,43,0.4);
}

/* ── Marquee track ── */
.news-marquee-outer {
  width: 100%;
  overflow: hidden;
}

.news-marquee-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: newsMarquee 35s linear infinite;
  will-change: transform;
}

.news-marquee-inner:hover {
  animation-play-state: paused;
}

@keyframes newsMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual news card in marquee ── */
.news-marquee-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.news-marquee-card:hover {
  border-color: rgba(215,43,43,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.news-marquee-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-surface);
  position: relative;
  flex-shrink: 0;
}

.news-marquee-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.news-marquee-card:hover .news-marquee-thumb img {
  transform: scale(1.05);
}

/* Play icon for YouTube */
.news-marquee-thumb .nm-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.news-marquee-card:hover .nm-play { opacity: 1; }
.nm-play svg { width: 44px; height: 44px; color: #fff; }

.news-marquee-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-marquee-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.news-marquee-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-red-hi);
  background: rgba(215,43,43,0.1);
  border: 1px solid rgba(215,43,43,0.15);
  padding: 3px 9px;
  border-radius: 100px;
}

.news-marquee-date {
  font-size: 11.5px;
  color: var(--c-muted);
}

.news-marquee-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.4;
  letter-spacing: 0.01em;
  flex: 1;
  margin-bottom: 12px;

  /* Clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-marquee-source {
  font-size: 12px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}
.news-marquee-source svg { width: 12px; height: 12px; color: var(--c-red); flex-shrink: 0; }

/* Pause on reduced motion */
@media (prefers-reduced-motion: reduce) {
  .news-marquee-inner { animation: none; }
}

/* Responsive */
@media (max-width: 860px) {
  #news-strip { padding: 60px 0 56px; }
  .news-marquee-card { width: 280px; }
  .news-strip-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .news-marquee-card { width: 240px; }
  .news-marquee-body { padding: 14px 14px 16px; }
  .news-marquee-title { font-size: 15px; }
}

/* ─── PROMOTIONAL POPUP ─────────────────────── */
#promo-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#promo-popup.active {
  opacity: 1;
  pointer-events: all;
}

/* Backdrop */
.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

/* Popup box */
.promo-popup-box {
  position: relative;
  z-index: 2;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
}

#promo-popup.active .promo-popup-box {
    transform: scale(1);
}

/* Close button */
.promo-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease;
}
.promo-popup-close:hover { background: var(--c-red); }

/* Image */
.promo-popup-box img {
  display: block;
  max-width: min(90vw, 500px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  object-fit: contain;
}

.promo-popup-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #E8EAF0;
}
.promo-popup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Body */
.promo-popup-body {
  padding: 28px 28px 30px;
}

.promo-popup-tag {
  display: inline-block;
  background: rgba(215,43,43,0.08);
  border: 1px solid rgba(215,43,43,0.2);
  color: var(--c-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.promo-popup-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #1A1F2B;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.promo-popup-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: #4A5568;
  margin-bottom: 24px;
}

/* Action buttons */
.promo-popup-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-popup-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 6px 20px rgba(215,43,43,0.3);
}
.promo-popup-btn-primary:hover {
  background: var(--c-red-hi);
  transform: translateY(-1px);
}

.promo-popup-btn-ghost {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #7A8096;
  cursor: pointer;
  padding: 12px 8px;
  transition: color 0.2s ease;
}
.promo-popup-btn-ghost:hover { color: #1A1F2B; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .promo-popup-box { border-radius: 12px; }
  .promo-popup-body { padding: 22px 20px 24px; }
  .promo-popup-btn-primary { width: 100%; justify-content: center; }
  .promo-popup-btn-ghost { width: 100%; text-align: center; }
  .promo-popup-actions { flex-direction: column; gap: 8px; }
}

/* ─── HERO FLOATING BUBBLES ─────────────────────── */
.hero-bubbles {
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  width: 280px;
  z-index: 3;
  pointer-events: none;
}

.hero-bubble {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  pointer-events: none;
}

/* Individual bubble positions and animations */
.hero-bubble:nth-child(1) {
  top: 12%;
  left: 10px;
  animation: bubbleFloat1 6s ease-in-out infinite;
}
.hero-bubble:nth-child(2) {
  top: 32%;
  right: 10px;
  animation: bubbleFloat2 7s ease-in-out infinite 1s;
}
.hero-bubble:nth-child(3) {
  top: 55%;
  left: 20px;
  animation: bubbleFloat3 5.5s ease-in-out infinite 0.5s;
}
.hero-bubble:nth-child(4) {
  top: 74%;
  right: 15px;
  animation: bubbleFloat4 6.5s ease-in-out infinite 1.5s;
}

/* Each bubble floats in a slightly different path */
@keyframes bubbleFloat1 {
  0%,100% { transform: translate(0, 0) rotate(-1deg); }
  25%      { transform: translate(8px, -12px) rotate(1deg); }
  50%      { transform: translate(-5px, -20px) rotate(-0.5deg); }
  75%      { transform: translate(10px, -8px) rotate(1.5deg); }
}
@keyframes bubbleFloat2 {
  0%,100% { transform: translate(0, 0) rotate(1deg); }
  25%      { transform: translate(-10px, -10px) rotate(-1deg); }
  50%      { transform: translate(6px, -18px) rotate(0.5deg); }
  75%      { transform: translate(-8px, -6px) rotate(-1.5deg); }
}
@keyframes bubbleFloat3 {
  0%,100% { transform: translate(0, 0) rotate(-0.5deg); }
  25%      { transform: translate(6px, -14px) rotate(1deg); }
  50%      { transform: translate(-8px, -22px) rotate(-1deg); }
  75%      { transform: translate(4px, -10px) rotate(0.5deg); }
}
@keyframes bubbleFloat4 {
  0%,100% { transform: translate(0, 0) rotate(1deg); }
  25%      { transform: translate(-6px, -12px) rotate(-0.5deg); }
  50%      { transform: translate(10px, -16px) rotate(1deg); }
  75%      { transform: translate(-4px, -8px) rotate(-1deg); }
}

/* Icon inside bubble */
.bubble-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bubble-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* Text inside bubble */
.bubble-text,
.bubble-stat {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.01em;
}
.bubble-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.03em;
}
/* ─── HERO BUBBLES RESPONSIVE ─────────────────────── */

/* Hide floating bubbles on smaller screens */
@media (max-width: 800px) {
  .hero-bubbles { display: none; }
}

/* ── Mobile stat strip — shows below hero content on small screens ── */
.hero-stats-strip {
  display: none;
}

@media (max-width: 800px) {
  .hero-stats-strip {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 20px 5vw 4px;
    background: var(--c-bg);
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-top: 1px solid var(--c-border);
  }
  .hero-stats-strip::-webkit-scrollbar { display: none; }
}

.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 12px 16px;
  flex-shrink: 0;
  min-width: 150px;
}

.hero-stat-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-pill-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.hero-stat-pill-text,
.hero-stat-pill-num {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero-stat-pill-label {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bubble { animation: none; }
}