/* ==========================================================================
   spotify.css — Round 5, REWRITTEN 2026-05-01 to actually look like Spotify
   instead of timidly borrowing structure with our own palette.
   Pure black + bold typography + iconic pill CTAs + vibrant collage.
   Layered AFTER tokens-*.css / base.css / components.css / layout.css.
   ========================================================================== */

/* ───────── Per-tier colours (Spotify Duo-orange / Family-purple pattern, locked across all 6 R5 variants) ───────── */
:root {
  --tier-spark:        #1ED760;       /* Spotify green — entry/freemium */
  --tier-spark-hi:     #1FDF64;
  --tier-spark-glow:   rgba(30, 215, 96, 0.42);
  --tier-spark-faint:  rgba(30, 215, 96, 0.12);

  --tier-surge:        #FFA42B;       /* Spotify Duo orange — anchor */
  --tier-surge-hi:     #FFC569;
  --tier-surge-glow:   rgba(255, 164, 43, 0.45);
  --tier-surge-faint:  rgba(255, 164, 43, 0.14);

  --tier-conquer:      #EF4444;       /* Softer red — toned down from #FF3B3B per user, still distinct vs green/orange */
  --tier-conquer-hi:   #F87171;
  --tier-conquer-glow: rgba(239, 68, 68, 0.42);
  --tier-conquer-faint: rgba(239, 68, 68, 0.13);
}

/* ───────── Spotify aesthetic — very dark with subtle texture (2026-05-05) ─────────
   Pure #000 was reading flat / lifeless per user feedback. Switched to a
   near-black with a vertical gradient for depth + soft vignette for filmic
   feel + low-opacity grain for organic texture. Mesh stays off (too
   colourful for Spotify minimalism). */
body {
  background:
    radial-gradient(ellipse 130% 80% at 50% 0%, #1F1F28 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 80% 110%, #14141C 0%, transparent 60%),
    linear-gradient(180deg, #0E0E14 0%, #060608 100%) !important;
  background-attachment: fixed !important;
  color: #FFFFFF;
}
body::after {
  /* Re-enable SVG film-grain from base.css. Bumped opacity for visible texture. */
  display: block;
  opacity: 0.32 !important;
  mix-blend-mode: overlay;
}
body::before {
  /* Soft radial vignette so corners feel deeper than centre. */
  display: block;
  background: radial-gradient(
    ellipse 130% 100% at 50% 35%,
    transparent 50%,
    rgba(0, 0, 0, 0.35) 85%,
    rgba(0, 0, 0, 0.65) 100%
  ) !important;
}
.page-bg { display: none !important; }      /* mesh gradient stays off — would clash with the dark Spotify aesthetic */

/* ───────── Top announcement bar — restyle to Spotify's thin band ───────── */
.top-bar {
  background: linear-gradient(180deg, rgba(30, 215, 96, 0.16) 0%, rgba(30, 215, 96, 0.04) 100%);
  border-bottom: 1px solid rgba(30, 215, 96, 0.20);
  color: var(--accent-hi);
  font-weight: 500;
}

/* ───────── Sticky nav — solid black on scroll, no frost ───────── */
.nav.scrolled {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

/* ───────── HERO — Spotify split layout, pure black, big bold type ───────── */
.hero {
  text-align: left;
  padding: 80px 22px 90px;
  background: transparent;
}
.hero-inner {
  max-width: var(--container);   /* 1200px — matches nav so left/right edges align */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.18fr 0.82fr;
    gap: 64px;
  }
}

/* Hero kicker pill — the "tagline card" — refined, larger, with logo dot */
.hero .kicker {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent);
  letter-spacing: 0.20em;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 10px 18px;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero .kicker .kicker-dot {
  width: 9px; height: 9px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 4px rgba(255,255,255,0.6);
}

/* H1 — MASSIVE bold Helvetica-style, no gradient text-clip */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7.5vw, 5.4rem);
  letter-spacing: -0.040em;
  line-height: 0.98;
  text-align: left;
  margin: 24px 0 26px;
  max-width: 14ch;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #FFFFFF;
}
.hero h1 em {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--accent);
}
.hero h1 em::after { display: none; }   /* drop blade-draw underline */

