:root{
  --bg:#ffffff;
  --bg-soft:#fbfbfb;
  --text:#1c2629;
  --muted:rgba(28,38,41,.72);
  --muted-strong:rgba(28,38,41,.88);
  --cyan:#02f5f0;
  --magenta:#e0419c;
  --surface:rgba(255,255,255,.76);
  --surface-strong:rgba(255,255,255,.92);
  --border:rgba(28,38,41,.09);
  --border-strong:rgba(28,38,41,.16);
  --shadow:0 24px 60px rgba(28,38,41,.08);
  --shadow-strong:0 30px 80px rgba(28,38,41,.11);
  --radius:30px;
  --radius-sm:20px;
  --max:1320px;
  --header-h:84px;
  --major-size:180px;
  --minor-size:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
p{margin:0}
.skip-link{
  position:fixed;left:16px;top:12px;transform:translateY(-180%);z-index:300;
  background:#fff;border:1px solid var(--border);padding:10px 14px;border-radius:999px;
  box-shadow:var(--shadow);
}
.skip-link:focus{transform:translateY(0)}

.page-aura,
.grid-layer,
.grid-flow{position:fixed;inset:0;pointer-events:none}
.page-aura{z-index:-4;filter:blur(42px);opacity:.65}
.page-aura-one{
  background:radial-gradient(circle at 14% 20%, rgba(2,245,240,.24), transparent 34%),
             radial-gradient(circle at 82% 76%, rgba(224,65,156,.18), transparent 28%);
}
.page-aura-two{
  background:radial-gradient(circle at 86% 18%, rgba(224,65,156,.16), transparent 32%),
             radial-gradient(circle at 18% 88%, rgba(2,245,240,.18), transparent 30%);
}
.grid-layer{z-index:-3}
.grid-major{
  opacity:.95;
  background:
    linear-gradient(rgba(2,245,240,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2,245,240,.18) 1px, transparent 1px);
  background-size:var(--major-size) var(--major-size);
  mask-image:linear-gradient(180deg, rgba(0,0,0,.8), rgba(0,0,0,.75));
}
.grid-major::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(rgba(224,65,156,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,65,156,.14) 1px, transparent 1px);
  background-size:calc(var(--major-size) * 2) calc(var(--major-size) * 2);
  mix-blend-mode:screen;
}
.grid-minor{
  opacity:.42;
  background:
    linear-gradient(rgba(28,38,41,.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,38,41,.038) 1px, transparent 1px);
  background-size:var(--minor-size) var(--minor-size);
}
.grid-dots{
  opacity:.26;
  background-image:radial-gradient(circle, rgba(28,38,41,.085) 0 1px, transparent 1.35px);
  background-size:12px 12px;
}
.grid-flow{z-index:-2;overflow:hidden}
.flow-line{
  position:absolute;height:1px;width:min(44vw, 540px);
  background:linear-gradient(90deg, transparent 0%, rgba(2,245,240,.9) 28%, rgba(224,65,156,.8) 72%, transparent 100%);
  opacity:.72;
  filter:drop-shadow(0 0 8px rgba(2,245,240,.34));
}
.flow-line-a{top:20%;left:-20%;animation:flowA 16s linear infinite}
.flow-line-b{top:64%;right:-20%;animation:flowB 18s linear infinite}
@keyframes flowA{
  0%{transform:translateX(0)}
  100%{transform:translateX(150vw)}
}
@keyframes flowB{
  0%{transform:translateX(0)}
  100%{transform:translateX(-150vw)}
}

.site-header{
  position:sticky;top:0;z-index:80;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:18px clamp(18px, 4vw, 44px);
  min-height:var(--header-h);
  backdrop-filter:blur(20px);
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.62));
  border-bottom:1px solid rgba(28,38,41,.06);
}
.brand-link img{height:28px;width:auto}
.site-nav{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.site-nav a{
  position:relative;
  font-size:.95rem;font-weight:600;letter-spacing:-.01em;color:var(--muted-strong);
  padding:10px 12px;border-radius:999px;
  transition:color .25s ease, background-color .25s ease, transform .25s ease;
}
.site-nav a::after{
  content:"";position:absolute;left:12px;right:12px;bottom:8px;height:1px;
  background:linear-gradient(90deg, rgba(2,245,240,.8), rgba(224,65,156,.8));
  transform:scaleX(0);transform-origin:center;transition:transform .24s ease;
}
.site-nav a:hover,.site-nav a:focus-visible{background:rgba(255,255,255,.72);color:var(--text);transform:translateY(-1px)}
.site-nav a:hover::after,.site-nav a:focus-visible::after{transform:scaleX(1)}

main{width:min(var(--max), calc(100% - 48px));margin:0 auto}
.section{padding:8rem 0 0}
.section:last-of-type{padding-bottom:8.4rem}
.section-label{
  display:inline-flex;align-items:center;gap:10px;
  margin-bottom:1.2rem;padding:8px 14px;border-radius:999px;
  font-size:.86rem;font-weight:700;letter-spacing:.02em;color:rgba(28,38,41,.62);
  background:rgba(255,255,255,.74);border:1px solid rgba(28,38,41,.08);
  box-shadow:0 10px 26px rgba(28,38,41,.05);backdrop-filter:blur(10px);
}
.section-head{display:grid;gap:1rem;max-width:920px;margin-bottom:2.35rem}
.section-head.narrow{max-width:820px}
.section h2{
  margin:0;
  font-size:clamp(2.2rem, 5vw, 4.7rem);
  line-height:1.01;letter-spacing:-.055em;font-weight:760;max-width:14ch;color:var(--text);
}
.section-head p,
.image-card-copy p,
.broadcast-body p,
.playlist-card-copy p,
.purpose-copy p,
.studio-copy p{
  color:var(--text);
  font-size:1.06rem;line-height:1.72;font-weight:480;max-width:68ch;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.84rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:rgba(28,38,41,.56);
}
.eyebrow::before{
  content:"";display:block;width:34px;height:1px;background:linear-gradient(90deg, rgba(2,245,240,.85), rgba(224,65,156,.85));
}
.glass-panel,
.image-card,
.broadcast-card,
.playlist-card,
.studio-mosaic{
  background:var(--surface);
  border:1px solid rgba(28,38,41,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}
.card-media{position:relative;overflow:hidden;border-radius:calc(var(--radius) - 10px);background:#f4f4f4}
.card-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,0) 46%, rgba(28,38,41,.06) 100%);
  pointer-events:none;
}
.card-media img{width:100%;height:100%;object-fit:cover;transition:transform .9s cubic-bezier(.2,.7,.2,1), filter .6s ease}
.ratio-wide{aspect-ratio:1.28/1}
.ratio-hero{aspect-ratio:1.08/1}
.ratio-portrait{aspect-ratio:.86/1}
.ratio-landscape{aspect-ratio:1.4/1}
.ratio-card{aspect-ratio:1.1/1}
.ratio-purpose{aspect-ratio:1.08/1}
.ratio-cover{aspect-ratio:1/1}
.ratio-cover-small{aspect-ratio:1.05/1}
.tilt-card{transform-style:preserve-3d;will-change:transform}

