/* ============================================================
   VinylBPM Landing Page — landing.css
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:  #080809;
  --dark:   #0f0f11;
  --dark2:  #161618;
  --dark3:  #1e1e22;
  --groove: #252529;
  --border: #2a2a2f;
  --lime:   #c8ff00;
  --white:  #f2f2f0;
  --off:    #9898a0;
  --dim:    #66666f;
  --dimmer: #44444d;
  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --font-m: 'DM Mono', monospace;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--black); color: var(--white); overflow-x: hidden; cursor: none; }
a { text-decoration: none; }

/* ── Grain ── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── Cursor ── */
.cursor {
  position: fixed; width: 10px; height: 10px; background: var(--lime); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px; border: 1px solid rgba(200,255,0,0.35); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate(-50%,-50%);
  transition: width .25s, height .25s, border-color .2s;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 48px; display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, padding .3s;
}
nav.scrolled {
  background: rgba(8,8,9,.9); backdrop-filter: blur(20px);
  padding: 14px 48px; border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-d); font-size: 1.8rem; letter-spacing: 2px; color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-dot {
  width: 10px; height: 10px; background: var(--lime); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform:scale(1); box-shadow:0 0 0 0 rgba(200,255,0,.4); }
  50%      { transform:scale(1.3); box-shadow:0 0 0 8px rgba(200,255,0,0); }
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: .88rem; font-weight: 500; letter-spacing: .5px; color: var(--off);
  padding: 8px 16px; border-radius: 99px; transition: color .2s, background .2s; display: inline-block;
}
.nav-link:hover { color: var(--white); background: var(--dark3); }
.nav-cta {
  background: var(--lime); color: var(--black); font-weight: 700; padding: 9px 22px;
  border-radius: 99px; font-size: .88rem; transition: transform .15s, box-shadow .2s; display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,255,0,.25); }
.hamburger-land {
  display: none; background: none; border: 1px solid var(--border); color: var(--white);
  width: 40px; height: 40px; border-radius: 8px; font-size: 1.1rem; cursor: pointer; align-items: center; justify-content: center;
}
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--dark2); border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 120px 48px 80px; gap: 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,255,0,.04) 0%, transparent 70%),
              radial-gradient(ellipse 40% 80% at 10% 80%, rgba(124,58,237,.05) 0%, transparent 60%);
}
.hero-left { position: relative; z-index: 1; }
/* ── Hero logo image ── */
.hero-logo-wrap { margin-bottom: 28px; }
.hero-logo-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0,180,255,0.25)) drop-shadow(0 0 80px rgba(200,255,0,0.1));
    animation: fadeUp 0.8s 0.25s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}


.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,255,0,.08); border: 1px solid rgba(200,255,0,.2);
  border-radius: 99px; padding: 6px 16px; margin-bottom: 28px;
  font-size: .78rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lime);
  opacity: 0; transform: translateY(20px); animation: fadeUp .7s .1s ease forwards;
}
.hero-kicker-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }

.hero h1 {
  font-family: var(--font-d); font-size: clamp(4.5rem,8vw,7.5rem);
  line-height: .93; letter-spacing: 2px; color: var(--white);
  opacity: 0; transform: translateY(30px); animation: fadeUp .8s .25s ease forwards;
}
.h1-accent { color: var(--lime); }
.h1-stroke { -webkit-text-stroke: 1px var(--white); color: transparent; }

.hero-sub {
  font-size: 1.1rem; font-weight: 300; color: var(--off); line-height: 1.65;
  margin: 28px 0 40px; max-width: 440px;
  opacity: 0; transform: translateY(20px); animation: fadeUp .8s .4s ease forwards;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px); animation: fadeUp .8s .55s ease forwards;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 99px;
  font-size: .97rem; font-weight: 700; transition: transform .15s, box-shadow .2s;
}
.btn-hero-primary { background: var(--lime); color: var(--black); box-shadow: 0 0 40px rgba(200,255,0,.18); }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,255,0,.3); }
.btn-hero-ghost { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-hero-ghost:hover { background: var(--dark3); transform: translateY(-1px); }

.hero-trust {
  margin-top: 48px; display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp .8s .7s ease forwards;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--groove);
  border: 2px solid var(--dark); margin-left: -8px;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: .82rem; color: var(--dim); }

