/* Royalty Music × Tochka Music — Artist landing */

.land-app {
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}
[data-theme='dark'] .land-app {
  background: #0a0918;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-stagger="1"] { transition-delay: 80ms; }
.reveal[data-stagger="2"] { transition-delay: 160ms; }
.reveal[data-stagger="3"] { transition-delay: 240ms; }
.reveal[data-stagger="4"] { transition-delay: 320ms; }
.reveal[data-stagger="5"] { transition-delay: 400ms; }
.reveal[data-stagger="6"] { transition-delay: 480ms; }

/* ---------- Cursor-reactive aurora background ---------- */
.aurora-host { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.aurora {
  position: absolute; width: 60vmax; height: 60vmax; border-radius: 50%;
  filter: blur(90px); opacity: 0.55;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.aurora.a1 { left: -20vmax; top: -25vmax; background: radial-gradient(closest-side, #6b5ced 0%, transparent 70%); }
.aurora.a2 { right: -25vmax; top: 10vmax; background: radial-gradient(closest-side, #36d6c3 0%, transparent 70%); opacity: 0.32; }
.aurora.a3 { left: 30vmax; bottom: -25vmax; background: radial-gradient(closest-side, #ffd23f 0%, transparent 70%); opacity: 0.18; }
[data-theme='light'] .aurora { opacity: 0.28; }
[data-theme='light'] .aurora.a2 { opacity: 0.18; }
[data-theme='light'] .aurora.a3 { opacity: 0.12; }

/* Subtle grain over everything */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.land-app > * { position: relative; z-index: 2; }

/* ---------- Top nav ---------- */
.land-nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 28px;
  padding: 18px 48px;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
          backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.ln-logo { display: flex; align-items: center; gap: 10px; font-family: 'Inter Tight'; font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; text-decoration: none; color: var(--fg); }
.ln-logo .lm {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, #b8aaff, #6b5ced);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(107,92,237,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.ln-logo small { font-size: 11px; color: var(--fg-3); margin-left: 4px; font-weight: 500; }
.ln-spacer { flex: 1; }
.ln-cta { display: flex; align-items: center; gap: 10px; }
.ln-pill {
  padding: 9px 18px;
  background: linear-gradient(180deg, #7d6dff 0%, #6b5ced 100%);
  color: #fff; font-size: 13.5px; font-weight: 600;
  border-radius: 999px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(107,92,237,0.4), inset 0 1px 0 rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; gap: 8px;
  transition: box-shadow 0.2s, transform 0.05s;
}
.ln-pill:hover { box-shadow: 0 8px 26px rgba(107,92,237,0.6), inset 0 1px 0 rgba(255,255,255,0.18); }
.ln-pill .arr { transition: transform 0.2s; }
.ln-pill:hover .arr { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 80px 48px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(107,92,237,0.35), transparent 60%),
    radial-gradient(700px 500px at 80% 80%, rgba(54,214,195,0.18), transparent 60%),
    linear-gradient(180deg, #0a0918 0%, #0e0c24 100%);
}
[data-theme='light'] .hero-bg {
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(107,92,237,0.18), transparent 60%),
    radial-gradient(700px 500px at 80% 80%, rgba(54,214,195,0.10), transparent 60%),
    var(--bg);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
}
[data-theme='light'] .hero-bg::after {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
.hero-inner { position: relative; max-width: 1280px; margin: 0 auto; width: 100%; text-align: center; color: #fff; }
[data-theme='light'] .hero-inner { color: var(--fg); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
[data-theme='light'] .hero-badge { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); color: var(--fg-2); }
.hero-badge .star {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd23f, #ff6b8a);
  display: grid; place-items: center; color: #1a1640;
  box-shadow: 0 0 0 0 rgba(255,210,63,0.6);
  animation: heroPulse 2.4s ease-out infinite;
}
@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,210,63,0.55); }
  70% { box-shadow: 0 0 0 14px rgba(255,210,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,210,63,0); }
}

.hero-h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero-h1 .word { display: inline-block; opacity: 0; transform: translateY(40px); animation: wordIn 0.95s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-h1 .word.w1 { animation-delay: 0.05s; }
.hero-h1 .word.w2 { animation-delay: 0.18s; }
.hero-h1 .word.w3 { animation-delay: 0.31s; }
.hero-h1 .word.w4 { animation-delay: 0.44s; }
.hero-h1 .word.w5 { animation-delay: 0.57s; }
@keyframes wordIn { to { opacity: 1; transform: none; } }
.hero-h1 em {
  font-style: normal; position: relative;
  background: linear-gradient(110deg, #ffd23f 0%, #ff6b8a 40%, #b8aaff 70%, #36d6c3 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradShift 7s linear infinite;
}
@keyframes gradShift { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }

.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55; color: rgba(255,255,255,0.72);
  margin: 0 auto 36px; max-width: 620px;
  opacity: 0; transform: translateY(20px); animation: wordIn 0.9s 0.7s cubic-bezier(.2,.7,.2,1) forwards;
}
[data-theme='light'] .hero-sub { color: var(--fg-2); }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-bottom: 56px; opacity: 0; animation: wordIn 0.9s 0.85s cubic-bezier(.2,.7,.2,1) forwards; flex-wrap: wrap; }
.btn-big {
  padding: 16px 26px;
  background: linear-gradient(180deg, #7d6dff 0%, #6b5ced 100%);
  color: #fff; font-size: 15px; font-weight: 600;
  border-radius: 14px; text-decoration: none;
  box-shadow: 0 12px 32px rgba(107,92,237,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; gap: 10px;
  transition: box-shadow 0.2s, transform 0.1s;
  position: relative; overflow: hidden;
}
.btn-big::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s;
}
.btn-big:hover { box-shadow: 0 16px 42px rgba(107,92,237,0.66), inset 0 1px 0 rgba(255,255,255,0.18); transform: translateY(-1px); }
.btn-big:hover::after { left: 130%; }
.btn-big .arr { transition: transform 0.2s; }
.btn-big:hover .arr { transform: translateX(4px); }
.btn-ghost {
  padding: 15px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 15px; font-weight: 600;
  border-radius: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
[data-theme='light'] .btn-ghost { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); color: var(--fg); }

/* Floating KPI cards */
.kpi-cloud { position: relative; height: 280px; max-width: 980px; margin: 0 auto; opacity: 0; animation: wordIn 1s 1s cubic-bezier(.2,.7,.2,1) forwards; }
.kpi-card {
  position: absolute;
  background: rgba(20,18,46,0.65);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 16px 18px;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
          backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  text-align: left;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}
[data-theme='light'] .kpi-card { background: rgba(255,255,255,0.85); border-color: rgba(0,0,0,0.06); box-shadow: 0 24px 60px rgba(15,12,40,0.12); color: var(--fg); }
.kpi-card.k1 { left: 4%; top: 8%; animation-delay: -2s; }
.kpi-card.k2 { left: 32%; top: 32%; animation-delay: -4s; }
.kpi-card.k3 { right: 30%; top: 8%; animation-delay: -1s; }
.kpi-card.k4 { right: 2%; top: 36%; animation-delay: -3s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.kpi-card .l { font-size: 10.5px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
[data-theme='light'] .kpi-card .l { color: var(--fg-3); }
.kpi-card .v { font-family: 'Inter Tight'; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 8px; }
[data-theme='light'] .kpi-card .v { color: var(--fg); }
.kpi-card .v .delta { font-size: 11px; color: #36d6c3; padding: 2px 7px; border-radius: 6px; background: rgba(54,214,195,0.14); }
.kpi-card .meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 5px; }
[data-theme='light'] .kpi-card .meta { color: var(--fg-3); }

/* Equalizer */
.eq { display: inline-flex; gap: 3px; align-items: end; height: 16px; }
.eq i { width: 3px; background: linear-gradient(180deg, #ffd23f, #ff6b8a); border-radius: 2px; animation: eq 1.2s ease-in-out infinite; }
.eq i:nth-child(1) { height: 60%; animation-delay: -0.3s; }
.eq i:nth-child(2) { height: 100%; animation-delay: -0.5s; }
.eq i:nth-child(3) { height: 70%; animation-delay: -0.1s; }
.eq i:nth-child(4) { height: 90%; animation-delay: -0.7s; }
.eq i:nth-child(5) { height: 50%; animation-delay: -0.4s; }
@keyframes eq {
  0%,100% { transform: scaleY(0.3); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 5px); }
}

/* ---------- Section base ---------- */
.section { padding: 130px 48px; position: relative; }
.section-narrow { max-width: 1280px; margin: 0 auto; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 500; color: var(--brand-2);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.sec-eyebrow::before {
  content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.5;
}
.sec-h2 {
  font-family: 'Inter Tight';
  font-size: clamp(34px, 4.5vw, 58px); line-height: 1.04; font-weight: 700; letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 880px;
}
.sec-h2 em {
  font-style: normal;
  background: linear-gradient(110deg, #ffd23f, #ff6b8a, #b8aaff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.sec-sub {
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; color: var(--fg-2);
  max-width: 660px; margin: 0 0 60px;
}

/* ---------- Cabinet preview block ---------- */
.cab {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, #1a1640 0%, #15132e 60%, #11102a 100%);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 50px 110px rgba(15,12,40,0.45);
}
.cab::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 500px at 0% 0%, rgba(140,118,255,0.35), transparent 60%),
    radial-gradient(500px 400px at 100% 100%, rgba(54,214,195,0.18), transparent 60%);
}
.cab-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,0.6); font-size: 12px; }
.cab-bar .dt { width: 9px; height: 9px; border-radius: 50%; background: #ff6b8a; }
.cab-bar .dt.g { background: #ffd23f; }
.cab-bar .dt.b { background: #34d39a; }
.cab-bar .ttl { font-family: 'Inter Tight'; font-weight: 600; color: #fff; margin-left: 8px; font-size: 13.5px; }
.cab-bar .ttl small { color: rgba(255,255,255,0.45); font-weight: 400; margin-left: 6px; }

.cab-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 20px; }
.cab-col-l { display: flex; flex-direction: column; gap: 14px; }
.cab-col-r { display: flex; flex-direction: column; gap: 14px; }

.cab-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  color: #fff;
}
.cab-tile h6 { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 10px; font-weight: 500; }
.cab-tile .big { font-family: 'Inter Tight'; font-size: 30px; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cab-tile .delta { color: #36d6c3; font-size: 12px; margin-top: 4px; }

/* Streams chart in cabinet */
.streams-chart { height: 140px; position: relative; }
.streams-chart svg { width: 100%; height: 100%; display: block; }

/* Top tracks list */
.tracks { display: flex; flex-direction: column; gap: 8px; }
.track-row {
  display: grid; grid-template-columns: 28px 1fr auto; gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  align-items: center;
  color: #fff;
}
.track-row .num { font-family: 'JetBrains Mono'; font-size: 12px; color: rgba(255,255,255,0.4); }
.track-row .nm { font-size: 13.5px; font-weight: 600; }
.track-row .nm small { display: block; font-weight: 400; font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 1px; }
.track-row .pl { font-family: 'JetBrains Mono'; font-size: 11.5px; color: rgba(255,255,255,0.65); }

/* Platform pills inside cabinet */
.plat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.plat-pill {
  padding: 10px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: #fff;
  font-size: 11.5px;
}
.plat-pill .nm { font-family: 'Inter Tight'; font-weight: 600; font-size: 12.5px; }
.plat-pill .vl { font-family: 'JetBrains Mono'; font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.plat-pill .br { height: 3px; background: rgba(255,255,255,0.1); border-radius: 99px; margin-top: 8px; overflow: hidden; }
.plat-pill .br i { display: block; height: 100%; border-radius: inherit; transition: width 1.2s cubic-bezier(.2,.7,.2,1); }

/* ---------- Big features ---------- */
.bigfeat {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-bottom: 140px;
}
.bigfeat:nth-child(even) > .bf-visual { order: -1; }
.bigfeat:last-child { margin-bottom: 0; }
.bf-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: color-mix(in oklab, var(--brand) 18%, transparent);
  border: 1px solid color-mix(in oklab, var(--brand) 36%, transparent);
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600; color: var(--brand-2);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 18px;
}
.bf-h {
  font-family: 'Inter Tight';
  font-size: clamp(28px, 3vw, 42px); line-height: 1.1; font-weight: 700; letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.bf-t { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin: 0 0 28px; }
.bf-list { display: flex; flex-direction: column; gap: 14px; }
.bf-li { display: flex; align-items: flex-start; gap: 14px; font-size: 14.5px; color: var(--fg); line-height: 1.55; }
.bf-li .ck {
  width: 26px; height: 26px; border-radius: 999px;
  background: color-mix(in oklab, var(--brand) 18%, transparent);
  border: 1px solid color-mix(in oklab, var(--brand) 42%, transparent);
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--brand-2);
  margin-top: -1px;
}

.bf-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1640 0%, #11102a 100%);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 26px;
  box-shadow: 0 40px 90px rgba(15,12,40,0.4);
  isolation: isolate;
}
.bf-visual::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(500px 400px at var(--mx-l, 80%) var(--my-l, 0%), rgba(140,118,255,0.32), transparent 60%);
  transition: background 0.8s;
}

/* Visual: split donut */
.vis-split { display: flex; flex-direction: column; gap: 20px; height: 100%; color: #fff; }
.vis-split .head { display: flex; align-items: center; justify-content: space-between; }
.vis-split .h-l { font-family: 'Inter Tight'; font-weight: 600; font-size: 15px; }
.vis-split .h-l small { display: block; font-weight: 400; color: rgba(255,255,255,0.5); font-size: 11.5px; margin-top: 1px; }
.vis-split .h-r { font-family: 'JetBrains Mono'; font-size: 12px; color: rgba(255,255,255,0.55); }
.vs-body { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; flex: 1; }
.vs-legend { display: flex; flex-direction: column; gap: 14px; }
.vs-leg { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.vs-leg .d { width: 12px; height: 12px; border-radius: 4px; }
.vs-leg .n { color: #fff; font-weight: 500; }
.vs-leg .n small { display: block; color: rgba(255,255,255,0.5); font-weight: 400; font-size: 11px; margin-top: 1px; }
.vs-leg .p { margin-left: auto; font-family: 'JetBrains Mono'; font-size: 12px; color: rgba(255,255,255,0.7); }

/* Visual: documents */
.vis-docs { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.doc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.4s;
}
.doc-card.fresh { animation: docPop 0.8s cubic-bezier(.2,.7,.2,1); }
@keyframes docPop {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: none; }
}
.doc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.doc-name { font-family: 'Inter Tight'; font-weight: 600; font-size: 14px; }
.doc-name small { display: block; font-weight: 400; color: rgba(255,255,255,0.5); font-size: 11px; margin-top: 1px; }
.doc-stamp {
  padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
}
.doc-stamp.green { background: rgba(54,214,195,0.18); color: #36d6c3; border: 1px solid rgba(54,214,195,0.32); }
.doc-stamp.amber { background: rgba(255,210,63,0.18); color: #ffd23f; border: 1px solid rgba(255,210,63,0.32); }
.doc-stamp.purple { background: rgba(140,118,255,0.20); color: #b8aaff; border: 1px solid rgba(140,118,255,0.36); }
.doc-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 12.5px; color: rgba(255,255,255,0.7); }
.doc-row.bold { color: #fff; font-weight: 600; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,0.12); margin-top: 4px; }
.doc-row .v { font-family: 'JetBrains Mono'; }

/* ---------- Capabilities ---------- */
.capa-section { padding: 130px 48px; position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.perk-card {
  position: relative;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.perk-card::before {
  content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: radial-gradient(360px 240px at var(--px, 50%) var(--py, 0%), color-mix(in oklab, var(--brand) 24%, transparent), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.perk-card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: 0 20px 50px rgba(107,92,237,0.22); }
.perk-card:hover::before { opacity: 1; }
.perk-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.perk-card:hover .perk-ico { transform: rotate(-6deg) scale(1.06); }
.perk-h { font-family: 'Inter Tight'; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.perk-t { font-size: 14px; line-height: 1.55; color: var(--fg-2); }

.principles {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  margin-top: 70px; padding-top: 36px;
  border-top: 1px solid var(--line);
}
.principle {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter Tight'; font-size: 14px; font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}
.principle .dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 12px currentColor; }

@media (max-width: 1024px) {
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .capa-section { padding: 80px 24px; }
}
@media (max-width: 640px) {
  .perks-grid { grid-template-columns: 1fr; }
  .principles { gap: 16px; }
}

/* ---------- Roster (artists strip) — DEPRECATED, kept as no-op ---------- */
.roster-section {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.roster-head { padding: 0 48px 60px; max-width: 1280px; margin: 0 auto; text-align: center; }
.marquee { display: flex; gap: 18px; padding: 12px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee.row1 { animation: scrollX 50s linear infinite; }
.marquee.row2 { animation: scrollX 60s linear infinite reverse; margin-top: 18px; }
.marquee:hover { animation-play-state: paused; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.artist-card {
  flex: 0 0 240px;
  border-radius: 16px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  display: flex; gap: 14px; align-items: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.artist-card:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: 0 16px 40px rgba(107,92,237,0.18); }
.artist-cover {
  width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: 'Inter Tight'; font-weight: 700; font-size: 22px; color: #fff;
  position: relative; overflow: hidden;
}
.artist-cover::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.4), transparent 60%);
}
.artist-meta .nm { font-family: 'Inter Tight'; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.artist-meta .gn { font-size: 11.5px; color: var(--fg-3); margin-top: 2px; }
.artist-meta .stats { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--brand-2); margin-top: 5px; display: flex; align-items: center; gap: 5px; }

/* ---------- Stats strip ---------- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.stat-cell { text-align: left; }
.stat-cell .v { font-family: 'Inter Tight'; font-size: clamp(36px, 4vw, 54px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-cell .v em { font-style: normal; background: linear-gradient(110deg, #ffd23f, #ff6b8a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-cell .l { font-size: 13px; color: var(--fg-3); margin-top: 8px; line-height: 1.4; max-width: 200px; }

/* ---------- CTA ---------- */
.cta-banner {
  position: relative;
  border-radius: 32px;
  padding: 90px 56px;
  background: linear-gradient(165deg, #1a1640 0%, #15132e 55%, #11102a 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 50px 110px rgba(15,12,40,0.5);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 500px at 20% 0%, rgba(140,118,255,0.5), transparent 60%),
    radial-gradient(500px 400px at 80% 100%, rgba(54,214,195,0.25), transparent 60%);
  animation: ctaShift 14s ease-in-out infinite alternate;
}
@keyframes ctaShift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(1px 1px at 22px 18px, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 50px 80px, rgba(255,255,255,0.3), transparent 50%);
  background-size: 160px 120px;
  opacity: 0.18;
}
.cta-h {
  font-family: 'Inter Tight'; font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -0.03em;
  margin: 0 0 18px; text-wrap: balance; line-height: 1.04;
}
.cta-h em {
  font-style: normal;
  background: linear-gradient(110deg, #ffd23f, #ff6b8a, #36d6c3);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradShift 6s linear infinite;
}
.cta-t { font-size: clamp(15px, 1.3vw, 18px); color: rgba(255,255,255,0.72); margin: 0 auto 36px; max-width: 580px; line-height: 1.55; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.cta-mgr {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 13px; color: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.cta-mgr .av {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd23f, #ff6b8a);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; color: #1a1640;
}
.cta-mgr a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.land-footer {
  padding: 70px 48px 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.lf-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
.lf-about { color: var(--fg-2); font-size: 14px; line-height: 1.6; max-width: 320px; }
.lf-col h4 { font-family: 'Inter Tight'; font-size: 12px; font-weight: 600; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.08em; margin: 6px 0 16px; }
.lf-col a { display: block; color: var(--fg-2); font-size: 14px; padding: 6px 0; text-decoration: none; transition: color 0.15s; }
.lf-col a:hover { color: var(--fg); }
.lf-bot {
  max-width: 1280px; margin: 50px auto 0; padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--fg-3);
  flex-wrap: wrap; gap: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding: 80px 24px; }
  .hero { padding: 60px 24px; min-height: 80vh; }
  .land-nav { padding: 14px 24px; gap: 14px; }
  .cab-grid { grid-template-columns: 1fr; }
  .bigfeat { grid-template-columns: 1fr; gap: 32px; margin-bottom: 80px; }
  .bigfeat:nth-child(even) > .bf-visual { order: 0; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lf-grid { grid-template-columns: 1fr 1fr; }
  .kpi-cloud { height: 240px; }
  .kpi-card { padding: 12px 14px; }
}
@media (max-width: 640px) {
  .kpi-cloud { display: none; }
  .stats-row { grid-template-columns: 1fr; }
  .lf-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 24px; }
}