.hero-section{
  min-height:calc(100vh - var(--header-h));
  display:grid;place-items:center;padding:4.2rem 0 3rem;
}
.hero-shell{width:100%;display:grid;justify-items:center;gap:2.3rem}
.hero-stage{
  position:relative;
  width:min(1200px, 90vw);
  height:clamp(180px, 21vw, 286px);
  display:grid;place-items:center;
  isolation:isolate;
}
.hero-stage::before{
  content:"";position:absolute;inset:auto 8% -18px 8%;height:72px;
  background:radial-gradient(circle, rgba(28,38,41,.12), transparent 70%);
  filter:blur(26px);z-index:0;
}
.hero-logo{
  position:absolute;inset:0;margin:auto;
  height:clamp(118px, 16vw, 214px);width:auto;max-width:100%;
  transition:opacity 1s cubic-bezier(.2,.8,.2,1), transform 1.05s cubic-bezier(.2,.82,.2,1), filter .85s ease;
  transform-origin:center center;will-change:transform, opacity, filter;
}
.hero-logo-full{opacity:1;transform:translateY(0) scale(1);filter:none;z-index:1}
.hero-logo-mark{opacity:0;transform:translateY(18px) scale(.88);filter:blur(6px);z-index:2}
.hero-stage.is-collapsing .hero-logo-full{opacity:0;transform:translateY(-8px) scale(.7);filter:blur(10px)}
.hero-stage.is-final .hero-logo-mark{
  opacity:1;
  transform:translate3d(var(--dx,0px), var(--dy,0px), 0) scale(1) perspective(1400px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) skewX(var(--sx,0deg));
  filter:drop-shadow(0 18px 26px rgba(28,38,41,.12));
}
.morph-dot{
  position:absolute;width:clamp(13px,1.4vw,21px);aspect-ratio:1;border-radius:999px;z-index:3;
  opacity:0;
  transform:translate(var(--start-x), var(--start-y)) scale(.7);
  transition:opacity .35s ease, transform 1.6s cubic-bezier(.16,.86,.18,1.08), border-radius .35s ease;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.dot-one{background:var(--magenta);--start-x:-14%;--start-y:4%;--end-x:-17%;--end-y:-26%}
.dot-two{background:var(--cyan);--start-x:4%;--start-y:10%;--end-x:-1%;--end-y:8%}
.dot-three{background:var(--magenta);--start-x:18%;--start-y:6%;--end-x:18%;--end-y:-2%}
.hero-stage.is-animating .morph-dot{opacity:1}
.hero-stage.is-final .dot-one{transform:translate(calc(var(--end-x) + var(--wx,0px)), calc(var(--end-y) + var(--wy,0px))) scale(1)}
.hero-stage.is-final .dot-two{transform:translate(calc(var(--end-x) + var(--wx,0px)), calc(var(--end-y) + var(--wy,0px))) scale(1)}
.hero-stage.is-final .dot-three{transform:translate(calc(var(--end-x) + var(--wx,0px)), calc(var(--end-y) + var(--wy,0px))) scale(1)}
.hero-stage.is-bouncing .morph-dot{animation:blobBounce 1.25s cubic-bezier(.23,.84,.25,1.1) 1 both}
@keyframes blobBounce{
  0%{border-radius:999px}
  22%{transform:translate(calc(var(--end-x) * .94), calc(var(--end-y) * .94 - 10px)) scale(1.08,.88);border-radius:46% 54% 45% 55% / 40% 48% 52% 60%}
  46%{transform:translate(calc(var(--end-x) * 1.02), calc(var(--end-y) * 1.02 + 4px)) scale(.9,1.08);border-radius:58% 42% 54% 46% / 50% 60% 40% 50%}
  72%{transform:translate(calc(var(--end-x) * .99), calc(var(--end-y) * .99 - 2px)) scale(1.02,.98);border-radius:49% 51% 43% 57% / 55% 45% 57% 43%}
  100%{transform:translate(var(--end-x), var(--end-y)) scale(1);border-radius:999px}
}
.hero-tagline{
  margin:0;text-align:center;color:var(--text);
  font-size:clamp(2rem, 3.1vw, 3rem);
  line-height:1.06;letter-spacing:-.055em;font-weight:760;
}
.hero-microcopy{
  display:flex;flex-wrap:wrap;justify-content:center;gap:12px;
  max-width:920px;
}
.hero-microcopy span,
.ticker{
  border-radius:999px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(28,38,41,.08);
  box-shadow:0 12px 26px rgba(28,38,41,.05);
}
.hero-microcopy span{
  padding:12px 16px;font-size:.95rem;font-weight:640;color:rgba(28,38,41,.72);
}
.ticker{
  overflow:hidden;margin:0 auto;border-radius:999px;padding:12px 0;width:min(var(--max), calc(100% - 48px));
}
.ticker-track{
  display:flex;gap:32px;white-space:nowrap;min-width:max-content;
  animation:ticker 22s linear infinite;
}
.ticker-track span{
  position:relative;padding-left:28px;font-size:.95rem;font-weight:650;color:rgba(28,38,41,.72);
}
.ticker-track span::before{
  content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:16px;height:1px;background:linear-gradient(90deg, rgba(2,245,240,.9), rgba(224,65,156,.9));
}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

.about-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.35rem;
}
.image-card{overflow:hidden;padding:1rem;display:grid;gap:1.15rem}
.image-card-copy{display:grid;gap:.85rem;padding:0 .25rem .25rem}
.image-card h3,
.broadcast-card h3,
.playlist-card h3,
.studio-copy h3{margin:0;font-size:1.54rem;line-height:1.08;letter-spacing:-.04em;font-weight:720}