/* ── VINYL ── */
.hero-right {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeIn 1.2s .4s ease forwards;
}
.vinyl-scene { position: relative; width: 420px; height: 420px; }
.vinyl-record {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #1a1a1c 0%, #1a1a1c 15%, transparent 15.5%),
    repeating-radial-gradient(circle at 50% 50%,
      #111113 0px, #111113 1px, #0d0d0f 2px, #0d0d0f 4px,
      #131315 5px, #131315 6px, #0f0f11 7px, #0f0f11 9px);
  box-shadow: 0 0 0 1px #2a2a2f, 0 40px 100px rgba(0,0,0,.9), 0 0 60px rgba(200,255,0,.03);
  animation: spin-vinyl 8s linear infinite;
}
@keyframes spin-vinyl { to { transform: rotate(360deg); } }
.vinyl-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 36%; height: 36%; border-radius: 50%;
  background: linear-gradient(135deg, #1a0533 0%, #0d1a33 50%, #001a0d 100%);
  border: 1px solid rgba(200,255,0,.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2; box-shadow: 0 0 30px rgba(0,0,0,.8), inset 0 0 20px rgba(0,0,0,.5);
}
.vinyl-label-name { font-family: var(--font-d); font-size: 1.1rem; letter-spacing: 3px; color: var(--lime); text-shadow: 0 0 20px rgba(200,255,0,.5); }
.vinyl-label-sub  { font-size: .52rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,255,0,.4); margin-top: 4px; }
.vinyl-hole { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--black); z-index: 3; }
.vinyl-shine { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 40%, rgba(255,255,255,.01) 60%, transparent 100%); pointer-events: none; z-index: 2; }
.tonearm { position: absolute; top: -20px; right: -40px; }

.vinyl-tag {
  position: absolute; background: rgba(22,22,24,.9); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px; font-size: .78rem; white-space: nowrap;
  backdrop-filter: blur(10px); animation: float-tag 4s ease-in-out infinite;
}
.vinyl-tag .tag-label { color: var(--dim); font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; }
.vinyl-tag .tag-value { color: var(--white); font-weight: 600; margin-top: 2px; font-family: var(--font-m); }
.vinyl-tag .tag-value.green { color: var(--lime); }
.vinyl-tag-bpm   { top: 5%;   left: -8%;  animation-delay: 0s; }
.vinyl-tag-key   { bottom: 12%; right: -5%; animation-delay: 1.3s; }
.vinyl-tag-genre { top: 58%;  left: -12%; animation-delay: .7s; }
@keyframes float-tag { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }

