/* ════════════════════════════════════════
   SPOTIFY PREMIUM CLONE — style.css
   ════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* ── Tokens ── */
:root {
  --green:   #1DB954;
  --green-h: #1ed760;
  --black:   #000;
  --dark:    #121212;
  --card:    #1a1a1a;
  --card2:   #242424;
  --white:   #fff;
  --gray:    #b3b3b3;
  --yellow:  #FFC300;
  --pink:    #f4b8d1;
  --nav-h:   64px;
  --r-card:  20px;
  --r-pill:  100px;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999;
  transition: background .3s;
}
.nav.scrolled { background: rgba(0,0,0,0.97); }

.nav__inner {
  max-width: 1440px; margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav__logo:hover { opacity: .85; }
.nav__logo-text { font-weight: 900; font-size: 20px; letter-spacing: -.5px; }

.nav__links {
  display: flex; align-items: center; gap: 4px;
}
.nav__links a {
  font-size: 13.5px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--r-pill);
  white-space: nowrap;
  transition: color .2s;
}
.nav__links a:hover { color: var(--green); }
.nav__divider { width: 1px; height: 20px; background: rgba(255,255,255,.25); margin: 0 6px; flex-shrink: 0; }
.nav__ghost { color: var(--gray) !important; }
.nav__ghost:hover { color: var(--white) !important; }

.nav__pill {
  background: var(--green) !important;
  color: var(--black) !important;
  padding: 10px 20px !important;
  border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  transition: background .18s, transform .15s, box-shadow .2s !important;
}
.nav__pill:hover {
  background: var(--green-h) !important;
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(29,185,84,.4);
  color: var(--black) !important;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill); font-weight: 700;
  transition: background .18s, transform .15s, box-shadow .2s;
  cursor: pointer;
}
.btn--green {
  background: var(--green); color: var(--black);
  font-size: 15px; padding: 14px 32px;
}
.btn--green:hover {
  background: var(--green-h);
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(29,185,84,.38);
}
.btn--lg  { font-size: 16px; padding: 16px 36px; }
.btn--xl  { font-size: 18px; padding: 18px 48px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #081a10;
}

.hero__bg {
  position: absolute; inset: 0;
  overflow: hidden;
}

/* Mesh gradient base */
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 20% 50%, rgba(29,185,84,.38) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(0,210,100,.22) 0%, transparent 50%),
    radial-gradient(ellipse 55% 65% at 75% 80%, rgba(80,40,180,.30) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(20,80,40,.25) 0%, transparent 60%),
    #060e09;
  animation: meshAnim 14s ease-in-out infinite alternate;
}
@keyframes meshAnim {
  0%   { opacity: .85; filter: hue-rotate(0deg) brightness(1); }
  40%  { opacity: 1;   filter: hue-rotate(12deg) brightness(1.1); }
  100% { opacity: .9;  filter: hue-rotate(-8deg) brightness(1.05); }
}

/* Animated orbs */
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(64px);
  animation: orbDrift 15s ease-in-out infinite alternate;
}
.hero__orb--1 {
  width: 70vw; height: 70vw; max-width: 850px; max-height: 850px;
  background: radial-gradient(circle, rgba(29,185,84,.55) 0%, rgba(20,130,60,.2) 45%, transparent 70%);
  top: -25%; left: -15%;
  animation-duration: 18s;
}
.hero__orb--2 {
  width: 50vw; height: 50vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(120,60,220,.45) 0%, rgba(80,30,160,.2) 45%, transparent 70%);
  bottom: -20%; right: -10%;
  animation-duration: 14s; animation-delay: -4s;
}
.hero__orb--3 {
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(0,200,120,.35) 0%, rgba(0,150,80,.15) 45%, transparent 70%);
  top: 35%; left: 55%;
  animation-duration: 20s; animation-delay: -9s;
}

/* Extra 4th orb — warm accent */
.hero__bg::after {
  content: '';
  position: absolute;
  width: 45vw; height: 45vw; max-width: 560px; max-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50,200,100,.30) 0%, transparent 65%);
  filter: blur(72px);
  bottom: 5%; left: 30%;
  animation: orbDrift 17s 3s ease-in-out infinite alternate;
}