.studio-mosaic{
  position:relative;
  display:grid;grid-template-columns:minmax(0,1.15fr) minmax(280px,.72fr);gap:1rem;padding:1rem;
  overflow:hidden;margin-bottom:1.4rem;
}
.studio-side{display:grid;gap:1rem}
.studio-copy{
  position:absolute;left:2rem;bottom:2rem;max-width:380px;padding:1rem 1.1rem 1.05rem;
  background:rgba(255,255,255,.74);border:1px solid rgba(255,255,255,.55);border-radius:20px;
  box-shadow:0 18px 30px rgba(28,38,41,.08);backdrop-filter:blur(14px);
}
.studio-copy p{font-size:1rem;max-width:40ch}

.broadcast-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.35rem}
.broadcast-card{padding:1rem;display:grid;gap:1rem;overflow:hidden}
.broadcast-body{display:grid;gap:.7rem;padding:0 .2rem .2rem}

.purpose-layout{display:grid;grid-template-columns:minmax(320px,.9fr) minmax(0,1.1fr);gap:1.35rem;align-items:stretch}
.purpose-copy{
  display:flex;flex-direction:column;justify-content:center;gap:1rem;padding:2.3rem 2.15rem;overflow:hidden;position:relative;
}
.purpose-copy::before,
.purpose-copy::after{
  content:"";position:absolute;border-radius:999px;pointer-events:none;z-index:0;
}
.purpose-copy::before{width:220px;height:220px;right:-60px;top:-66px;background:radial-gradient(circle, rgba(224,65,156,.2), transparent 70%)}
.purpose-copy::after{width:200px;height:200px;left:-60px;bottom:-78px;background:radial-gradient(circle, rgba(2,245,240,.22), transparent 72%)}
.purpose-copy > *{position:relative;z-index:1}
.purpose-stats{display:flex;gap:1rem;flex-wrap:wrap;margin-top:.3rem}
.purpose-stats div{
  min-width:180px;padding:1rem 1.05rem;border-radius:20px;
  background:rgba(255,255,255,.72);border:1px solid rgba(28,38,41,.08);
}
.purpose-stats strong{display:block;font-size:1.6rem;line-height:1;font-weight:760;letter-spacing:-.04em;margin-bottom:.35rem}
.purpose-stats span{font-size:.96rem;color:rgba(28,38,41,.72);line-height:1.45}
.purpose-visual{padding:1rem;overflow:hidden}
.purpose-frame{position:relative;height:100%;min-height:440px}
.purpose-frame .card-media{height:100%;border-radius:22px}
.purpose-overlay{position:absolute;inset:0;pointer-events:none}
.purpose-badge{
  position:absolute;left:22px;top:22px;padding:10px 14px;border-radius:999px;
  background:rgba(255,255,255,.78);border:1px solid rgba(255,255,255,.62);
  font-size:.88rem;font-weight:700;color:rgba(28,38,41,.7);box-shadow:0 14px 30px rgba(28,38,41,.06);
}
.purpose-orbit{
  position:absolute;right:44px;bottom:44px;width:220px;height:220px;border-radius:999px;
  border:1px solid rgba(255,255,255,.58);box-shadow:0 0 0 36px rgba(255,255,255,.1), 0 0 0 90px rgba(255,255,255,.06);
}
.purpose-core{
  position:absolute;right:112px;bottom:112px;display:grid;place-items:center;
  width:84px;height:84px;border-radius:999px;color:#fff;font-size:1.35rem;font-weight:760;letter-spacing:-.05em;
  background:linear-gradient(135deg, rgba(2,245,240,.95), rgba(224,65,156,.9));
  box-shadow:0 24px 40px rgba(28,38,41,.14);
}

