/* ============================================================
   HERO-PREMIUM.CSS
   Pure CSS 3D Orbital System — Meta / Google / TikTok
   Premium glassmorphic hero layout
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   HERO SECTION LAYOUT
   ══════════════════════════════════════════════════════════════ */

.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px var(--space-6) 80px;
  background: var(--color-bg-primary);
}

/* Background layer */
.hero-premium-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Kinetic dot grid */
.hero-premium-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(25,28,29,0.06) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Atmospheric orbs */
.hero-orb-premium {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  pointer-events: none;
}
.hero-orb-premium-1 {
  width: 60vw; height: 60vw;
  max-width: 780px; max-height: 780px;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(0,104,117,0.22) 0%, rgba(72,0,178,0.10) 45%, transparent 70%);
  filter: blur(80px);
  animation: orb-float-1 12s ease-in-out infinite;
}
.hero-orb-premium-2 {
  width: 50vw; height: 50vw;
  max-width: 640px; max-height: 640px;
  bottom: -15%; left: -8%;
  background: radial-gradient(circle, rgba(72,0,178,0.18) 0%, rgba(0,104,117,0.08) 45%, transparent 70%);
  filter: blur(70px);
  animation: orb-float-2 15s ease-in-out infinite;
}
.hero-orb-premium-3 {
  width: 40vw; height: 40vw;
  max-width: 500px; max-height: 500px;
  top: 30%; left: 25%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  filter: blur(60px);
  animation: orb-float-3 9s ease-in-out infinite 2s;
}

/* Top-edge fade */
.hero-premium-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, transparent 12%, transparent 88%, rgba(255,255,255,0.7) 100%),
    linear-gradient(to right, rgba(255,255,255,0.5) 0%, transparent 12%, transparent 88%, rgba(255,255,255,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Inner two-column layout */
.hero-premium-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-premium-inner {
    grid-template-columns: 55% 1fr;
    gap: var(--space-16);
    padding: 0 var(--space-10);
  }
}

/* ── Left: Text column ─────────────────────────────────────── */
.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Availability pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(0,104,117,0.08);
  border: 1px solid rgba(0,104,117,0.20);
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-secondary);
  margin-bottom: var(--space-8);
}
.hero-pill .hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 0 rgba(0,104,117,0.5);
  animation: premium-pulse 2.5s ease-out infinite;
}

/* Hooks */
.hero-hooks-premium {
  margin-bottom: var(--space-8);
}
.hero-hook-premium {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0;
}
.hero-hook-sep-premium {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin: var(--space-3) 0;
  display: block;
  font-weight: 500;
}

/* Intro paragraph */
.hero-intro-premium {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 560px;
  margin-bottom: var(--space-10);
}
.hero-name-accent-premium {
  color: var(--color-text-primary);
  font-weight: 700;
}

/* CTA + trust block */
.hero-cta-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* Trust items */
.hero-trust-premium {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero-trust-premium span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-check-premium {
  color: var(--color-secondary);
  font-weight: 700;
}

/* DIVISOR separating stat mini-cards from hooks */
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-kinetic);
  border-radius: var(--radius-full);
  margin: var(--space-8) 0;
}

/* ── Right: Visual column ──────────────────────────────────── */
.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1023px) {
  .hero-visual-col {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   CSS 3D ORBITAL SYSTEM
   Technique: ring rotates Z, icon counter-rotates Z + undoes X tilt
   ══════════════════════════════════════════════════════════════ */

.orbital-system {
  position: relative;
  width: 480px;
  height: 480px;
  perspective: 900px;
}

/* ── Central Glowing Sphere ───────────────────────────────── */
.orbital-sphere-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  z-index: 10;
}

.orbital-glow {
  position: absolute;
  inset: -55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,104,117,0.35) 0%, rgba(72,0,178,0.15) 45%, transparent 70%);
  animation: sphere-glow-pulse 4s ease-in-out infinite;
}

.orbital-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%,
      rgba(0,227,253,0.90) 0%,
      rgba(0,104,117,0.95) 38%,
      rgba(72,0,178,0.98) 75%
    );
  box-shadow:
    0 0 50px rgba(0,104,117,0.55),
    0 0 100px rgba(72,0,178,0.25),
    inset 0 0 40px rgba(0,227,253,0.15);
  position: relative;
  overflow: hidden;
}

/* Specular highlight */
.orbital-sphere::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 38%;
  height: 32%;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  filter: blur(10px);
}