@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  30%  { transform: translate(5%,4%) scale(1.07); }
  65%  { transform: translate(-4%,6%) scale(0.95); }
  100% { transform: translate(3%,-5%) scale(1.04); }
}

/* Vinyl rings */
.hero__vinyl {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.vinyl__ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(29,185,84,.30);
  transform: translate(-50%,-50%);
  animation: vinylPulse 4.5s ease-in-out infinite;
}
.vinyl__ring--1 { width: 380px; height: 380px; animation-delay: 0s; }
.vinyl__ring--2 { width: 560px; height: 560px; animation-delay: .7s; border-color: rgba(29,185,84,.18); }
.vinyl__ring--3 { width: 740px; height: 740px; animation-delay: 1.4s; border-color: rgba(29,185,84,.10); }
.vinyl__ring--4 { width: 920px; height: 920px; animation-delay: 2.1s; border-color: rgba(29,185,84,.05); }

@keyframes vinylPulse {
  0%,100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;  transform: translate(-50%,-50%) scale(1.03); }
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center; max-width: 720px;
  padding: 0 24px;
  padding-top: var(--nav-h);
}

.hero__title {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 900; line-height: 1.08; letter-spacing: -3px;
  margin-bottom: 24px;
  padding-bottom: 0.12em;
  background: linear-gradient(160deg, #fff 40%, rgba(255,255,255,.65));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: fadeUp .9s ease both;
}
.hero__sub {
  font-size: clamp(16px, 2.2vw, 22px);
  color: rgba(255,255,255,.72); margin-bottom: 40px; line-height: 1.6;
  animation: fadeUp .9s .18s ease both;
}
.hero__cta { animation: fadeUp .9s .35s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.35);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════
   GALLERY (STICKY SCROLL)
══════════════════════════════════════ */
.gallery {
  height: 400vh;
  position: relative;
}

.gallery__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}