.playlist-grid{
  display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:1.2rem;
}
.playlist-card{overflow:hidden;padding:1rem;display:grid;gap:1rem}
.playlist-feature{grid-column:span 6}
.playlist-grid > .playlist-card:not(.playlist-feature){grid-column:span 4}
.playlist-card-copy{display:grid;gap:.75rem;padding:0 .15rem .2rem}
.playlist-card-copy.compact{gap:.55rem}
.playlist-card-copy p{font-size:.99rem}
.playlist-card-copy a{
  display:inline-flex;align-items:center;justify-content:space-between;gap:14px;
  min-height:50px;padding:.82rem 1rem;border-radius:16px;
  background:rgba(255,255,255,.74);border:1px solid rgba(28,38,41,.08);
  font-size:.96rem;font-weight:660;transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.playlist-card-copy a:hover,.playlist-card-copy a:focus-visible{
  transform:translateY(-2px);border-color:var(--border-strong);box-shadow:0 18px 32px rgba(28,38,41,.07);
}
.playlist-card-copy a img{height:20px;width:auto}

.site-footer{
  width:min(var(--max), calc(100% - 48px));margin:0 auto;padding:1.3rem 0 2.5rem;
  display:grid;justify-items:center;gap:1rem;border-top:1px solid rgba(28,38,41,.08);
}
.footer-logo img{height:38px;width:auto}
.footer-links{display:flex;gap:18px;flex-wrap:wrap;justify-content:center}
.footer-links a,.site-footer p{font-size:.95rem;color:rgba(28,38,41,.76)}

.reveal{opacity:0;transform:translateY(34px) scale(.985);transition:opacity .9s cubic-bezier(.2,.76,.2,1), transform 1.05s cubic-bezier(.2,.76,.2,1)}
.reveal.is-visible{opacity:1;transform:translateY(0) scale(1)}
.hero-stage.is-hoverable{cursor:pointer}

@media (hover:hover) and (pointer:fine){
  .tilt-card:hover .card-media img,
  .image-card:hover .card-media img,
  .broadcast-card:hover .card-media img,
  .playlist-card:hover .card-media img,
  .purpose-visual:hover .card-media img{transform:scale(1.035)}
}

@media (max-width: 1120px){
  .about-grid,.broadcast-grid,.purpose-layout{grid-template-columns:1fr}
  .playlist-feature,.playlist-grid > .playlist-card:not(.playlist-feature){grid-column:span 12}
  .studio-mosaic{grid-template-columns:1fr}
  .studio-copy{position:static;max-width:none;margin-top:0}
}
@media (max-width: 860px){
  .site-header{padding:16px 18px;gap:16px}
  .site-nav{gap:10px}
  .site-nav a{font-size:.92rem;padding:8px 10px}
  main,.site-footer,.ticker{width:min(var(--max), calc(100% - 28px))}
  .hero-section{padding:2.8rem 0 2.4rem}
  .hero-stage{height:150px;width:min(96vw, 720px)}
  .hero-logo{height:min(18vw, 108px)}
  .hero-tagline{font-size:clamp(1.8rem, 8vw, 2.4rem)}
  .hero-microcopy span{padding:10px 14px;font-size:.9rem}
  .ticker{border-radius:24px}
  .section{padding-top:4.9rem}
  .image-card,.broadcast-card,.playlist-card,.purpose-visual{padding:.85rem}
  .purpose-copy{padding:1.8rem 1.5rem}
  .purpose-frame{min-height:360px}
  .purpose-orbit{width:170px;height:170px;right:26px;bottom:26px;box-shadow:0 0 0 26px rgba(255,255,255,.1), 0 0 0 64px rgba(255,255,255,.06)}
  .purpose-core{right:69px;bottom:69px;width:72px;height:72px;font-size:1.15rem}
}
@media (max-width: 620px){
  .site-header{align-items:flex-start;flex-direction:column}
  .brand-link img{height:24px}
  .hero-microcopy{gap:10px}
  .hero-microcopy span{width:calc(50% - 5px);text-align:center}
  .ticker-track{gap:24px}
  .ticker-track span{font-size:.9rem}
  .section-head p,
  .image-card-copy p,
  .broadcast-body p,
  .playlist-card-copy p,
  .purpose-copy p,
  .studio-copy p{font-size:1rem;line-height:1.62}
  .studio-copy{padding:.95rem 1rem}
  .purpose-stats{flex-direction:column}
  .purpose-stats div{width:100%}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal,
  .hero-logo,
  .morph-dot,
  .site-nav a,
  .playlist-card-copy a,
  .ticker-track,
  .flow-line,
  .card-media img{transition:none !important;animation:none !important}
}


/* V6 requested lean playlist section */
.playlists-lean{
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(420px,1fr);
  gap:1.4rem;
  align-items:start;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(28,38,41,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
  padding:1.25rem;
}
.playlists-lean .playlists-copy{
  padding:1rem .8rem;
  display:grid;
  gap:1rem;
}
.playlists-lean .playlists-copy h2{
  margin:0;
  color:var(--text);
  font-size:clamp(1.85rem,4vw,3.4rem);
  line-height:1.02;
  letter-spacing:-.055em;
  font-weight:760;
  max-width:11ch;
}
.playlists-lean .playlists-copy p{
  margin:0;
  color:var(--text);
  font-size:1.04rem;
  line-height:1.65;
  font-weight:480;
  max-width:35ch;
}
.playlist-links-lean{
  display:grid;
  gap:.72rem;
}
.playlist-links-lean a{
  position:relative;
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:.95rem 1rem .95rem 1.08rem;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(28,38,41,.08);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.playlist-links-lean a::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  background:linear-gradient(90deg, rgba(2,245,240,.18), rgba(224,65,156,.18));
  transition:opacity .28s ease;
}
.playlist-links-lean a:hover,
.playlist-links-lean a:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(28,38,41,.15);
  box-shadow:0 18px 32px rgba(28,38,41,.07);
}
.playlist-links-lean a:hover::before,
.playlist-links-lean a:focus-visible::before{opacity:1}
.playlist-links-lean span,
.playlist-links-lean img{position:relative;z-index:1}
.playlist-links-lean span{
  color:var(--text);
  font-size:clamp(1.15rem,2.2vw,1.8rem);
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:720;
}
.playlist-links-lean img{
  height:22px;
  width:auto;
}
@media (max-width:1120px){
  .playlists-lean{grid-template-columns:1fr}
  .playlists-lean .playlists-copy h2{max-width:16ch}
}


/* V7 exact requested refinements */
html, body, a, button { cursor: none; }
.vinyl-cursor{
  position:fixed;
  left:0;top:0;
  width:42px;height:42px;
  border:1.4px solid rgba(28,38,41,.42);
  border-radius:50%;
  pointer-events:none;
  z-index:9999;
  transform:translate(-50%,-50%);
  opacity:0;
  mix-blend-mode:multiply;
  transition:opacity .16s ease, width .18s ease, height .18s ease, border-color .18s ease;
}
.vinyl-cursor::before{
  content:"";
  position:absolute;
  inset:8px;
  border:1px solid rgba(28,38,41,.25);
  border-radius:50%;
}
.vinyl-cursor span{
  position:absolute;
  left:50%;top:50%;
  width:5px;height:5px;
  border-radius:50%;
  background:rgba(28,38,41,.45);
  transform:translate(-50%,-50%);
}
.vinyl-cursor.is-visible{opacity:.78}
.vinyl-cursor.is-link{
  width:50px;height:50px;
  border-color:rgba(224,65,156,.45);
}
@media (hover:none), (pointer:coarse){
  html, body, a, button{cursor:auto}
  .vinyl-cursor{display:none}
}

/* move ticker higher into hero, no empty restart feeling */
.hero-section{position:relative}
.ticker{
  position:absolute;
  left:50%;
  bottom:clamp(18px, 5vh, 54px);
  transform:translateX(-50%);
  width:min(var(--max), calc(100vw - 48px));
  z-index:5;
}
.ticker-track{
  display:flex;
  gap:34px;
  width:max-content;
  animation:tickerLoop 42s linear infinite;
}
@keyframes tickerLoop{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* hero inline SVG animation, no hanging external dots */
.hero-stage{
  overflow:visible;
}
.hero-svg{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
  z-index:1;
}
.hero-svg .logo-svg{
  display:block;
  height:clamp(118px,16vw,214px);
  width:auto;
  max-width:100%;
  overflow:visible;
}
.hero-svg-mark{
  opacity:0;
  z-index:3;
}
.hero-svg-full{
  opacity:1;
  z-index:2;
}
.hero-svg .logo-svg path{
  transform-box:fill-box;
  transform-origin:center;
  will-change:transform, opacity, filter;
}
.hero-stage.is-collapsing .hero-svg-full{
  opacity:1;
}
.hero-stage.is-collapsing .hero-svg-full .logo-svg path{
  animation:letterFlyOut 1.45s cubic-bezier(.18,.78,.18,1) forwards;
  animation-delay:calc(var(--i, 0) * 45ms);
}
.hero-stage.is-final .hero-svg-mark{
  opacity:1;
}
.hero-svg-mark .logo-svg path{
  opacity:0;
  transform:translate3d(var(--mx,0), var(--my,18px), 0) scale(.92) rotate(var(--mr,0deg));
}
.hero-stage.is-final .hero-svg-mark .logo-svg path{
  animation:letterFlyIn 1.35s cubic-bezier(.18,.82,.18,1.02) forwards;
  animation-delay:calc(var(--i, 0) * 90ms);
}
.hero-stage.is-final .hero-svg-full{
  opacity:0;
  transition:opacity .35s ease .7s;
}
.hero-logo{display:none}
.morph-dot{display:none!important}
@keyframes letterFlyOut{
  0%{opacity:1;filter:blur(0);transform:translate3d(0,0,0) scale(1) rotate(0)}
  70%{opacity:.35;filter:blur(1px)}
  100%{opacity:0;filter:blur(7px);transform:translate3d(var(--x,0), var(--y,-24px), 0) scale(.58) rotate(var(--r,0deg))}
}
@keyframes letterFlyIn{
  0%{opacity:0;filter:blur(7px);transform:translate3d(var(--mx,0), var(--my,28px), 0) scale(.82) rotate(var(--mr,0deg))}
  64%{opacity:1;filter:blur(0);transform:translate3d(calc(var(--mx,0) * -.05), calc(var(--my,0) * -.05),0) scale(1.025) rotate(0)}
  100%{opacity:1;filter:blur(0);transform:translate3d(0,0,0) scale(1) rotate(0)}
}
/* Full logo path scatter */
.logo-svg-full path:nth-of-type(1){--i:0;--x:-80px;--y:-34px;--r:-5deg}
.logo-svg-full path:nth-of-type(2){--i:1;--x:-44px;--y:38px;--r:4deg}
.logo-svg-full path:nth-of-type(3){--i:2;--x:-20px;--y:-50px;--r:-3deg}
.logo-svg-full path:nth-of-type(4){--i:3;--x:18px;--y:42px;--r:5deg}
.logo-svg-full path:nth-of-type(5){--i:4;--x:44px;--y:-36px;--r:-4deg}
.logo-svg-full path:nth-of-type(6){--i:5;--x:70px;--y:28px;--r:4deg}
.logo-svg-full path:nth-of-type(7){--i:6;--x:96px;--y:-44px;--r:-5deg}
.logo-svg-full path:nth-of-type(8){--i:7;--x:120px;--y:36px;--r:6deg}
.logo-svg-full path:nth-of-type(9){--i:8;--x:144px;--y:-20px;--r:-4deg}
/* Final mark path entrance */
.logo-svg-mark path:nth-of-type(1){--i:0;--mx:-120px;--my:18px;--mr:-5deg}
.logo-svg-mark path:nth-of-type(2){--i:1;--mx:-46px;--my:-34px;--mr:3deg}
.logo-svg-mark path:nth-of-type(3){--i:2;--mx:44px;--my:34px;--mr:-3deg}
.logo-svg-mark path:nth-of-type(4){--i:3;--mx:112px;--my:-18px;--mr:5deg}
.logo-svg-mark path:nth-of-type(5){--i:4;--mx:70px;--my:46px;--mr:-4deg}

/* playlist duplicate heading removed in HTML; decorate the remaining box */
.playlists-lean{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(255,255,255,.84),rgba(255,255,255,.84)) padding-box,
    linear-gradient(135deg, rgba(2,245,240,.45), rgba(224,65,156,.36)) border-box;
  border:1px solid transparent;
}
.playlists-lean::before,
.playlists-lean::after{
  content:"";
  position:absolute;
  pointer-events:none;
  border-radius:999px;
  z-index:0;
}
.playlists-lean::before{
  width:240px;height:240px;
  right:-92px;top:-104px;
  background:radial-gradient(circle, rgba(2,245,240,.28), transparent 70%);
}
.playlists-lean::after{
  width:260px;height:260px;
  left:-120px;bottom:-128px;
  background:radial-gradient(circle, rgba(224,65,156,.22), transparent 70%);
}
.playlists-lean > *{position:relative;z-index:1}

/* subtle brand-color borders for white content boxes */
.glass-panel,
.image-card,
.broadcast-card,
.playlists-lean,
.purpose-copy,
.purpose-visual,
.playlist-links-lean a,
.hero-microcopy span{
  background:
    linear-gradient(rgba(255,255,255,.82),rgba(255,255,255,.82)) padding-box,
    linear-gradient(135deg, rgba(2,245,240,.28), rgba(224,65,156,.22)) border-box;
  border:1px solid transparent;
}
.playlist-links-lean a{
  background:
    linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)) padding-box,
    linear-gradient(135deg, rgba(2,245,240,.20), rgba(224,65,156,.16)) border-box;
}
@media (max-width:860px){
  .ticker{position:relative;left:auto;bottom:auto;transform:none;margin-top:1.5rem;width:100%}
}