/* Inner shimmer lines */
.orbital-sphere::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      -35deg,
      transparent 0px,
      transparent 12px,
      rgba(255,255,255,0.03) 12px,
      rgba(255,255,255,0.03) 13px
    );
  animation: sphere-rotate-lines 20s linear infinite;
}

/* Wireframe rings around sphere */
.orbital-wire {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 227, 253, 0.30);
  transform-origin: center;
  animation: wire-spin linear infinite;
}
.orbital-wire-1 {
  width: 186px; height: 186px;
  margin: -93px 0 0 -93px;
  border-color: rgba(0,227,253,0.25);
  animation-duration: 9s;
}
.orbital-wire-2 {
  width: 218px; height: 218px;
  margin: -109px 0 0 -109px;
  border-color: rgba(72,0,178,0.20);
  animation-duration: 14s;
  animation-direction: reverse;
}

/* ── Orbit Rings & Icons ──────────────────────────────────── */

/* Each plane — NO rotateX, orbit is flat, icons face camera directly */
.orbital-plane {
  position: absolute;
  inset: 0;
}
.orbital-plane-1 { transform: rotateZ(0deg); }
.orbital-plane-2 { transform: rotateZ(120deg); }
.orbital-plane-3 { transform: rotateZ(240deg); }

/* The ring itself spins */
.orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(25,28,29,0.10);
  animation: orbit-ring-spin linear infinite;
}
.orbital-ring-1 {
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  animation-duration: 16s;
  border-color: rgba(0,104,117,0.18);
}
.orbital-ring-2 {
  width: 340px; height: 340px;
  margin: -170px 0 0 -170px;
  animation-duration: 23s;
  animation-direction: reverse;
  border-color: rgba(72,0,178,0.15);
}
.orbital-ring-3 {
  width: 410px; height: 410px;
  margin: -205px 0 0 -205px;
  animation-duration: 19s;
  border-color: rgba(201,168,76,0.14);
}

/* Icon slot — counter-spin only on Z (no X tilt to undo) */
.orbital-icon-slot {
  position: absolute;
  top: -38px;
  left: 50%;
  width: 72px;
  height: 72px;
  animation: orbit-icon-upright linear infinite;
}
.orbital-ring-1 .orbital-icon-slot { animation-duration: 16s; }
.orbital-ring-2 .orbital-icon-slot {
  animation-duration: 23s;
  animation-direction: reverse;
}
.orbital-ring-3 .orbital-icon-slot { animation-duration: 19s; }

/* ══════════════════════════════════════════════════════════════
   3D APP ICON TILES
   Each card is a branded 3D cube tile:
   - gradient face (light top → dark bottom = curved surface)
   - stacked bottom box-shadows = visible thickness/edge
   - inner top highlight = gloss catch light
   - brand bloom below = colored ambient glow
   ══════════════════════════════════════════════════════════════ */

/* Base card — shared geometry only */
.orbital-icon-card {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  transition: transform var(--duration-default) var(--ease-spring);
}

/* Top gloss shared */
.orbital-icon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  border-radius: 20px 20px 0 0;
  pointer-events: none;
  z-index: 2;
}

/* ── META — White 3D tile + brand gradient icon ────────────── */
.orbital-ring-1 .orbital-icon-card {
  background: linear-gradient(150deg,
    #ffffff 0%,
    #f2f6ff 45%,
    #e6eeff 100%
  );
  border: 1px solid rgba(0,100,224,0.18);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,1),
    0 4px 0 #b0c4e8,
    0 6px 0 #a0b4d8,
    0 8px 0 #90a4c8,
    0 14px 40px rgba(0,100,224,0.38),
    0 5px 15px rgba(0,0,0,0.18);
}
.orbital-ring-1 .orbital-icon-card::before {
  background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, transparent 100%);
}
.orbital-ring-1 .icon-meta {
  width: 52px;
  height: 26px;
  filter: drop-shadow(0 3px 8px rgba(0,64,200,0.50));
  position: relative;
  z-index: 3;
}

/* ── GOOGLE — White premium 3D tile ───────────────────────── */
.orbital-ring-2 .orbital-icon-card {
  background: linear-gradient(150deg,
    #ffffff 0%,
    #f4f7ff 45%,
    #e8eeff 100%
  );
  border: 1px solid rgba(200,215,255,0.90);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,1),
    0 4px 0 #c0c8e8,
    0 6px 0 #b4bcd8,
    0 8px 0 #a8b0c8,
    0 14px 40px rgba(66,133,244,0.30),
    0 5px 15px rgba(0,0,0,0.18);
}
.orbital-ring-2 .orbital-icon-card::before {
  background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, transparent 100%);
}
.orbital-ring-2 .icon-google {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.20));
  position: relative;
  z-index: 3;
}