.gallery__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 72px; padding: 0 80px;
  padding-top: var(--nav-h);
  opacity: 0; transform: translateY(32px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.gallery__slide.active {
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}

.gallery__text { flex: 0 0 360px; max-width: 360px; }

.gallery__eyebrow {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.gallery__title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900; line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.gallery__desc {
  font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.65;
}

/* Card */
.gallery__card {
  flex: 0 0 360px; height: 440px;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  position: relative;
}
.card--green { background: linear-gradient(150deg, #1a5e35, #1DB954); }
.card--orange { background: linear-gradient(150deg, #7c2a00, #f97316); }
.card--teal   { background: linear-gradient(150deg, #0d4040, #14b8a6); }
.card--blue   { background: linear-gradient(150deg, #0c2258, #3b82f6); }

/* Phone mockup */
.phone {
  width: 180px; height: 340px;
  background: rgba(0,0,0,.75);
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.18);
  padding: 14px 12px 12px;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.phone__screen {
  flex: 1; border-radius: 18px; overflow: hidden;
  background: #111;
  display: flex; flex-direction: column;
  padding: 10px;
}
.phone__album {
  flex: 1; border-radius: 12px; margin-bottom: 10px;
}
.phone__album--purple {
  background: linear-gradient(135deg, #3b0764, #7e22ce, #a855f7);
}
.phone__meta { margin-bottom: 8px; }
.phone__track { font-size: 11px; font-weight: 700; }
.phone__artist { font-size: 10px; color: rgba(255,255,255,.5); }
.phone__bar {
  height: 3px; background: rgba(255,255,255,.2);
  border-radius: 2px; margin-bottom: 10px; overflow: hidden;
}
.phone__bar-fill { width: 42%; height: 100%; background: var(--green); border-radius: 2px; }
.phone__controls {
  display: flex; align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.7);
}
.phone__play-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Icon cards */
.card__icon-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 24px; text-align: center;
}
.card__icon-label { font-size: 15px; font-weight: 700; color: rgba(255,255,255,.9); }
.card__check-row {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); padding: 6px 16px;
  border-radius: 100px; font-size: 13px; font-weight: 600;
}
.card__check { color: var(--green); font-weight: 900; }
.card__avatars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 4px;
}
.card__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.card__avatar--sm { width: 56px; height: 56px; font-size: 18px; }
.card__icon-sub { font-size: 12px; color: rgba(255,255,255,.6); }

/* Dots */
.gallery__dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.gallery__dot {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.3);
  transition: background .3s, width .3s;
  width: 8px; padding: 0;
}
.gallery__dot.active { background: #fff; width: 24px; }
.gallery__dot:hover  { background: rgba(255,255,255,.6); }

/* ══════════════════════════════════════
   VIDEO EXPAND
══════════════════════════════════════ */
.vx { height: 280vh; position: relative; }

.vx__sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.vx__card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  width: 72vw; height: 72vh;
  will-change: width, height, border-radius;
  transition: none; /* JS-driven */
}

.vx__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    #0d0015 0%, #260040 15%, #4a0080 35%,
    #6b00b0 50%, #7c1fa0 65%, #5a0090 80%,
    #200035 100%);
  background-size: 200% 200%;
  animation: vxGrad 10s ease-in-out infinite alternate;
}
@keyframes vxGrad {
  0%   { background-position: 0% 0%;   filter: brightness(1) hue-rotate(0deg); }
  50%  { background-position: 100% 50%; filter: brightness(1.12) hue-rotate(18deg); }
  100% { background-position: 50% 100%; filter: brightness(.92) hue-rotate(-8deg); }
}

/* Animated guitar glow-like shapes */
.vx__gradient::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 55% 45%, rgba(180,0,255,.25) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 25% 70%, rgba(255,80,180,.12) 0%, transparent 55%);
  animation: vxGlow 6s ease-in-out infinite alternate;
}
@keyframes vxGlow {
  0%   { opacity: .6; }
  100% { opacity: 1; }
}

/* Floating particles */
.vx__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.vx__particles span {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.18);
  animation: particle linear infinite;
}
.vx__particles span:nth-child(1)  { width:4px;  height:4px;  left:15%;  animation-duration:12s; animation-delay:0s;    top:110%; }
.vx__particles span:nth-child(2)  { width:6px;  height:6px;  left:30%;  animation-duration:18s; animation-delay:-3s;   top:110%; }
.vx__particles span:nth-child(3)  { width:3px;  height:3px;  left:50%;  animation-duration:14s; animation-delay:-6s;   top:110%; background: rgba(29,185,84,.4); }
.vx__particles span:nth-child(4)  { width:5px;  height:5px;  left:65%;  animation-duration:16s; animation-delay:-2s;   top:110%; }
.vx__particles span:nth-child(5)  { width:3px;  height:3px;  left:80%;  animation-duration:20s; animation-delay:-8s;   top:110%; background: rgba(180,100,255,.5); }
.vx__particles span:nth-child(6)  { width:7px;  height:7px;  left:10%;  animation-duration:22s; animation-delay:-4s;   top:110%; }
.vx__particles span:nth-child(7)  { width:4px;  height:4px;  left:45%;  animation-duration:15s; animation-delay:-10s;  top:110%; }
.vx__particles span:nth-child(8)  { width:5px;  height:5px;  left:70%;  animation-duration:19s; animation-delay:-1s;   top:110%; }
.vx__particles span:nth-child(9)  { width:3px;  height:3px;  left:25%;  animation-duration:13s; animation-delay:-7s;   top:110%; background: rgba(29,185,84,.35); }
.vx__particles span:nth-child(10) { width:6px;  height:6px;  left:90%;  animation-duration:17s; animation-delay:-5s;   top:110%; }

@keyframes particle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .5; }
  100% { transform: translateY(-120vh) rotate(720deg); opacity: 0; }
}