/* V8 refinements: slower hero, fixed ticker alignment, lighter scroll feel, added section ornaments */

/* Requested: main logo animation at 40% of current speed => 2.5x duration */
.hero-stage.is-collapsing .hero-svg-full .logo-svg path{
  animation-duration:3.62s;
  animation-delay:calc(var(--i, 0) * 112ms);
}
.hero-stage.is-final .hero-svg-mark .logo-svg path{
  animation-duration:3.38s;
  animation-delay:calc(var(--i, 0) * 225ms);
}

/* keep ticker/keyword stripe straight despite reveal transforms */
.ticker.reveal{
  transform:translateX(-50%) translateY(28px) scale(.985) !important;
}
.ticker.reveal.is-visible{
  transform:translateX(-50%) translateY(0) scale(1) !important;
}
.ticker{
  bottom:clamp(28px, 7vh, 74px);
}
.ticker-track{
  animation-duration:52s;
}

/* liquid distortion base for final KLTV logo */
.hero-svg-mark .logo-svg{
  filter:url(#kltvLiquidWarp);
  transition:filter .22s ease;
}
.hero-stage.is-hoverable:hover .hero-svg-mark .logo-svg{
  filter:url(#kltvLiquidWarp) drop-shadow(0 18px 26px rgba(28,38,41,.13));
}

/* subtle extra brand design elements through sections */
.section{
  position:relative;
}
.section::before,
.section::after{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:-1;
  opacity:.34;
}
.section::before{
  width:170px;height:170px;
  right:clamp(0px, 4vw, 56px);
  top:clamp(42px, 7vw, 110px);
  border-radius:999px;
  border:1px solid rgba(2,245,240,.28);
  box-shadow:0 0 0 36px rgba(2,245,240,.035), inset 0 0 0 1px rgba(224,65,156,.11);
}
.section::after{
  width:120px;height:120px;
  left:clamp(0px, 3vw, 42px);
  bottom:clamp(-20px, 3vw, 38px);
  background:
    radial-gradient(circle at 50% 50%, rgba(224,65,156,.18), transparent 54%),
    conic-gradient(from 180deg, rgba(2,245,240,.30), transparent 28%, rgba(224,65,156,.28), transparent 62%, rgba(2,245,240,.30));
  border-radius:999px;
}
.section-about::before{right:8%;top:26%}
.section-broadcast::after{left:7%;bottom:6%}
.section-purpose::before{right:11%;top:14%;width:210px;height:210px}
.section-playlists::before{right:5%;top:16%;width:230px;height:230px}
.section-playlists::after{left:4%;bottom:12%;width:160px;height:160px}

/* small decorative nodes inside playlist box */
.playlists-lean .playlists-copy::before{
  content:"";
  position:absolute;
  left:18px;
  bottom:18px;
  width:70px;
  height:70px;
  border-radius:999px;
  border:1px solid rgba(2,245,240,.26);
  box-shadow:0 0 0 20px rgba(224,65,156,.035);
  pointer-events:none;
}
.playlists-lean .playlist-links-lean::after{
  content:"";
  position:absolute;
  right:24px;
  top:18px;
  width:42px;
  height:42px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(224,65,156,.18), transparent 60%);
  border:1px solid rgba(224,65,156,.18);
  pointer-events:none;
}
.playlist-links-lean{position:relative}

@media (max-width:860px){
  .ticker.reveal,
  .ticker.reveal.is-visible{
    transform:none !important;
  }
  .section::before,.section::after{opacity:.22}
}


/* V9: more punctual logo warp, much lighter scroll inertia, additional brand ornaments */

/* Hover should only react when cursor is actually over the final KLTV SVG */
.hero-stage.is-hoverable .hero-svg-mark,
.hero-stage.is-hoverable .hero-svg-mark .logo-svg{
  pointer-events:auto;
}

/* Make liquid response more local and not across the whole hero stage */
.hero-svg-mark .logo-svg path{
  transition:transform .18s cubic-bezier(.2,.72,.2,1);
}

/* extra decorative brand elements placed in unused whitespace of boxes */
.brand-globe,
.brand-equalizer,
.brand-plus{
  position:absolute;
  pointer-events:none;
  z-index:1;
}
.brand-globe{
  width:88px;
  height:88px;
  border-radius:999px;
  opacity:.34;
  border:1px solid rgba(2,245,240,.36);
  background:
    radial-gradient(circle at 50% 50%, rgba(2,245,240,.12), transparent 60%),
    linear-gradient(90deg, transparent 47%, rgba(28,38,41,.18) 48%, rgba(28,38,41,.18) 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(28,38,41,.14) 48%, rgba(28,38,41,.14) 52%, transparent 53%);
  box-shadow:0 0 0 16px rgba(2,245,240,.025);
}
.brand-globe::before,
.brand-globe::after{
  content:"";
  position:absolute;
  inset:12px;
  border:1px solid rgba(28,38,41,.16);
  border-radius:999px;
}
.brand-globe::before{transform:scaleX(.38)}
.brand-globe::after{transform:scaleY(.38)}
.brand-globe-playlist{
  left:22px;
  bottom:22px;
}
.brand-globe-purpose{
  right:24px;
  top:24px;
  width:72px;
  height:72px;
  opacity:.25;
}
.brand-equalizer{
  right:28px;
  bottom:28px;
  display:grid;
  grid-template-columns:repeat(4,4px);
  gap:5px;
  align-items:end;
  height:46px;
  opacity:.42;
}
.brand-equalizer::before,
.brand-equalizer::after{
  content:"";
  display:block;
}
.brand-equalizer span{display:none}
.brand-equalizer{
  background:
    linear-gradient(to top, rgba(2,245,240,.52) 0 34%, transparent 34%),
    linear-gradient(to top, rgba(224,65,156,.48) 0 62%, transparent 62%),
    linear-gradient(to top, rgba(2,245,240,.46) 0 48%, transparent 48%),
    linear-gradient(to top, rgba(224,65,156,.38) 0 82%, transparent 82%);
  background-size:4px 100%, 4px 100%, 4px 100%, 4px 100%;
  background-position:0 0, 9px 0, 18px 0, 27px 0;
  background-repeat:no-repeat;
  width:32px;
}
.brand-plus{
  right:24px;
  top:24px;
  width:44px;
  height:44px;
  opacity:.32;
}
.brand-plus::before,
.brand-plus::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  background:linear-gradient(90deg, rgba(2,245,240,.65), rgba(224,65,156,.55));
  transform:translate(-50%,-50%);
}
.brand-plus::before{width:44px;height:1px}
.brand-plus::after{width:1px;height:44px}