/* ── TIKTOK — Dark 3D tile ────────────────────────────────── */
.orbital-ring-3 .orbital-icon-card {
  background: linear-gradient(150deg,
    #2a2a2a 0%,
    #141414 45%,
    #030303 100%
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.10),
    0 4px 0 #000,
    0 6px 0 #000,
    0 8px 0 #000,
    0 14px 40px rgba(0,0,0,0.80),
    0 0 30px rgba(0,242,234,0.25),
    0 0 30px rgba(255,0,80,0.20);
}
.orbital-ring-3 .orbital-icon-card::before {
  background: linear-gradient(to bottom, rgba(255,255,255,0.09) 0%, transparent 100%);
}
.orbital-ring-3 .icon-tiktok {
  width: 30px;
  height: 30px;
  filter:
    brightness(0) invert(1)
    drop-shadow(-2px -2px 0 #00f2ea)
    drop-shadow( 2px  2px 0 #ff0050)
    drop-shadow(0 3px 8px rgba(0,0,0,0.70));
  position: relative;
  z-index: 3;
}

/* ═══════════════════════════════════════════════════════════
   ORBITAL KEYFRAMES
   ═══════════════════════════════════════════════════════════ */

@keyframes orbit-ring-spin {
  from { transform: translateX(-50%) translateY(-50%) translateX(50%) translateY(50%) rotateZ(0deg); }
  to   { transform: translateX(-50%) translateY(-50%) translateX(50%) translateY(50%) rotateZ(360deg); }
}

/* Ring rotation (simpler, top/left already set via margin) */
@keyframes orbit-ring-spin {
  from { transform: rotateZ(0deg); }
  to   { transform: rotateZ(360deg); }
}

/* Icon counter-rotates on Z only — flat orbit, always faces camera */
@keyframes orbit-icon-upright {
  from { transform: translateX(-50%) rotateZ(0deg); }
  to   { transform: translateX(-50%) rotateZ(-360deg); }
}

@keyframes sphere-glow-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.1); }
}

@keyframes sphere-rotate-lines {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes wire-spin {
  from { transform: rotateZ(0deg); }
  to   { transform: rotateZ(360deg); }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL INDICATOR (premium)
   ══════════════════════════════════════════════════════════════ */

.scroll-indicator-premium {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  text-decoration: none;
  color: var(--color-text-muted);
}
.scroll-indicator-premium .scroll-label-premium {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.scroll-indicator-premium .scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(25,28,29,0.20);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.scroll-indicator-premium .scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  animation: scroll-wheel-drop 2s ease-in-out infinite;
}

@keyframes scroll-wheel-drop {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80%       { transform: translateY(8px); opacity: 0; }
}

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

/* ── Mobile brand strip (replaces orbital on small screens) ── */
.hero-mobile-brands {
  display: none;
}

@media (max-width: 1023px) {
  .hero-premium {
    padding: 100px var(--space-6) 80px;
    text-align: center;
  }
  .hero-text-col {
    align-items: center;
  }
  .hero-pill { margin-bottom: var(--space-6); }
  .hero-intro-premium { margin-left: auto; margin-right: auto; }
  .hero-trust-premium { justify-content: center; }

  /* Show animated platform cards on tablet/mobile */
  .hero-mobile-visual { display: block; }
  .hero-mobile-brands { display: none; }
}

@media (max-width: 767px) {
  .hero-premium { padding: 90px var(--space-4) 70px; }
  .hero-hook-premium { font-size: clamp(20px, 6vw, 28px); }
  .hero-intro-premium { font-size: 15px; }
  .hero-pill { font-size: 10px; }
  .scroll-indicator-premium { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   ORB FLOAT KEYFRAMES (shared with main animations)
   ══════════════════════════════════════════════════════════════ */

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, 70px) scale(1.07); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(60px, -50px) scale(1.05); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(35px, -35px) scale(1.10); }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM PULSE
   ══════════════════════════════════════════════════════════════ */

@keyframes premium-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,104,117,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(0,104,117,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,104,117,0); }
}