.vx__text {
  position: absolute;
  bottom: 52px; left: 52px; right: 52px; z-index: 2;
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.vx__text.visible { opacity: 1; transform: translateY(0); }

.vx__quote {
  font-size: clamp(20px, 3.2vw, 44px);
  font-weight: 900; line-height: 1.18;
  letter-spacing: -1px; margin-bottom: 16px;
  max-width: 720px;
}
.vx__sub {
  font-size: clamp(13px, 1.3vw, 17px);
  color: rgba(255,255,255,.65); max-width: 480px; line-height: 1.6;
}

.vx__pause {
  position: absolute; bottom: 24px; right: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3;
  transition: background .2s;
}
.vx__pause:hover { background: rgba(255,255,255,.25); }

/* ══════════════════════════════════════
   FRESH WAYS
══════════════════════════════════════ */
.fresh { background: var(--dark); padding: 120px 0; overflow: hidden; }

.fresh__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 48px;
}

.fresh__header { text-align: center; margin-bottom: 64px; }

.fresh__creature {
  display: inline-block; margin-bottom: 32px;
  animation: creatureFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 40px rgba(168,85,247,.35));
}
.fresh__creature svg { width: 140px; height: 140px; }

@keyframes creatureFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

.fresh__title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 12px;
}
.fresh__sub { font-size: 18px; color: var(--gray); }