.hero .lede {
  text-align: left;
  margin: 0 0 36px;
  max-width: 52ch;
  color: var(--text-2);
  font-size: clamp(1.1rem, 2.4vw, 1.32rem);
  line-height: 1.55;
  font-weight: 500;
}
.hero .cta-row { justify-content: flex-start; margin-bottom: 26px; }
.hero .trust-strip {
  justify-content: flex-start;
  color: var(--text-2);
  font-size: 0.84rem;
}
.hero .trust-strip span::before { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.hero .face-row { justify-content: flex-start; margin-top: 28px; }
.hero .face-row-label { color: var(--text-3); }
.hero .face-pill {
  background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
  border-color: #000;
}

@media (max-width: 979px) {
  .hero { text-align: center; padding: 70px 22px 60px; }
  .hero h1 { text-align: center; margin-left: auto; margin-right: auto; }
  .hero .lede { margin-left: auto; margin-right: auto; text-align: center; }
  .hero .cta-row { justify-content: center; }
  .hero .trust-strip { justify-content: center; }
  .hero .face-row { justify-content: center; }
}

/* ───────── BUTTONS — Spotify-iconic green pill ───────── */
.btn-primary {
  background: var(--accent) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  padding: 18px 36px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  font-size: 1rem !important;
  letter-spacing: 0.005em !important;
  box-shadow: none !important;
  border: none !important;
  transition: transform var(--d-snap) var(--ease-spring), background var(--d-snap) var(--ease-out) !important;
}
.btn-primary:hover {
  transform: scale(1.04) !important;
  background: var(--accent-hi) !important;
}
.btn-primary:active { transform: scale(0.98) !important; }

.btn-ghost {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  padding: 18px 36px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  letter-spacing: 0.005em !important;
}
.btn-ghost:hover {
  border-color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
}

/* Sticky bottom mobile CTA — Spotify pill */
.sticky-cta a {
  background: var(--accent);
  color: #000;
  font-weight: 700;
}

/* ───────── HERO COLLAGE — vibrant multi-color cards, like a Spotify album stack ───────── */
.hero-collage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  perspective: 1200px;
  z-index: 1;
}
.collage-card {
  position: absolute;
  aspect-ratio: 9 / 16;
  width: 42%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.85),
    0 10px 22px rgba(0, 0, 0, 0.6);
  transition: transform var(--d-soft) var(--ease-spring);
  display: grid;
  place-items: center;
  text-align: center;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
}
/* Podium layout: 01 = gold (center, front, biggest), 02 = silver (left, slightly behind), 03 = bronze (right, furthest behind) */
/* Colours: deep blue / orange / lighter blue — pink + purple swapped to blues per user direction */
.collage-card-1 {
  /* GOLD — centered, in front, no rotation, biggest */
  left: 30%; top: -2%;
  transform: rotate(0deg) translateZ(20px);
  z-index: 3;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.20), transparent 50%),
    linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.92),
    0 14px 28px rgba(0, 0, 0, 0.72);
}
.collage-card-2 {
  /* SILVER — left, slightly behind 01 but in front of 03 */
  left: 1%; top: 18%;
  transform: rotate(-13deg) translateZ(-20px);
  z-index: 2;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.22), transparent 50%),
    linear-gradient(135deg, #FFA42B 0%, #E07F00 100%);
}
.collage-card-3 {
  /* BRONZE — right, furthest behind */
  left: 58%; top: 18%;
  transform: rotate(15deg) translateZ(-50px);
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18), transparent 50%),
    linear-gradient(135deg, #F87171 0%, #EF4444 100%);
}
.collage-card:hover { transform: rotate(0) translateZ(20px) scale(1.04); }
.collage-card-num {
  font-size: clamp(3.4rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
  margin-bottom: 8px;
}
.collage-card-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 14px;
}
@media (prefers-reduced-motion: reduce) { .collage-card { transition: none; } }