/* ══════════════════════════════════════════════════════════════
   ANTI-GRAVITY FLOAT — Icon bob animations
   Mirrors Stitch Hero3D.tsx: position.y = sin(t * bobSpeed) * bobHeight
   Meta:   bobSpeed 1.5, bobHeight 0.3 → ~4.2s period, 12px
   Google: bobSpeed 2.0, bobHeight 0.4 → ~3.1s period, 16px
   TikTok: bobSpeed 1.2, bobHeight 0.25 → ~5.2s period, 10px
   ══════════════════════════════════════════════════════════════ */

@keyframes float-bob-meta {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes float-bob-google {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes float-bob-tiktok {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes sphere-body-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%       { transform: translate(-50%, -50%) translateY(-8px) scale(1.02); }
}

/* Meta (ring-1) — phase 0 */
.orbital-ring-1 .orbital-icon-card {
  animation: float-bob-meta 4.2s ease-in-out infinite;
}
/* Google (ring-2) — phase offset matches initialAngle 2π/3 */
.orbital-ring-2 .orbital-icon-card {
  animation: float-bob-google 3.1s ease-in-out infinite 1.0s;
}
/* TikTok (ring-3) — phase offset matches initialAngle 4π/3 */
.orbital-ring-3 .orbital-icon-card {
  animation: float-bob-tiktok 5.2s ease-in-out infinite 2.0s;
}
/* Sphere body float — mirrors drei <Float speed={2} floatIntensity={1}> */
.orbital-sphere-wrap {
  animation: sphere-body-float 6s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE ANIMATED PLATFORM CARDS
   Replaces the orbital on screens below 1024px.
   Reuses the same float-bob-* keyframes already defined above.
   ══════════════════════════════════════════════════════════════ */

.hero-mobile-visual {
  display: none; /* shown only in the ≤1023px media query */
  position: relative;
  margin-top: var(--space-8);
  height: 110px;
  width: 100%;
}

.mobile-orb-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 150px;
  background: radial-gradient(ellipse, rgba(0,104,117,0.18) 0%, rgba(72,0,178,0.10) 50%, transparent 70%);
  filter: blur(28px);
  border-radius: 50%;
  pointer-events: none;
}

.mobile-platform-cards {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  height: 100%;
}

.mobile-platform-card {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.mobile-platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  border-radius: 18px 18px 0 0;
  pointer-events: none;
  z-index: 2;
}

/* Meta card */
.mobile-card-meta {
  background: linear-gradient(150deg, #ffffff 0%, #f2f6ff 45%, #e6eeff 100%);
  border: 1px solid rgba(0,100,224,0.18);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,1),
    0 4px 0 #b0c4e8,
    0 12px 32px rgba(0,100,224,0.30),
    0 4px 12px rgba(0,0,0,0.12);
  animation: float-bob-meta 4.2s ease-in-out infinite;
}
.mobile-card-meta::before {
  background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, transparent 100%);
}
.mobile-icon-meta {
  width: 44px; height: 22px;
  filter: drop-shadow(0 2px 6px rgba(0,64,200,0.45));
  position: relative; z-index: 3;
}

/* Google card */
.mobile-card-google {
  background: linear-gradient(150deg, #ffffff 0%, #f4f7ff 45%, #e8eeff 100%);
  border: 1px solid rgba(200,215,255,0.90);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,1),
    0 4px 0 #c0c8e8,
    0 12px 32px rgba(66,133,244,0.25),
    0 4px 12px rgba(0,0,0,0.12);
  animation: float-bob-google 3.1s ease-in-out infinite 1.0s;
}
.mobile-card-google::before {
  background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, transparent 100%);
}
.mobile-icon-google {
  width: 34px; height: 34px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  position: relative; z-index: 3;
}

/* TikTok card */
.mobile-card-tiktok {
  background: linear-gradient(150deg, #2a2a2a 0%, #141414 45%, #030303 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.10),
    0 4px 0 #000,
    0 12px 32px rgba(0,0,0,0.65),
    0 0 20px rgba(0,242,234,0.22),
    0 0 20px rgba(255,0,80,0.18);
  animation: float-bob-tiktok 5.2s ease-in-out infinite 2.0s;
}
.mobile-card-tiktok::before {
  background: linear-gradient(to bottom, rgba(255,255,255,0.09) 0%, transparent 100%);
}
.mobile-icon-tiktok {
  width: 26px; height: 26px;
  filter:
    brightness(0) invert(1)
    drop-shadow(-1px -1px 0 #00f2ea)
    drop-shadow( 1px  1px 0 #ff0050);
  position: relative; z-index: 3;
}