.fresh__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fresh__card {
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column;
  gap: 32px;
  overflow: hidden;
  transition: transform .3s ease;
}
.fresh__card:hover { transform: translateY(-6px); }
.fresh__card--blue  { background: linear-gradient(150deg, #0f2348, #1e3a8a, #2563eb); }
.fresh__card--green { background: linear-gradient(150deg, #052e16, #14532d, #15803d); }

.fresh__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,.35);
  padding: 5px 14px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
  width: fit-content;
}
.fresh__card-title {
  font-size: 38px; font-weight: 900;
  letter-spacing: -1.2px; margin-bottom: 10px;
}
.fresh__card-desc {
  font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 280px;
}

/* AI visual */
.fresh__card-visual { flex: 1; }
.ai__prompt {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 8px 18px; font-size: 13px;
  margin-bottom: 14px;
}
.ai__tracks { display: flex; flex-direction: column; gap: 8px; }
.ai__track {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border-radius: 10px; padding: 8px 10px;
}
.ai__art { width: 34px; height: 34px; border-radius: 5px; flex-shrink: 0; }
.ai__tname  { font-size: 12px; font-weight: 600; }
.ai__tartist{ font-size: 11px; color: rgba(255,255,255,.5); }

/* Daylist visual */
.daylist__header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.daylist__icon { font-size: 34px; }
.daylist__name { font-size: 13px; font-weight: 700; }
.daylist__mood { font-size: 11.5px; color: rgba(255,255,255,.5); }
.daylist__bars {
  display: flex; align-items: flex-end; gap: 7px; height: 64px;
}
.daylist__bar {
  flex: 1; height: var(--h);
  background: rgba(255,255,255,.45);
  border-radius: 4px 4px 0 0;
  animation: barAnim 1.8s ease-in-out infinite alternate;
}
.daylist__bar:nth-child(1){animation-delay:0s}
.daylist__bar:nth-child(2){animation-delay:.12s}
.daylist__bar:nth-child(3){animation-delay:.24s}
.daylist__bar:nth-child(4){animation-delay:.36s}
.daylist__bar:nth-child(5){animation-delay:.48s}
.daylist__bar:nth-child(6){animation-delay:.60s}
.daylist__bar:nth-child(7){animation-delay:.72s}
.daylist__bar:nth-child(8){animation-delay:.84s}

@keyframes barAnim {
  0%   { opacity:.45; transform: scaleY(.7); }
  100% { opacity: 1;  transform: scaleY(1); }
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing {
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
  background: var(--dark);
}
.pricing__bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.pricing__logo-bg {
  width: min(700px, 90vw); height: auto;
  animation: spinSlow 35s linear infinite;
  opacity: .8;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.pricing__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.pricing__title {
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.05;
  margin-bottom: 14px;
}
.pricing__sub {
  font-size: 20px; color: rgba(255,255,255,.65);
  margin-bottom: 64px;
}

.pricing__cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; text-align: left;
}

/* Plan card */
.pcard {
  background: #2a2a2a;
  border-radius: var(--r-card);
  padding: 28px 22px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .3s, box-shadow .3s;
}
.pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,.55);
}
.pcard--dark { background: #222; }

.pcard__badge {
  display: inline-block;
  padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 14px; align-self: flex-start;
}
.pcard__badge--pink { background: #f4b8d1; color: #1a0010; }

.pcard__logo-row {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.75); margin-bottom: 10px;
}

.pcard__name {
  font-size: 34px; font-weight: 900;
  letter-spacing: -.8px; margin-bottom: 6px;
}
.pcard__name--yellow { color: var(--yellow); }

.pcard__promo { font-size: 15px; font-weight: 700; }
.pcard__regular { font-size: 12.5px; color: var(--gray); margin-top: 4px; }

/* Strikethrough yearly price row */
.pcard__price-row {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 4px;
}
.pcard__strike {
  font-size: 14px; color: var(--gray);
  text-decoration: line-through;
  text-decoration-color: rgba(179,179,179,.7);
}
.pcard__free {
  font-size: 18px; font-weight: 900;
  color: var(--white); letter-spacing: -.3px;
}
.pcard__price-static { font-size: 15px; font-weight: 700; }

.pcard__divider {
  height: 1px; background: rgba(255,255,255,.1);
  margin: 16px 0;
}

.pcard__features {
  flex: 1; display: flex; flex-direction: column;
  gap: 9px; margin-bottom: 22px;
}
.pcard__features li {
  font-size: 13.5px; color: rgba(255,255,255,.82);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.pcard__features li::before {
  content: '•'; position: absolute; left: 0;
  color: var(--green); font-size: 18px; line-height: 1.1;
}

/* Plan buttons */
.pcard__btn {
  display: block; text-align: center;
  padding: 13px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 700;
  margin-bottom: 14px;
  transition: background .18s, transform .15s;
}
.pcard__btn--pink  { background: #f4b8d1; color: #1a0010; }
.pcard__btn--pink:hover  { background: #f8cce0; transform: scale(1.02); }
.pcard__btn--gray  { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.pcard__btn--gray:hover  { background: rgba(255,255,255,.22); transform: scale(1.02); }
.pcard__btn--yellow{ background: var(--yellow); color: var(--black); }
.pcard__btn--yellow:hover{ background: #ffd740; transform: scale(1.02); }

.pcard__legal {
  font-size: 10.5px; color: var(--gray); line-height: 1.5; text-align: center;
}
.pcard__legal a { color: var(--gray); text-decoration: underline; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq { background: var(--black); padding: 100px 0; }

.faq__inner {
  max-width: 780px; margin: 0 auto; padding: 0 48px;
}

.faq__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; letter-spacing: -1px;
  margin-bottom: 48px; text-align: center;
}

.faq__list { display: flex; flex-direction: column; }

.faq__item { border-bottom: 1px solid rgba(255,255,255,.1); }

.faq__q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 0;
  font-size: 16px; font-weight: 700; text-align: left;
  transition: color .2s;
}
.faq__q:hover { color: var(--green); }

.faq__chevron {
  flex-shrink: 0;
  transition: transform .35s ease;
}
.faq__item.open .faq__chevron { transform: rotate(180deg); }

.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease, padding .3s;
}
.faq__item.open .faq__a {
  max-height: 240px; padding-bottom: 22px;
}
.faq__a p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ══════════════════════════════════════
   FOOTER CTA
══════════════════════════════════════ */
.fcta { background: var(--dark); padding: 110px 48px; text-align: center; }

.fcta__title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900; letter-spacing: -2px;
  margin-bottom: 40px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--dark); padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,.06); }

.footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px; align-items: start;
  margin-bottom: 48px;
}

.footer__logo { display: inline-flex; transition: opacity .2s; }
.footer__logo:hover { opacity: .75; }

.footer__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer__col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 13.5px; color: var(--gray); transition: color .2s; }
.footer__col a:hover { color: var(--white); }

