/* ═══════════════════════════════════════════════════════════════════
   tiktok.css — TikTok page
   ═══════════════════════════════════════════════════════════════════ */

/* ── TikTok brand tokens ──────────────────────────────────────────── */
:root {
  --tt-red:      #EE1D52;
  --tt-cyan:     #69C9D0;
  --tt-black:    #010101;
  --tt-red-glow: rgba(238,29,82,0.2);
  --tt-cyan-glow:rgba(105,201,208,0.15);
}

/* TikTok gradient text utility */
.tt-gradient-text {
  background: linear-gradient(135deg, var(--tt-red), var(--tt-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Button variants ──────────────────────────────────────────────── */
.btn--tiktok {
  background: var(--tt-black);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

.btn--tiktok::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--tt-red), var(--tt-cyan));
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn--tiktok:hover::after { opacity: 0.18; }
.btn--tiktok:hover {
  border-color: var(--tt-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--tt-red-glow);
}

.btn--tiktok > * { position: relative; z-index: 1; }

[data-theme="light"] .btn--tiktok {
  background: var(--tt-black);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--tt-black);
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn--white:hover {
  background: #EDEDED;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.btn--white::before { display: none; }

.btn--ghost-white {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}
.btn--ghost-white:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.btn--ghost-white::before { display: none; }

/* ── Body override for TikTok page ────────────────────────────────── */
.tt-page {
  background: var(--bg);
}

/* ══════════════════════════════════════════════════════════════════
   FEATURE HERO
═══════════════════════════════════════════════════════════════════ */
.tt-feature {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Ambient background */
.tt-feature__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tt-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.tt-orb--red  { width: 600px; height: 600px; background: var(--tt-red);  opacity: 0.09; top: -150px; right: -150px; }
.tt-orb--cyan { width: 400px; height: 400px; background: var(--tt-cyan); opacity: 0.08; bottom: -80px; left: -100px; }
.tt-orb--gold { width: 250px; height: 250px; background: var(--gold);    opacity: 0.05; top: 60%; left: 35%; }

.tt-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Feature grid layout */
.tt-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: 3rem 2.5rem;
}

/* ── Left copy ─────────────────────────────────────────────────────── */

/* Profile chip */
.tt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  background: rgba(238,29,82,0.1);
  border: 1px solid rgba(238,29,82,0.22);
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.tt-chip svg { width: 17px; height: 17px; color: var(--tt-red); flex-shrink: 0; }

.tt-chip span {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-2);
}

.tt-chip__live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.55rem;
  background: var(--tt-red);
  color: #fff !important;
  border-radius: 100px;
  font-size: 0.62rem !important;
  font-weight: 700;
  letter-spacing: 0.12em !important;
}

.tt-chip__dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Hero title */
.tt-feature__title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.tt-feature__title em {
  font-style: italic;
  color: var(--gold);
}

.tt-feature__desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}

/* Metrics row */
.tt-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-glass-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.tt-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.tt-metric svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.tt-metric__val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.tt-metric__lbl {
  display: block;
  font-size: 0.72rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

.tt-metric__sep {
  width: 1px;
  height: 36px;
  background: var(--border-2);
  flex-shrink: 0;
}

.tt-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── App-window creator card ────────────────────────────────────────── */
.tt-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Ambient glow behind card */
.tt-card-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    var(--tt-red-glow),
    var(--tt-cyan-glow),
    transparent 70%
  );
  filter: blur(24px);
  z-index: 0;
  animation: cardGlow 5s ease-in-out infinite alternate;
}

@keyframes cardGlow {
  0%   { opacity: 0.6; transform: scale(0.96); }
  100% { opacity: 1;   transform: scale(1.04); }
}

/* The card itself — looks like a floating browser/app window */
.tt-creator-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(238,29,82,0.2),
    0 30px 80px rgba(0,0,0,0.5);
  background: var(--tt-black);
  animation: cardFloat 7s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Top browser-style bar */
.tt-creator-card__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

[data-theme="light"] .tt-creator-card__bar { background: #1A1A1A; }

/* macOS traffic-light dots */
.tt-creator-card__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.tt-creator-card__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}