/* ── SECTIONS ── */
.section { padding: 100px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.features-section { background: var(--dark); }
.section-kicker { font-size: .75rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.section-title { font-family: var(--font-d); font-size: clamp(2.8rem,5vw,4.5rem); line-height: 1; letter-spacing: 1.5px; }
.section-sub { font-size: 1.05rem; color: var(--off); font-weight: 300; line-height: 1.7; max-width: 520px; margin-top: 16px; }

/* ── STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 64px;
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.step-card {
  background: var(--dark2); padding: 44px 36px; position: relative; transition: background .3s;
}
.step-card:hover { background: var(--dark3); }
.step-card + .step-card { border-left: 1px solid var(--border); }
.step-num {
  font-family: var(--font-d); font-size: 5rem; line-height: 1; color: rgba(200,255,0,.06);
  position: absolute; top: 20px; right: 24px; letter-spacing: -2px; pointer-events: none;
  transition: color .3s;
}
.step-card:hover .step-num { color: rgba(200,255,0,.12); }
.step-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(200,255,0,.08); border: 1px solid rgba(200,255,0,.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px; }
.step-card h3 { font-family: var(--font-d); font-size: 1.7rem; letter-spacing: 1px; margin-bottom: 12px; }
.step-card p  { font-size: .92rem; color: var(--off); line-height: 1.7; font-weight: 300; }
.step-badge { display: inline-block; margin-top: 16px; background: rgba(200,255,0,.08); border: 1px solid rgba(200,255,0,.2); border-radius: 99px; padding: 4px 12px; font-size: .72rem; color: var(--lime); letter-spacing: 1px; text-transform: uppercase; }

/* ── BENTO ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 14px; margin-top: 64px;
}
.bento {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 20px; padding: 36px;
  position: relative; overflow: hidden; transition: border-color .3s, transform .2s;
}
.bento:hover { border-color: rgba(200,255,0,.2); transform: translateY(-2px); }
.bento-col5  { grid-column: span 5; }
.bento-col7  { grid-column: span 7; }
.bento-col4  { grid-column: span 4; }
.bento-col8  { grid-column: span 8; }
.bento-col6  { grid-column: span 6; }
.bento-col12 { grid-column: span 12; }
/* Legacy aliases */
.bento-tall  { grid-column: span 5; }
.bento-wide  { grid-column: span 7; }

.bento h3 { font-family: var(--font-d); font-size: 1.8rem; letter-spacing: 1px; margin-bottom: 10px; }
.bento p  { font-size: .9rem; color: var(--off); line-height: 1.65; font-weight: 300; }
.bento-icon { font-size: 2.2rem; margin-bottom: 20px; }
.lime   { color: var(--lime); }
.dim    { color: var(--off); }
.dimmer { color: var(--dim); }

/* OCR demo */
.ocr-demo {
  margin-top: 20px; background: var(--dark3); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; font-family: var(--font-m); font-size: .78rem;
  color: var(--off); line-height: 1.85; position: relative;
}
.ocr-demo::before { content: 'OCR OUTPUT'; position: absolute; top: -10px; left: 16px; font-size: .62rem; letter-spacing: 2px; background: var(--dark3); padding: 0 8px; color: var(--dim); }
.ocr-h { color: var(--lime); }

/* Camelot */
.camelot-mini { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; margin-top: 20px; }
.camelot-key {
  aspect-ratio: 1; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: .63rem; font-weight: 600; font-family: var(--font-m);
  background: var(--dark3); color: var(--dimmer); transition: all .25s; cursor: default;
}
.camelot-key.active   { background: rgba(200,255,0,.15); color: var(--lime); border: 1px solid rgba(200,255,0,.3); }
.camelot-key.neighbor { background: rgba(200,255,0,.05); color: var(--off); border: 1px solid rgba(200,255,0,.1); }

/* Inventory preview */
.inv-preview { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.inv-row { display: flex; align-items: center; gap: 10px; background: var(--dark3); border-radius: 10px; padding: 10px 14px; font-size: .82rem; }
.inv-dot  { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
.inv-title{ flex: 1; font-weight: 500; }
.inv-bpm  { font-family: var(--font-m); font-size: .74rem; color: var(--lime); }
.inv-key  { font-family: var(--font-m); font-size: .74rem; color: var(--off); margin-left: 6px; }

/* Stats */
.stat-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.stat-r { display: flex; align-items: center; gap: 10px; }
.stat-lbl { font-size: .76rem; color: var(--off); width: 56px; }
.stat-track { flex: 1; height: 6px; background: var(--dark3); border-radius: 99px; overflow: hidden; }
.stat-fill  { height: 100%; background: var(--lime); border-radius: 99px; }
.stat-val   { font-size: .76rem; font-family: var(--font-m); color: var(--white); width: 34px; text-align: right; }

/* ── PRICING ── */
.pricing-section { padding: 100px 48px; background: var(--dark); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1.08fr 1fr; gap: 0;
  max-width: 900px; margin-left: auto; margin-right: auto;
  border: 1px solid var(--border); border-radius: 24px; overflow: hidden;
}
.price-card { padding: 44px 36px; position: relative; }
.price-card + .price-card { border-left: 1px solid var(--border); }
.price-card-featured {
  background: linear-gradient(160deg, rgba(200,255,0,.06) 0%, rgba(200,255,0,.02) 100%);
  border-left: 1px solid rgba(200,255,0,.2) !important;
  border-right: 1px solid rgba(200,255,0,.2) !important;
}
.price-badge { display: inline-block; background: var(--lime); color: var(--black); font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; margin-bottom: 16px; }
.price-name { font-family: var(--font-d); font-size: 1.8rem; letter-spacing: 1px; margin-bottom: 8px; }
.price-amount { font-family: var(--font-d); font-size: 3.8rem; letter-spacing: -1px; line-height: 1; }
.price-amount sup  { font-size: 1.5rem; font-family: var(--font-b); vertical-align: super; }
.price-amount .cents  { font-size: 2rem; }
.price-amount .period { font-family: var(--font-b); font-size: 1rem; color: var(--off); font-weight: 300; }
.price-sub { font-size: .82rem; color: var(--dim); margin-top: 6px; margin-bottom: 28px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; line-height: 1.4; }
.price-features li .check { color: var(--lime); flex-shrink: 0; font-size: .8rem; margin-top: 1px; }
.price-features li .cross { color: var(--dimmer); flex-shrink: 0; }
.price-features li.feat-dim { color: var(--dim); }
.btn-price {
  display: block; text-align: center; padding: 14px 24px; border-radius: 12px;
  font-size: .92rem; font-weight: 700; transition: transform .15s, box-shadow .2s;
}
.btn-price-free { background: var(--dark3); color: var(--white); border: 1px solid var(--border); }
.btn-price-free:hover { background: var(--groove); }
.btn-price-pro  { background: var(--lime); color: var(--black); box-shadow: 0 8px 32px rgba(200,255,0,.2); }
.btn-price-pro:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,255,0,.3); }

/* ── CTA ── */
.cta-section { padding: 120px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,255,0,.05) 0%, transparent 70%); }
.cta-section h2 { font-family: var(--font-d); font-size: clamp(3.5rem,7vw,6.5rem); letter-spacing: 2px; line-height: .95; position: relative; z-index: 1; }
.cta-section p  { font-size: 1.1rem; color: var(--off); font-weight: 300; margin: 24px auto 44px; max-width: 480px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer { padding: 40px 48px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-d); font-size: 1.4rem; letter-spacing: 2px; color: var(--dim); }
.footer-copy { font-size: .82rem; color: var(--dim); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { to { opacity:1; } }

/* ── RESPONSIVE ── */

/* ── HORIZONTAL BENTO (full-width cards) ── */
.bento-horizontal {
    display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap;
}
.bento-horizontal > div:first-child { flex-shrink: 0; }

/* ── SPOTIFY BENTO ── */
.bento-spotify { grid-column: span 12 !important; padding: 0; overflow: hidden; }
.bento-spotify-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 220px; }
.bento-spotify-left  { padding: 36px; }
.bento-spotify-right {
    background: linear-gradient(135deg, #0d1a0d 0%, #0a1a10 100%);
    padding: 36px; display: flex; align-items: center; justify-content: center; height: 100%;
}
.spotify-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.spotify-chip  {
    background: rgba(29,185,84,.12); border: 1px solid rgba(29,185,84,.3);
    border-radius: 99px; padding: 4px 12px; font-size: .76rem; color: #1DB954;
}
.spotify-mock-player {
    background: #181818; border-radius: 12px; padding: 16px 20px;
    width: 100%; max-width: 280px;
    border: 1px solid rgba(29,185,84,.2);
    box-shadow: 0 0 40px rgba(29,185,84,.08);
}
.smp-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: .7rem; color: #1DB954; letter-spacing: 1px; text-transform: uppercase; }
.smp-dot    { width: 8px; height: 8px; background: #1DB954; border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite; }
.smp-track  { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.smp-art    { width: 40px; height: 40px; background: #282828; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.smp-info   { flex: 1; min-width: 0; }
.smp-title  { font-size: .88rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.smp-artist { font-size: .75rem; color: #888; margin-top: 2px; }
.smp-play   { width: 32px; height: 32px; background: #1DB954; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; color: #000; font-weight: 700; flex-shrink: 0; }
.smp-bar    { height: 4px; background: #333; border-radius: 99px; margin-bottom: 6px; overflow: hidden; }
.smp-progress { height: 100%; width: 60%; background: #1DB954; border-radius: 99px; }
.smp-times  { display: flex; justify-content: space-between; font-size: .68rem; color: #666; font-family: var(--font-m); }

/* ══════════════════════════════════════════
   TABLET  — max-width: 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Hero */
    .hero { grid-template-columns: 1fr; padding: 120px 32px 60px; gap: 0; }
    .hero-right { display: none; }
    .hero h1 { font-size: clamp(3.5rem, 12vw, 5.5rem); }

    /* Bento — 2 columns on tablet */
    .bento-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .bento,
    .bento-tall, .bento-wide,
    .bento-col4, .bento-col5, .bento-col6,
    .bento-col7, .bento-col8 { grid-column: span 1 !important; }
    .bento-col12, .bento-spotify { grid-column: span 2 !important; }
    .bento-horizontal { flex-direction: column; gap: 16px; }

    /* Steps */
    .steps-grid { grid-template-columns: 1fr; }
    .step-card + .step-card { border-left: none; border-top: 1px solid var(--border); }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .price-card + .price-card { border-left: none; border-top: 1px solid var(--border); }
    .price-card-featured {
        border-left: none !important; border-right: none !important;
        border-top: 1px solid rgba(200,255,0,.2) !important;
        border-bottom: 1px solid rgba(200,255,0,.2) !important;
    }

    /* Spotify bento */
    .bento-spotify-inner { grid-template-columns: 1fr; }
    .bento-spotify-right { display: none; }
    .bento-spotify-left  { padding: 28px; }
}

/* ══════════════════════════════════════════
   MOBILE  — max-width: 640px
══════════════════════════════════════════ */
@media (max-width: 640px) {
    /* Nav */
    nav { padding: 14px 16px; }
    nav.scrolled { padding: 10px 16px; }
    .nav-links { display: none; }
    .hamburger-land { display: flex; }
    .mobile-menu { left: 0; right: 0; }

    /* Cursors */
    .cursor, .cursor-ring { display: none; }
    body { cursor: auto; }

    /* Hero */
    .hero { padding: 80px 16px 50px; min-height: auto; }
    .hero-kicker { font-size: .72rem; padding: 5px 12px; margin-bottom: 20px; }
    .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); line-height: .92; }
    .hero-sub { font-size: .95rem; margin: 20px 0 28px; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-hero { justify-content: center; padding: 14px 20px; font-size: .95rem; }
    .hero-trust { margin-top: 32px; }

    /* Sections */
    .section { padding: 56px 16px; }
    .features-section { padding-top: 56px; padding-bottom: 56px; }
    .pricing-section { padding: 56px 16px; }
    .cta-section { padding: 64px 16px; }
    footer { padding: 28px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Section typography */
    .section-title { font-size: clamp(2.2rem, 10vw, 3rem); }
    .section-sub   { font-size: .95rem; }

    /* Steps */
    .step-card { padding: 28px 20px; }
    .step-num  { font-size: 3.5rem; top: 12px; right: 16px; }

    /* Bento — single column on mobile */
    .bento-grid { grid-template-columns: 1fr; gap: 10px; }
    .bento,
    .bento-tall, .bento-wide,
    .bento-col4, .bento-col5, .bento-col6,
    .bento-col7, .bento-col8,
    .bento-col12, .bento-spotify { grid-column: span 1 !important; }
    .bento { padding: 24px 20px; border-radius: 14px; }
    .bento h3 { font-size: 1.5rem; }
    .bento p  { font-size: .88rem; }
    .bento-icon { font-size: 1.8rem; margin-bottom: 14px; }
    .bento-horizontal { flex-direction: column; gap: 12px; }

    /* Camelot mini grid */
    .camelot-mini { grid-template-columns: repeat(6,1fr); gap: 3px; }
    .camelot-key  { font-size: .58rem; border-radius: 4px; }

    /* Inventory preview */
    .inv-row { padding: 8px 10px; font-size: .78rem; }

    /* Stat bars */
    .stat-lbl { width: 44px; font-size: .72rem; }
    .stat-val  { font-size: .72rem; width: 28px; }

    /* Pricing */
    .pricing-grid { max-width: 100%; border-radius: 16px; }
    .price-card { padding: 32px 24px; }
    .price-amount { font-size: 3rem; }
    .price-features li { font-size: .85rem; }
    .btn-price { padding: 13px 20px; }

    /* CTA */
    .cta-section h2 { font-size: clamp(2.8rem, 12vw, 4rem); }
    .cta-section p  { font-size: .95rem; margin-bottom: 32px; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn-hero { justify-content: center; }

    /* Spotify bento mobile */
    .bento-spotify-inner { grid-template-columns: 1fr; }
    .bento-spotify-right { display: none; }
    .bento-spotify-left  { padding: 24px 20px; }
    .spotify-chips { gap: 6px; }
    .spotify-chip  { font-size: .7rem; padding: 3px 10px; }
}

/* ══════════════════════════════════════════
   VERY SMALL  — max-width: 375px
══════════════════════════════════════════ */
@media (max-width: 375px) {
    .hero h1 { font-size: 2.8rem; }
    .btn-hero { font-size: .88rem; padding: 13px 16px; }
    .section-title { font-size: 2rem; }
    .price-amount { font-size: 2.6rem; }
}