/* ───────── 3D iPhone mockup — replaces the collage in the hero ───────── */
.hero-phone {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  perspective: 1400px;
  z-index: 1;
}
.phone-shell {
  position: relative;
  aspect-ratio: 9 / 19.2;
  background:
    linear-gradient(135deg, #1F1F1F 0%, #2C2C2C 35%, #1A1A1A 65%, #0D0D0D 100%);
  border-radius: 56px;
  padding: 14px;
  transform-style: preserve-3d;
  transition: transform var(--d-soft) var(--ease-spring);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.95),
    0 22px 48px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.10),
    inset 0 0 0 4px rgba(0, 0, 0, 0.42);
  /* Default: slow tilt L-R + slight up-down hover. CSS animation, GPU-cheap. */
  animation: phone-float 9s ease-in-out infinite;
  will-change: transform;
}
@keyframes phone-float {
  0%   { transform: rotateY(-13deg) rotateX(4deg) translateY(0); }
  25%  { transform: rotateY(-8deg)  rotateX(5deg) translateY(-10px); }
  50%  { transform: rotateY(-15deg) rotateX(3deg) translateY(-2px); }
  75%  { transform: rotateY(-10deg) rotateX(5deg) translateY(-7px); }
  100% { transform: rotateY(-13deg) rotateX(4deg) translateY(0); }
}
/* On hover: pause the auto-float wherever it is, then nudge slightly */
.phone-shell:hover {
  animation-play-state: paused;
  transform: rotateY(-6deg) rotateX(2deg) scale(1.02) translateY(-3px) !important;
}
@media (prefers-reduced-motion: reduce) {
  .phone-shell { animation: none; transition: none; transform: rotateY(-8deg) rotateX(3deg); }
  .phone-shell:hover { transform: rotateY(-8deg) rotateX(3deg) !important; }
}
@media (max-width: 720px) {
  .phone-shell { animation: none; transform: rotateY(0) rotateX(0); }
  .phone-shell:hover { transform: rotateY(0) rotateX(0) !important; }
}
.phone-island {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 32px;
  background: #000;
  border-radius: 16px;
  z-index: 20;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* TikTok status bar */
.tt-statusbar {
  position: absolute;
  top: 14px; left: 0; right: 0;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.tt-status-meta { display: inline-flex; gap: 6px; align-items: center; }
.tt-signal-bars {
  width: 14px; height: 9px;
  background:
    linear-gradient(to top, #fff 0, #fff 25%, transparent 25%, transparent 100%) 0  100% / 2.4px 25% no-repeat,
    linear-gradient(to top, #fff 0, #fff 50%, transparent 50%, transparent 100%) 33% 100% / 2.4px 50% no-repeat,
    linear-gradient(to top, #fff 0, #fff 75%, transparent 75%, transparent 100%) 66% 100% / 2.4px 75% no-repeat,
    linear-gradient(to top, #fff 0, #fff 100%, transparent 0%, transparent 0%)   100% 100% / 2.4px 100% no-repeat;
}
.tt-wifi {
  width: 14px; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='%23ffffff'><path d='M8 12l2-2-2-2-2 2 2 2zM3 7c2-2 8-2 10 0l1.5-1.5C12 3 4 3 1.5 5.5L3 7zm-3-3c4-4 12-4 16 0l1.5-1.5C14 -1 2 -1 -1.5 2.5L0 4z'/></svg>") no-repeat center / contain;
}
.tt-battery {
  width: 22px; height: 10px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 3px;
  position: relative;
  background:
    linear-gradient(90deg, #fff 0, #fff 75%, transparent 75%, transparent 100%) no-repeat;
  background-size: 100% 100%;
}
.tt-battery::after {
  content: '';
  position: absolute;
  right: -3px; top: 2.5px;
  width: 1.5px; height: 4px;
  background: rgba(255,255,255,0.85);
  border-radius: 0 1px 1px 0;
}

/* Slide-counter dots */
.tt-slide-dots {
  position: absolute;
  top: 64px; left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 5px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.tt-slide-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: width var(--d-snap) var(--ease-out);
}
.tt-slide-dots span.active {
  width: 22px;
  border-radius: 4px;
  background: #fff;
}

/* Right action rail */
.tt-right-rail {
  position: absolute;
  bottom: 96px;
  right: 10px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.tt-avatar {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #000 url("../assets/logo.png") no-repeat center / contain;
  border: 2px solid #fff;
  overflow: hidden;
}
.tt-avatar-mark {
  /* hide the fallback "VVV" text — the real logo image is the avatar */
  font-size: 0;
  text-indent: -9999px;
}
.tt-follow {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  background-color: #2563EB;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23fff' stroke-width='3' stroke-linecap='round' fill='none'><path d='M12 5v14M5 12h14'/></svg>");
  border-radius: 50%;
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.tt-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
}
.tt-action::before {
  content: '';
  width: 36px; height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}
.tt-like::before    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%23ffffff'><path d='M24 42S6 31 6 19c0-6 4.5-10 10-10 3.6 0 6.4 2 8 4.5C25.6 11 28.4 9 32 9c5.5 0 10 4 10 10 0 12-18 23-18 23z'/></svg>"); }
.tt-comment::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linejoin='round'><path d='M24 7C13 7 4 14.5 4 24c0 5 2.5 9.5 6.5 12.5L8 44l9-4.5c2 .5 4.5 1 7 1 11 0 20-7.5 20-16.5S35 7 24 7z'/></svg>"); }
.tt-save::before    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linejoin='round'><path d='M11 6h26v36l-13-9-13 9V6z'/></svg>"); }
.tt-share::before   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%23ffffff'><path d='M28 12V4l16 14-16 14v-8c-13 0-20 5-22 14 0-15 9-22 22-22z'/></svg>"); }
.tt-album {
  margin-top: 6px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #000 28%, transparent 30%),
    conic-gradient(from 0deg, #1ED760 0%, #FFA42B 33%, #2563EB 66%, #1ED760 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: tt-album-spin 6s linear infinite;
}
@keyframes tt-album-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .tt-album { animation: none; } }

/* Bottom — handle + caption + audio */
.tt-bottom {
  position: absolute;
  bottom: 28px;
  left: 16px; right: 80px;
  z-index: 15;
  color: #fff;
  font-family: var(--font-display);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}
.tt-handle {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tt-caption {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.tt-audio {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.tt-note {
  width: 13px; height: 13px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M9 18a3 3 0 11-3-3V5l12-2v10a3 3 0 11-3-3V6L9 7v11z'/></svg>") no-repeat center / contain;
  flex: 0 0 auto;
}
.tt-audio-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* The Round 4 .showcase section is consolidated into the hero — hide on Spotify pages */
.showcase { display: none; }

/* ───────── 3-card showcase (Spotify R5) — podium layout below hero ───────── */
.card-showcase {
  position: relative;
  padding: 90px 22px 60px;
  background: transparent;
}
.card-showcase-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.card-showcase .section-head { margin-bottom: 70px; }

.card-stack {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  perspective: 1400px;
}
.show-card {
  position: absolute;
  aspect-ratio: 9 / 16;
  width: 22%;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.85),
    0 10px 22px rgba(0, 0, 0, 0.5);
  transition: transform var(--d-soft) var(--ease-spring);
}
/* All three cards — uniform dark-grey, larger, much closer together (overlapping podium) */
.show-card {
  width: 32%;
  background:
    linear-gradient(135deg, #2A2A2D 0%, #1F1F22 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.85),
    0 12px 24px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.show-card-1 {
  /* Center, in front, biggest */
  left: 34%; top: 0%;
  transform: rotate(0deg) translateZ(30px);
  z-index: 3;
  width: 32%;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.95),
    0 16px 32px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.show-card-2 {
  /* Left silver — slightly behind, FULLY READABLE (was overlapping too much) */
  left: 5%; top: 14%;
  transform: rotate(-10deg) translateZ(-15px);
  z-index: 2;
}
.show-card-3 {
  /* Right bronze — slightly behind, FULLY READABLE */
  left: 63%; top: 14%;
  transform: rotate(10deg) translateZ(-15px);
  z-index: 1;
}
.show-card:hover { transform: rotate(0deg) translateZ(50px) scale(1.04); border-color: rgba(255,255,255,0.16); }
.show-card-1:hover { transform: rotate(0deg) translateZ(50px) scale(1.06); }

.show-card-num {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
}
.show-card-label {
  font-family: var(--font-mono);
  font-size: clamp(0.66rem, 1.4vw, 0.84rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 6px;
  padding: 0 10px;
}

@media (max-width: 720px) {
  .card-stack { aspect-ratio: 4 / 3; max-width: 520px; }
  .show-card { width: 33%; }
  .show-card-1 { left: 33%; top: 0%; }
  .show-card-2 { left: 4%;  top: 18%; transform: rotate(-10deg); }
  .show-card-3 { left: 62%; top: 18%; transform: rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .show-card { transition: none; }
}

/* ───────── SECTION HEADINGS — bigger, bolder ───────── */
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.4vw, 4rem);
  letter-spacing: -0.030em;
  line-height: 1.04;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #FFFFFF;
}
.section-head p {
  color: var(--text-2);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  line-height: 1.55;
}
.kicker-sm {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

/* Process / Why work with us cards — black-card on black-bg with subtle borders */
.card {
  background: var(--bg-card);
  border-color: var(--border);
  backdrop-filter: none;
}
.card:hover {
  background: var(--bg-elevated);
  border-color: var(--border-2);
}
.step h3, .benefit h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.020em;
}
.step p, .benefit p {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.6;
}
.step-num, .benefit-num {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ───────── STAT BAND SECTION — own breathing room (decoupled from card-showcase 2026-05-05) ───────── */
.stat-band-section {
  position: relative;
  padding: 60px 22px 90px;
  background: transparent;
}
.stat-band-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.stat-band-section .stats {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
@media (max-width: 720px) {
  .stat-band-section { padding: 40px 22px 60px; }
  .stat-band-section .stats { padding-top: 32px; }
}

/* ───────── PRICING — per-tier vibrant accents, Spotify Duo/Family pattern ───────── */
.tier {
  background: var(--bg-card);
  border-color: var(--border-2);
  transition: transform var(--d-soft) var(--ease-out), background var(--d-soft) var(--ease-out);
}
.tier-name {
  color: var(--text-2);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.20em;
}
.tier-price {
  color: #FFFFFF;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.tier-sub {
  color: var(--text-2);
  font-size: 1.04rem;
  line-height: 1.5;
  min-height: 3em;
}
.tier li {
  color: var(--text-2);
  font-size: 0.99rem;
  line-height: 1.5;
}

.tier.tier-spark   { --tc: var(--tier-spark);   --tc-hi: var(--tier-spark-hi);   --tc-glow: var(--tier-spark-glow);   --tc-faint: var(--tier-spark-faint); }
.tier.tier-surge   { --tc: var(--tier-surge);   --tc-hi: var(--tier-surge-hi);   --tc-glow: var(--tier-surge-glow);   --tc-faint: var(--tier-surge-faint); }
.tier.tier-conquer { --tc: var(--tier-conquer); --tc-hi: var(--tier-conquer-hi); --tc-glow: var(--tier-conquer-glow); --tc-faint: var(--tier-conquer-faint); }

.tier.tier-spark .tier-name,
.tier.tier-surge .tier-name,
.tier.tier-conquer .tier-name { color: var(--tc); }

.tier.tier-spark li::before,
.tier.tier-surge li::before,
.tier.tier-conquer li::before { border-color: var(--tc); background-color: var(--tc-faint); }

/* SURGE elevated regardless of palette — orange border + glow + slightly lighter card */
.tier.tier-surge.tier-featured {
  /* Equalised with SPARK + CONQUER size 2026-05-05; only the badge protrudes to signal "most popular" now */
  background: linear-gradient(180deg, rgba(255, 164, 43, 0.10) 0%, var(--bg-card) 70%);
  border-color: rgba(255, 164, 43, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 164, 43, 0.30),
    0 24px 60px rgba(0, 0, 0, 0.55);
  transform: none !important;
}
@media (min-width: 880px) {
  .tier-featured:hover { transform: translateY(-4px) !important; }
}
/* SURGE "Most popular" — protruding pill above the card edge (Spotify-style) */
.tier.tier-surge { position: relative; overflow: visible; }
.tier.tier-surge .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tier-surge), var(--tier-surge-hi));
  color: #1A1408;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 8px 24px rgba(255, 164, 43, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Per-tier CTAs — match Spotify pill style with tier colour */
/* ───────── 3D + shine treatment for ALL primary buttons (2026-05-05) ─────────
   Layered backgrounds: top highlight gradient + tier colour. box-shadow
   gives drop-shadow depth + inset top highlight + inset bottom edge shadow. */
.btn-primary,
.tier .btn-primary {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding: 18px 32px !important;
  letter-spacing: 0.005em !important;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18) !important;
  transition:
    transform var(--d-snap) var(--ease-spring),
    box-shadow var(--d-snap) var(--ease-out),
    filter var(--d-snap) var(--ease-out) !important;
}
.btn-primary:hover,
.tier .btn-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(0, 0, 0, 0.20) !important;
  filter: brightness(1.04);
}
.btn-primary:active,
.tier .btn-primary:active { transform: translateY(0) scale(0.99) !important; }

/* Per-tier layered backgrounds: top-highlight + tier colour underneath */
.tier.tier-spark .btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.10) 100%),
    var(--tier-spark) !important;
  color: #000 !important;
}
.tier.tier-surge .btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.10) 100%),
    var(--tier-surge) !important;
  color: #1A1408 !important;
}
.tier.tier-conquer .btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.10) 100%),
    var(--tier-conquer) !important;
  color: #1A0606 !important;
}
.tier.tier-spark   .btn-primary:hover { background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 55%), var(--tier-spark-hi) !important; }
.tier.tier-surge   .btn-primary:hover { background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 55%), var(--tier-surge-hi) !important; }
.tier.tier-conquer .btn-primary:hover { background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 55%), var(--tier-conquer-hi) !important; }