.tt-creator-card__dots span:nth-child(1) { background: #FF5F57; }
.tt-creator-card__dots span:nth-child(2) { background: #FEBC2E; }
.tt-creator-card__dots span:nth-child(3) { background: #28C840; }

/* URL bar */
.tt-creator-card__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.28rem 0.75rem;
}

.tt-creator-card__url svg {
  width: 12px; height: 12px;
  color: var(--tt-red);
  flex-shrink: 0;
}

.tt-creator-card__url span {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* LIVE pill */
.tt-creator-card__live {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.55rem;
  background: var(--tt-red);
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  flex-shrink: 0;
}

/* Embed body — let TikTok control its height naturally */
.tt-creator-card__body {
  background: var(--tt-black);
  overflow: hidden;
  line-height: 0;
}

.tt-creator-card__body .tiktok-embed {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  width: 100% !important;
  min-width: unset !important;
}

.tt-creator-card__body iframe {
  display: block;
  border: none !important;
}

/* ── Floating badges ─────────────────────────────────────────────── */
.tt-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  z-index: 5;
  white-space: nowrap;
}

.tt-badge svg  { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.tt-badge span { font-family: 'DM Mono', monospace; font-size: 0.66rem; letter-spacing: 0.09em; color: var(--text-2); }

.tt-badge--top    { top: -14px; right: 24px; }
.tt-badge--bottom { bottom: -14px; left: 24px; }

.tt-badge__pulse {
  width: 7px; height: 7px;
  background: var(--tt-red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%   { box-shadow: 0 0 0 0 rgba(238,29,82,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(238,29,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(238,29,82,0); }
}

/* ══════════════════════════════════════════════════════════════════
   MARQUEE BAND
═══════════════════════════════════════════════════════════════════ */
.tt-marquee-band {
  overflow: hidden;
  background: linear-gradient(135deg, var(--tt-red) 0%, #C01040 50%, var(--tt-red) 100%);
  padding-block: 0.75rem;
  position: relative;
}

.tt-marquee-band__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
  padding-right: 1.5rem;
}

.tt-marquee-band__inner span {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.tt-marquee-band__inner .sep {
  font-size: 0.45rem;
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════════════
   RECENT VIDEOS FEED
═══════════════════════════════════════════════════════════════════ */
.tt-feed {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: var(--bg-2);
}

.tt-feed__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.tt-feed__head-left .label { margin-bottom: 0.5rem; }
.tt-feed__head-left .section-title { margin-bottom: 0; font-size: clamp(1.8rem, 4vw, 2.8rem); }

.tt-feed__cta-btn { align-self: flex-end; }

/* Video grid */
.tt-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Skeleton loading */
.tt-skeleton {
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.tt-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--bg-glass-2) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Video embed cells */
.tt-video-cell {
  position: relative;
  height: 560px;          /* Fixed height — prevents runaway iframe height */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--tt-black);
  border: 1px solid var(--border);
  transition: transform var(--t-med), box-shadow var(--t-med);
  cursor: pointer;
}

.tt-video-cell:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1.5px rgba(238,29,82,0.35);
}

/* Interaction blocker overlay — prevents scroll trap inside iframe */
.tt-video-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
  background: transparent;
}

/* Tap-to-interact hint shown when not yet activated */
.tt-video-cell::after {
  content: 'Tap to interact';
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.55);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  transition: opacity var(--t-med);
}

/* Once activated — remove overlay and hint */
.tt-video-cell.is-active::before,
.tt-video-cell.is-active::after {
  display: none;
}

/* Activated state: red top border accent */
.tt-video-cell.is-active {
  box-shadow: 0 0 0 2px var(--tt-red), 0 20px 60px rgba(238,29,82,0.2);
  transform: translateY(-5px);
}

.tt-video-cell .tiktok-embed {
  display: block;
  width: 100% !important;
  min-width: unset !important;
  max-width: unset !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.tt-video-cell iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 560px;
  border: none !important;
  display: block;
  pointer-events: none; /* controlled by overlay */
}

.tt-video-cell.is-active iframe {
  pointer-events: auto;
}

/* ── Link-tile cards (shown when no video IDs are configured) ────── */
.tt-link-tile {
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition:
    opacity 0.5s ease var(--tile-delay, 0s),
    transform 0.5s ease var(--tile-delay, 0s),
    box-shadow var(--t-med);
}

.tt-link-tile.tt-tile-reveal {
  opacity: 1;
  transform: none;
  --tile-delay: calc(var(--tile-i, 0) * 0.06s);
}

.tt-link-tile:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1.5px var(--tt-red);
}

.tt-link-tile__bg {
  position: absolute;
  inset: 0;
  /* Unique dark gradient per tile using hue from JS */
  background:
    linear-gradient(
      calc(120deg + var(--hue, 0) * 1deg),
      hsl(calc(220 + var(--hue, 0) * 0.3), 40%, 12%),
      hsl(calc(240 + var(--hue, 0) * 0.5), 50%, 8%)
    );
  transition: transform 0.5s ease;
}

.tt-link-tile:hover .tt-link-tile__bg { transform: scale(1.05); }

/* Subtle dot pattern overlay */
.tt-link-tile__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* TikTok red gradient stripe at top */
.tt-link-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tt-red), var(--tt-cyan));
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.tt-link-tile:hover::before { opacity: 1; }

.tt-link-tile__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 3;
  padding: 1.5rem;
}