.footer__socials { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer__social {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card2);
  transition: background .2s, transform .2s;
}
.footer__social:hover { background: #333; transform: scale(1.08); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__legal a { font-size: 12px; color: var(--gray); transition: color .2s; }
.footer__legal a:hover { color: var(--white); }
.footer__copy { font-size: 12px; color: var(--gray); }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .pricing__cards { grid-template-columns: repeat(2, 1fr); }
  .gallery__slide { gap: 40px; padding: 0 48px; padding-top: var(--nav-h); }
  .gallery__card { flex: 0 0 300px; height: 380px; }
}

@media (max-width: 900px) {
  .fresh__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__socials { flex-direction: row; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav__links a:not(.nav__pill):not(.nav__ghost) { display: none; }
  .nav__divider { display: none; }
  .gallery__slide { flex-direction: column; gap: 24px; padding: 80px 24px 80px; }
  .gallery__text { flex: none; max-width: 100%; text-align: center; }
  .gallery__card { flex: none; width: 100%; max-width: 340px; height: 300px; }
  .pricing__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .faq__inner { padding: 0 24px; }
  .fresh__inner { padding: 0 24px; }
  .pricing__inner { padding: 0 24px; }
  .footer__inner { padding: 0 24px; }
  .fcta { padding: 80px 24px; }
  .vx__card { width: 92vw; height: 62vh; }
  .vx__text { left: 28px; right: 28px; bottom: 28px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .pricing__cards { grid-template-columns: 1fr; }
  .hero__title { letter-spacing: -2px; }
}
/* ══════════════════════════════════════
   HAMBURGER NAV
══════════════════════════════════════ */
.nav__burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: auto; flex-shrink: 0;
  order: 1;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all .28s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
.modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal.open {
  opacity: 1; pointer-events: all;
}
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__box {
  position: relative; z-index: 1;
  background: #181818;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  width: 100%; max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(28px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  scrollbar-width: thin; scrollbar-color: #333 transparent;
}
.modal.open .modal__box {
  transform: translateY(0) scale(1);
}
.modal__box::-webkit-scrollbar { width: 4px; }
.modal__box::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.modal__close:hover { background: rgba(255,255,255,.18); }

/* Header */
.modal__header {
  padding: 32px 32px 0;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.modal__logo { margin-bottom: 4px; }
.modal__title {
  font-size: 22px; font-weight: 900;
  letter-spacing: -.5px;
}
.modal__subtitle {
  font-size: 13px; color: var(--gray);
  display: flex; align-items: center; gap: 6px;
}
.modal__subtitle::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}

/* OS Tabs */
.modal__tabs {
  display: flex; gap: 6px;
  padding: 20px 32px 0;
}
.modal__tab {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 100px;
  font-size: 13.5px; font-weight: 700;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  transition: background .2s, color .2s;
}
.modal__tab:hover { background: rgba(255,255,255,.12); color: #fff; }
.modal__tab.active {
  background: #fff; color: #000;
}
.modal__tab svg { flex-shrink: 0; }

/* Body */
.modal__body { padding: 20px 32px 32px; }

.modal__content { display: none; }
.modal__content.active { display: block; }

.modal__intro {
  font-size: 13.5px; color: rgba(255,255,255,.55);
  margin-bottom: 24px; line-height: 1.6;
}

/* Steps */
.modal__steps {
  display: flex; flex-direction: column; gap: 0;
}
.modal__step {
  display: flex; gap: 16px;
  padding-bottom: 24px;
  position: relative;
}
.modal__step:not(:last-child)::before {
  content: '';
  position: absolute; left: 15px; top: 36px;
  bottom: 0; width: 2px;
  background: linear-gradient(to bottom, rgba(29,185,84,.4), rgba(29,185,84,.05));
}
.modal__step-num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green);
  color: #000; font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.modal__step-body { flex: 1; padding-top: 4px; }
.modal__step-title {
  font-size: 15px; font-weight: 700; margin-bottom: 5px;
}
.modal__step-desc {
  font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6;
  margin-bottom: 10px;
}
.modal__step-desc:last-child { margin-bottom: 0; }

kbd {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 5px; padding: 1px 6px;
  font-size: 11.5px; font-family: inherit;
  font-weight: 700; color: rgba(255,255,255,.9);
}

/* Download link */
.modal__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-size: 13.5px; font-weight: 700;
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.modal__link:hover { color: var(--green-h); gap: 10px; }

/* Command block */
.modal__cmd-block {
  margin-top: 12px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
.modal__cmd {
  display: block;
  padding: 16px 18px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px; color: #a8ff78;
  white-space: pre-wrap; word-break: break-all;
  line-height: 1.6;
  min-height: 56px;
}
.modal__copy-btn {
  display: flex; align-items: center; gap: 7px;
  width: 100%; padding: 10px 18px;
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
  justify-content: center;
}
.modal__copy-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.modal__copy-btn.copied { color: var(--green); }

/* Video block */
.modal__video-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.modal__video-title {
  font-size: 15px; font-weight: 700; margin-bottom: 5px;
}
.modal__video-sub {
  font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 14px;
}
.modal__video-wrap {
  border-radius: 12px; overflow: hidden;
  background: #000;
}
.modal__video {
  width: 100%; display: block;
  max-height: 260px; object-fit: cover;
}

/* ══════════════════════════════════════
   MOBILE OVERRIDES
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav mobile */
  .nav__inner { flex-wrap: wrap; padding: 0 20px; }
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: #111;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 12px 0 16px;
    gap: 0;
    order: 2;
  }
  .nav__links.mobile-open { display: flex; }
  .nav__links a, .nav__links button {
    padding: 12px 20px !important;
    border-radius: 0 !important;
    font-size: 15px !important;
    text-align: left !important;
    width: 100%;
  }
  .nav__divider { display: none; }
  .nav__pill {
    margin: 8px 20px 0 !important;
    border-radius: 100px !important;
    text-align: center !important;
    padding: 12px 20px !important;
  }

  /* Hero */
  .hero__content { padding: 0 20px; padding-top: 80px; }
  .hero__title { letter-spacing: -2px; }

  /* Gallery */
  .gallery { height: auto; }
  .gallery__sticky { position: relative; height: auto; }
  .gallery__slide {
    position: relative; opacity: 1; transform: none;
    display: none;
    flex-direction: column; gap: 20px;
    padding: 40px 20px 60px;
  }
  .gallery__slide.active { display: flex; }
  .gallery__text { max-width: 100%; text-align: center; }
  .gallery__card { width: 100%; max-width: 300px; height: 280px; margin: 0 auto; }
  .gallery__dots { position: relative; bottom: auto; transform: none; justify-content: center; padding: 0 0 20px; }

  /* Fresh */
  .fresh__card { padding: 28px 24px; }
  .fresh__card-title { font-size: 28px; }
  .fresh__creature svg { width: 100px; height: 100px; }
  .fresh__title { font-size: 32px; }

  /* Pricing */
  .pricing { padding: 80px 0 40px; }
  .pricing__cards { grid-template-columns: 1fr; gap: 12px; }
  .pricing__title { font-size: 36px; }

  /* FAQ */
  .faq { padding: 60px 0; }

  /* FCTA */
  .fcta { padding: 60px 24px; }
  .fcta__title { font-size: 32px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__socials { flex-direction: row; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Modal */
  .modal { padding: 0; align-items: flex-end; }
  .modal__box {
    max-width: 100%; max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }
  .modal__header { padding: 24px 20px 0; }
  .modal__tabs { padding: 16px 20px 0; }
  .modal__body { padding: 16px 20px 28px; }
  .modal__step-desc { font-size: 13px; }
  .modal__cmd { font-size: 12px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 42px; }
  .gallery__title { font-size: 30px; }
}

/* ── Video GIF mode (no controls, fills nicely) ── */
.modal__video {
  max-height: none !important;
  object-fit: contain !important;
  background: #000;
  border-radius: 0;
}
.modal__video-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  line-height: 0;
}