/* Hero CTA + final-cta + sticky-cta — the green Spotify-pill, also layered */
.hero .btn-primary,
.final-cta .btn-primary,
.sticky-cta .btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.10) 100%),
    var(--accent) !important;
  color: #000 !important;
}
.hero .btn-primary:hover,
.final-cta .btn-primary:hover,
.sticky-cta .btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 55%),
    var(--accent-hi) !important;
}

/* Ghost button — subtle bevel + glassy lift */
.btn-ghost {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  color: var(--text) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  padding: 18px 32px !important;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(8px);
  transition: transform var(--d-snap) var(--ease-spring), background var(--d-snap) var(--ease-out), border-color var(--d-snap) var(--ease-out) !important;
}
.btn-ghost:hover {
  transform: translateY(-2px) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.32) !important;
  color: var(--text) !important;
}

.tier.tier-spark .btn-ghost:hover   { border-color: var(--tier-spark);   color: var(--tier-spark); }
.tier.tier-conquer .btn-ghost:hover { border-color: var(--tier-conquer); color: var(--tier-conquer); }

.tier:hover { transform: translateY(-4px); }
@media (min-width: 880px) {
  .tier-featured:hover { transform: scale(1.04) translateY(-4px); }
}

/* ───────── "All plans include" recap — Spotify-style ───────── */
.all-plans {
  margin-top: 56px;
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 880px) { .all-plans { grid-template-columns: 0.7fr 1.3fr; gap: 40px; } }
.all-plans h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  letter-spacing: -0.020em;
  line-height: 1.18;
  background: none;
  color: #FFFFFF;
}
.all-plans ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .all-plans ul { grid-template-columns: repeat(2, 1fr); } }
.all-plans li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-2);
}
.all-plans li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 auto;
}