/* Play button circle */
.tt-link-tile__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(238,29,82,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(238,29,82,0.15), 0 8px 30px rgba(238,29,82,0.3);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  flex-shrink: 0;
}

.tt-link-tile:hover .tt-link-tile__play {
  transform: scale(1.12);
  box-shadow: 0 0 0 12px rgba(238,29,82,0.12), 0 12px 40px rgba(238,29,82,0.5);
}

.tt-link-tile__play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 3px;
}

/* Username chip at bottom */
.tt-link-tile__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.tt-link-tile__icon svg {
  width: 13px;
  height: 13px;
  color: var(--tt-red);
  display: block;
}

.tt-link-tile__meta span:last-child {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
}

/* Fallback */
.tt-feed__fallback { margin-top: 1rem; }

.tt-feed__fallback-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
}

.tt-feed__fallback-inner svg {
  width: 52px; height: 52px;
  color: var(--tt-red);
  opacity: 0.6;
}

.tt-feed__fallback-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
}

.tt-feed__fallback-inner p {
  font-size: 0.9rem;
  color: var(--text-2);
  max-width: 320px;
}

/* ══════════════════════════════════════════════════════════════════
   FOLLOW BANNER
═══════════════════════════════════════════════════════════════════ */
.tt-banner {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem;
  background: var(--tt-black);
}

[data-theme="light"] .tt-banner { background: #0C0C0C; }

.tt-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tt-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.tt-banner__orb--l { width: 400px; height: 400px; background: var(--tt-red);  opacity: 0.12; left: -100px; top: 50%; transform: translateY(-50%); }
.tt-banner__orb--r { width: 400px; height: 400px; background: var(--tt-cyan); opacity: 0.1;  right: -100px; top: 50%; transform: translateY(-50%); }

.tt-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.tt-banner__logo {
  width: 72px; height: 72px;
  background: var(--tt-red);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 40px rgba(238,29,82,0.4);
}

.tt-banner__logo svg { width: 38px; height: 38px; color: #fff; }

.tt-banner__copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tt-banner__copy p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  max-width: 420px;
  line-height: 1.65;
}

.tt-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

/* ── Tablet (≤1024px) ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tt-feature {
    padding-top: 80px;
  }

  .tt-feature__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding-block: 5rem 2.5rem;
  }

  /* Card goes above copy on tablet */
  .tt-card-wrap { order: -1; }

  .tt-chip, .tt-feature__actions { margin-inline: auto; }
  .tt-feature__desc              { margin-inline: auto; }
  .tt-feature__actions           { justify-content: center; }

  .tt-metrics {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tt-creator-card { max-width: 420px; }

  .tt-badge--top    { top: -12px; right: 10px; }
  .tt-badge--bottom { bottom: -12px; left: 10px; }

  .tt-feed__grid { grid-template-columns: repeat(3, 1fr); }

  .tt-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    justify-items: center;
  }

  .tt-banner__copy p    { margin-inline: auto; }
  .tt-banner__actions   { flex-direction: row; }
}

/* ── Mobile (≤768px) ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .tt-feature__grid   { padding-block: 4.5rem 2rem; gap: 2rem; }

  .tt-creator-card    { max-width: 360px; }

  .tt-metrics         { gap: 0.75rem; }
  .tt-metric          { flex: 0 0 calc(50% - 1rem); }
  .tt-metric__sep     { display: none; }

  .tt-feed__head      { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .tt-feed__cta-btn   { align-self: flex-start; }
  .tt-feed__grid      { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .tt-marquee-band__inner span { font-size: 0.65rem; }
}

/* ── Small mobile (≤480px) ─────────────────────────────────────── */
@media (max-width: 480px) {
  .tt-feature__grid   { padding-block: 4rem 1.5rem; }

  .tt-chip            { font-size: 0.7rem; }
  .tt-creator-card    { max-width: 100%; }
  .tt-card-glow       { display: none; }

  .tt-metrics         { padding: 1rem; gap: 0.5rem; }
  .tt-metric          { flex: 0 0 100%; flex-direction: row; }

  /* Single column video grid on very small screens */
  .tt-feed__grid      { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }

  .tt-badge           { display: none; }

  .tt-banner__inner   { gap: 1.25rem; }
  .tt-banner__logo    { width: 54px; height: 54px; border-radius: 14px; }
  .tt-banner__logo svg{ width: 28px; height: 28px; }
  .tt-banner__actions { flex-direction: column; align-items: stretch; }
  .tt-banner__actions .btn { text-align: center; justify-content: center; }
}