/* ensure ornaments don't cover important text */
.playlists-lean .playlists-copy,
.playlists-lean .playlist-links-lean,
.purpose-copy > :not(.brand-globe),
.image-card-copy,
.card-media{
  position:relative;
  z-index:2;
}

/* more understated ornaments on smaller screens */
@media (max-width:860px){
  .brand-globe,.brand-equalizer,.brand-plus{opacity:.18}
}


/* V10 requested refinements */
.playlists-lean .playlist-links-lean::after{display:none !important;}

/* Stronger, larger-wave KLTV hover deformation while still keeping it local */
.hero-svg-mark .logo-svg{
  filter:url(#kltvLiquidWarp);
}
.hero-svg-mark .logo-svg path{
  transition:transform .12s cubic-bezier(.2,.78,.2,1);
}
.hero-stage.is-hoverable:hover .hero-svg-mark .logo-svg{
  filter:url(#kltvLiquidWarp) drop-shadow(0 20px 28px rgba(28,38,41,.15));
}


/* V11 requested refinements */

/* remove top visual gap / tighten navbar area */
.site-header{
  top:0;
  margin-top:0;
  min-height:60px;
  padding-top:8px;
  padding-bottom:8px;
}
body{padding-top:0}

/* New hero: KLTV only, outline first, then left-to-right fill */
.hero-svg-mark{
  opacity:1 !important;
}
.hero-svg-mark .logo-svg{
  filter:none;
}
.hero-svg-mark .logo-svg path{
  transition:
    fill-opacity .62s cubic-bezier(.18,.82,.18,1),
    stroke-opacity .62s cubic-bezier(.18,.82,.18,1),
    stroke-width .62s cubic-bezier(.18,.82,.18,1),
    transform .13s cubic-bezier(.2,.78,.2,1);
  vector-effect:non-scaling-stroke;
  stroke-linejoin:round;
  stroke-linecap:round;
}
.logo-svg-mark path:nth-of-type(1),
.logo-svg-mark path:nth-of-type(3),
.logo-svg-mark path:nth-of-type(4){
  --logo-fill:#1b2728;
  --logo-stroke:#1b2728;
}
.logo-svg-mark path:nth-of-type(2){
  --logo-fill:#e0419c;
  --logo-stroke:#e0419c;
}
.hero-stage .logo-svg-mark path{
  fill:var(--logo-fill) !important;
  fill-opacity:0 !important;
  stroke:var(--logo-stroke) !important;
  stroke-opacity:.95 !important;
  stroke-width:11;
}
.hero-stage.is-fill-k .logo-svg-mark path:nth-of-type(1),
.hero-stage.is-fill-l .logo-svg-mark path:nth-of-type(4),
.hero-stage.is-fill-t .logo-svg-mark path:nth-of-type(3),
.hero-stage.is-fill-v .logo-svg-mark path:nth-of-type(2){
  fill-opacity:1 !important;
  stroke-opacity:0 !important;
  stroke-width:0;
}
.hero-stage.is-hoverable .hero-svg-mark .logo-svg{
  filter:url(#kltvLiquidWarp);
}
.hero-stage.is-hoverable:hover .hero-svg-mark .logo-svg{
  filter:url(#kltvLiquidWarp) drop-shadow(0 20px 28px rgba(28,38,41,.15));
}

/* KULTIVATE word under mark */
.hero-wordmark{
  margin:-.55rem 0 -.8rem;
  color:var(--text);
  font-size:clamp(1.55rem, 2.7vw, 2.65rem);
  line-height:1;
  letter-spacing:-.045em;
  font-weight:760;
  text-align:center;
}

/* Cursor on subpages uses same styling; ensure visible above all */
.vinyl-cursor{z-index:10000}

/* Hide legacy full-logo animation behavior if any remains */
.hero-svg-full{display:none !important}
.hero-stage.is-collapsing .hero-svg-full,
.hero-stage.is-final .hero-svg-full{display:none !important}

/* Scroll is now very close to native; the JS keeps only a tiny inertia layer */

/* neutralize old fly-in/fly-out logo animation for the new outline-fill hero */
.hero-stage.is-final .hero-svg-mark .logo-svg path,
.hero-svg-mark .logo-svg path{
  animation:none !important;
  opacity:1 !important;
}


/* V12 hero rebuild: KLTV outline -> gradual left-to-right fill, no crooked letters */
.hero-logo-composite{
  position:relative;
  width:min(920px, 74vw);
  aspect-ratio:1961.8475 / 666;
  transform:
    translate3d(var(--warp-x,0px), var(--warp-y,0px), 0)
    perspective(1400px)
    rotateX(var(--warp-rx,0deg))
    rotateY(var(--warp-ry,0deg));
  transform-style:preserve-3d;
  will-change:transform, filter;
}
.kltv-outline-layer,
.kltv-fill-mask{
  position:absolute;
  inset:0;
}
.kltv-fill-mask{
  width:0;
  overflow:hidden;
  transition:width 2.15s cubic-bezier(.16,.84,.18,1);
}
.hero-stage.is-kltv-fill .kltv-fill-mask{
  width:100%;
}
.logo-svg-outline,
.logo-svg-fill{
  display:block;
  width:100%;
  height:100%;
  overflow:visible;
}
.logo-svg-outline path{
  fill:transparent !important;
  stroke-linejoin:round;
  stroke-linecap:round;
  vector-effect:non-scaling-stroke;
  stroke-width:4.25 !important;
}
.logo-svg-outline path:nth-of-type(1),
.logo-svg-outline path:nth-of-type(3),
.logo-svg-outline path:nth-of-type(4){
  stroke:#1b2728 !important;
}
.logo-svg-outline path:nth-of-type(2){
  stroke:#e0419c !important;
}
.logo-svg-fill path{
  stroke:none !important;
  vector-effect:non-scaling-stroke;
}
.logo-svg-fill path:nth-of-type(1),
.logo-svg-fill path:nth-of-type(3),
.logo-svg-fill path:nth-of-type(4){
  fill:#1b2728 !important;
}
.logo-svg-fill path:nth-of-type(2){
  fill:#e0419c !important;
}
.hero-logo-composite .logo-svg path{
  transform-box:fill-box;
  transform-origin:center;
  transition:transform .12s cubic-bezier(.2,.78,.2,1);
}
.hero-stage.is-hoverable .hero-logo-composite{
  filter:url(#kltvLiquidWarp);
  cursor:none;
}
.hero-stage.is-hoverable .hero-logo-composite:hover{
  filter:url(#kltvLiquidWarp) drop-shadow(0 20px 28px rgba(28,38,41,.15));
}

/* Wordmark outline then gradual fill after KLTV */
.hero-wordmark{
  position:relative;
  display:inline-grid;
  place-items:center;
  margin:-.35rem 0 -.65rem;
  font-size:clamp(1.55rem, 2.65vw, 2.55rem);
  line-height:1;
  letter-spacing:-.045em;
  font-weight:760;
}
.hero-wordmark .word-outline,
.hero-wordmark .word-fill{
  grid-area:1 / 1;
}
.hero-wordmark .word-outline{
  color:transparent;
  -webkit-text-stroke:1px #1b2728;
  text-stroke:1px #1b2728;
}
.hero-wordmark .word-fill{
  color:#1b2728;
  clip-path:inset(0 100% 0 0);
  transition:clip-path 1.2s cubic-bezier(.18,.82,.18,1);
}
.hero-stage.is-word-fill ~ .hero-wordmark .word-fill{
  clip-path:inset(0 0 0 0);
}

/* neutralize old hero SVG rules from previous prototypes */
.hero-svg,
.hero-svg-mark,
.hero-svg-full,
.hero-logo,
.logo-svg-mark{
  display:none !important;
}
.hero-stage .logo-svg-mark path,
.hero-stage.is-final .hero-svg-mark .logo-svg path{
  animation:none !important;
}

/* tighter first header area */
.site-header{
  min-height:54px;
  padding-top:6px;
  padding-bottom:6px;
}
.brand-link img{height:24px}

@media (max-width:860px){
  .hero-logo-composite{width:min(96vw, 680px)}
  .logo-svg-outline path{stroke-width:3.6 !important}
}


/* V13 fixes: remove scroll blocker, thinner outline, same wipe-fill, letter-by-letter 3D hover */

/* KLTV fill should behave exactly like KULTIVATE. text: a left-to-right clip wipe */
.kltv-fill-mask{
  width:100% !important;
  clip-path:inset(0 100% 0 0);
  transition:clip-path 1.35s cubic-bezier(.18,.82,.18,1) !important;
}
.hero-stage.is-kltv-fill .kltv-fill-mask{
  clip-path:inset(0 0 0 0);
}

/* KLTV outline: half of previous thickness */
.logo-svg-outline path{
  stroke-width:2.1 !important;
}

/* Remove the failed magnetic/fluid filter entirely */
.hero-stage.is-hoverable .hero-logo-composite,
.hero-stage.is-hoverable .hero-logo-composite:hover,
.hero-logo-composite{
  filter:none !important;
}

/* New letter-specific hover effect: 3D-ish bulge per actual letter only */
.hero-logo-composite .logo-svg path{
  transform-box:fill-box;
  transform-origin:center;
  transition:
    transform .22s cubic-bezier(.16,.84,.18,1),
    filter .22s cubic-bezier(.16,.84,.18,1);
}
.hero-logo-composite .logo-svg path.is-letter-bulge{
  filter:drop-shadow(0 18px 20px rgba(28,38,41,.16));
}

/* No decorative circle behind Spotify button */
.playlists-lean .playlist-links-lean::after{display:none !important;}

/* native wheel scrolling restored; anchor links still smooth */
html{scroll-behavior:smooth}


/* V14 final spacing/header/cursor/scroll tuning */
:root{--header-h:60px}
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  margin:0;
  min-height:60px;
  height:60px;
  padding-top:0;
  padding-bottom:0;
  align-items:center;
}
main{
  padding-top:60px;
}
.hero-section{
  min-height:calc(100vh - 60px);
}
.hero-logo-composite{
  width:min(800px, 64vw);
}
.hero-wordmark{
  margin:.95rem 0 -.15rem;
}

/* make sure the custom vinyl cursor is visible again on desktop */
@media (hover:hover) and (pointer:fine){
  html, body, a, button, .hero-logo-composite{cursor:none !important}
  .vinyl-cursor{
    display:block !important;
    opacity:0;
    visibility:visible;
  }
  .vinyl-cursor.is-visible{
    opacity:.82 !important;
  }
}


/* V16 sequence: ticker appears as third hero step after KLTV + KULTIVATE fill */
.hero-section .ticker{
  opacity:0 !important;
  transform:translateX(-50%) translateY(18px) scale(.985) !important;
  transition:opacity .62s cubic-bezier(.18,.82,.18,1), transform .62s cubic-bezier(.18,.82,.18,1);
}
.hero-section.is-ticker-visible .ticker{
  opacity:1 !important;
  transform:translateX(-50%) translateY(0) scale(1) !important;
}
@media (max-width:860px){
  .hero-section .ticker,
  .hero-section.is-ticker-visible .ticker{
    transform:none !important;
  }
}


/* V17 cursor restore */
@media (hover:hover) and (pointer:fine){
  html, body, a, button, .hero-logo-composite{
    cursor:none !important;
  }
  .vinyl-cursor{
    position:fixed !important;
    left:0 !important;
    top:0 !important;
    display:block !important;
    visibility:visible !important;
    pointer-events:none !important;
    z-index:2147483647 !important;
  }
  .vinyl-cursor.is-visible{
    opacity:.82 !important;
  }
}


/* Legal pages */
.legal-main{
  min-height:70vh;
  padding:calc(var(--header-h) + 72px) max(22px, 5vw) 86px;
}
.legal-card{
  max-width:980px;
  margin:0 auto;
  padding:clamp(28px, 5vw, 64px);
  background:var(--surface-strong);
  border:1px solid rgba(2,245,240,.16);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}
.legal-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 18px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(224,65,156,.18);
  background:rgba(255,255,255,.72);
  color:var(--muted);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.legal-card h1{
  margin:0 0 10px;
  font-size:clamp(2.4rem, 6vw, 5rem);
  line-height:.92;
  letter-spacing:-.06em;
}
.legal-updated{
  margin:0 0 38px;
  color:var(--muted);
}
.legal-card section{
  padding:26px 0;
  border-top:1px solid var(--border);
}
.legal-card h2{
  margin:0 0 12px;
  font-size:clamp(1.18rem, 2vw, 1.55rem);
  line-height:1.1;
  letter-spacing:-.035em;
}
.legal-card p,
.legal-card li{
  color:var(--muted-strong);
  font-size:1rem;
  line-height:1.75;
}
.legal-card p + p{
  margin-top:12px;
}
.legal-card a{
  color:var(--text);
  text-decoration:underline;
  text-decoration-color:rgba(224,65,156,.42);
  text-underline-offset:4px;
}
.legal-card ul{
  margin:0;
  padding-left:1.2rem;
}
@media (max-width:720px){
  .legal-main{
    padding:calc(var(--header-h) + 42px) 16px 64px;
  }
  .legal-card{
    padding:26px 20px;
    border-radius:24px;
  }
}