/* ───────── Payment trust strip — real brand-style logo cards ───────── */
.payment-strip {
  margin-top: 36px;
  padding: 32px 22px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.payment-strip-label {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 22px;
}
.paycards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.paycard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 56px;
  padding: 0 12px;
  background: #FFFFFF;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.025em;
  color: #1A1A1A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.32);
  user-select: none;
}
.paycard.visa  { color: #1A1F71; letter-spacing: 0.02em; font-style: italic; font-size: 16px; }
.paycard.amex  { background: #2E77BB; color: #FFFFFF; font-size: 12px; letter-spacing: 0.1em; }
.paycard.mc    { padding: 0 14px; gap: 0; }
.paycard.mc i  { display: inline-block; width: 18px; height: 18px; border-radius: 50%; }
.paycard.mc i.r { background: #EB001B; }
.paycard.mc i.y { background: #F79E1B; margin-left: -7px; mix-blend-mode: multiply; }
.paycard.apay { gap: 4px; font-weight: 600; font-size: 13px; }
.paycard.apay::before {
  content: '';
  width: 12px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 20' fill='%23000'><path d='M14.4 9.7c0-2.4 2-3.5 2-3.5-1.1-1.6-2.8-1.8-3.4-1.8-1.4-.1-2.8.8-3.5.8-.7 0-1.9-.8-3.1-.8C5 4.4 3.7 5.2 3 6.5 1.5 9 2.6 12.7 4 14.7c.7 1 1.6 2.1 2.7 2 1.1 0 1.5-.7 2.8-.7s1.7.7 2.8.7c1.2 0 1.9-1 2.6-2 .8-1.1 1.2-2.2 1.2-2.3 0-.1-2.4-1-2.4-3.7zM12.2 2.8c.6-.7 1-1.7.9-2.7-.8.1-1.8.6-2.4 1.3-.5.6-1 1.6-.9 2.6.9.1 1.8-.5 2.4-1.2z'/></svg>") no-repeat center / contain;
  flex: 0 0 auto;
}
.paycard.gpay { gap: 0; font-weight: 600; font-size: 13px; }
.paycard.gpay .gp-g { color: #4285F4; font-weight: 800; font-size: 16px; margin-right: 3px; }
.paycard.gpay .gp-pay { color: #5F6368; }
.paycard.paypal { gap: 0; font-weight: 800; font-style: italic; font-size: 13px; letter-spacing: -0.02em; }
.paycard.paypal .pp-pay { color: #003087; }
.paycard.paypal .pp-pal { color: #009CDE; }

/* ───────── Comparison table on black ───────── */
.compare {
  background: var(--bg-card);
  border-color: var(--border);
}
.compare th, .compare td { border-top-color: var(--border); }
.compare thead th { background: rgba(255, 255, 255, 0.04); color: var(--text-3); }
.compare .tick { color: var(--text); }
.compare .featured-col { background: rgba(255, 164, 43, 0.06); color: var(--text); }
.compare .featured-col .tick { color: var(--text); font-weight: 700; }
.compare tr:hover td { background: rgba(255, 255, 255, 0.025); }

/* ───────── Testimonials — black card with white outline ───────── */
.testimonial-card { background: var(--bg-card); }

/* ───────── FAQ — Spotify pattern ───────── */
.faq-item summary { color: #FFFFFF; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after { color: var(--accent); }
.faq-item p { color: var(--text-2); }

/* ───────── Final CTA on black ───────── */
.final-cta h2 {
  background: none;
  color: #FFFFFF;
  font-weight: 700;
}
.final-cta h2 em {
  background: none;
  color: var(--accent);
  font-style: normal;
}

/* ───────── Footer — Spotify-style multi-column (2026-05-05) ───────── */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 22px 36px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  text-align: left;
  flex-direction: initial;     /* override layout.css default flex */
}
@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
    align-items: start;
    justify-content: initial;
  }
}

/* Brand block */
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 380px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-brand-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1A1A20 0%, #0E0E12 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--accent);
  letter-spacing: 0;
  margin-top: 4px;
}
.footer-desc {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.55;
}
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  transition:
    background var(--d-snap) var(--ease-out),
    color var(--d-snap) var(--ease-out),
    transform var(--d-snap) var(--ease-out);
}
.footer-social a:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

/* Link columns */
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-head {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--text-2);
  font-size: 0.92rem;
  transition: color var(--d-snap) var(--ease-out);
}
.footer-col a:hover { color: var(--text); }

/* Bottom row */
.footer-bottom {
  max-width: var(--container);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
@media (min-width: 760px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom-meta { color: var(--text-3); }
