:root {
  --bg: #fafaf9;
  --bg-alt: #f4f2ff;
  --surface: #ffffff;
  --text: #0f0f12;
  --text-secondary: #52525b;
  --text-muted: #71717a;
  --border: #e4e4e7;
  --primary: #6d28d9;
  --primary-light: #8b5cf6;
  --primary-dark: #5b21b6;
  --accent: #e11d48;
  --accent-light: #fb7185;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(109, 40, 217, .08) 0%, rgba(225, 29, 72, .06) 100%);
  --shadow-sm: 0 1px 3px rgba(15, 15, 18, .06);
  --shadow-md: 0 8px 30px rgba(109, 40, 217, .12);
  --shadow-lg: 0 20px 60px rgba(109, 40, 217, .18);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 72px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 250, 249, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 228, 231, .6);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-go {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 4px;
}

.nav a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .15s, background .15s;
}

.nav a:hover {
  color: var(--primary);
  background: rgba(109, 40, 217, .06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 4% 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-nav a:hover { background: var(--bg-alt); color: var(--primary); }
.mobile-nav .mobile-cta { margin-top: 8px; text-align: center; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 11px;
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, background .2s, color .2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 4px 16px rgba(109, 40, 217, .3);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(109, 40, 217, .38);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

.btn-ghost:hover { color: var(--primary); background: rgba(109, 40, 217, .06); }

.btn-white {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.btn-white:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, .16); }

.btn-ghost-white {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .1);
}

.btn-ghost-white:hover { background: rgba(255, 255, 255, .18); }

.btn-lg { padding: 14px 24px; font-size: .95rem; border-radius: 13px; }

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  color: var(--text);
}

.btn-icon:hover { border-color: var(--primary-light); color: var(--primary); }

.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(109, 40, 217, .14), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(225, 29, 72, .1), transparent),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.stat span {
  font-size: .8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-showcase {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.phone-glow {
  position: absolute;
  inset: 10% 5%;
  background: var(--gradient);
  filter: blur(60px);
  opacity: .25;
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: .2; transform: scale(1); }
  50% { opacity: .32; transform: scale(1.05); }
}

.phone-frame {
  position: relative;
  margin: 0 auto;
  width: min(280px, 100%);
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(160deg, #1a1a2e, #2d2d44);
  box-shadow: var(--shadow-lg);
  animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0f0f12;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 10 / 20.5;
  object-fit: cover;
  background: #f4f4f5;
  transition: opacity .3s ease;
}

.phone-frame.changing img { opacity: .5; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  animation: floatCard 3s ease-in-out infinite;
}

.float-card strong { display: block; font-size: .82rem; }
.float-card span { font-size: .72rem; color: var(--text-muted); }

.float-card-queue {
  left: -24px;
  top: 28%;
  animation-delay: 0s;
}

.float-card-booking {
  right: -24px;
  bottom: 22%;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.queue-icon { background: #ede9fe; color: var(--primary); }
.booking-icon { background: #ffe4e6; color: var(--accent); }

.phone-meta {
  text-align: center;
  margin-top: 20px;
}

.phone-meta h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.phone-meta p {
  margin: 4px 0 0;
  font-size: .85rem;
  color: var(--text-muted);
  font-family: ui-monospace, monospace;
}

.phone-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.phone-dots {
  display: flex;
  gap: 6px;
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, transform .2s;
}

.phone-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.trust-bar {
  padding: 20px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-dot { color: var(--primary-light); }

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}

.story-copy h2 {
  margin: 10px 0 20px;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.story-lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 16px;
}

.story-copy p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.story-pillars {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.pillar {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.pillar-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
}

.pillar span:last-child {
  font-size: .92rem;
  color: var(--text-secondary);
}

.story-quote-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  color: #fff;
  margin-bottom: 20px;
}

.story-quote-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  font-style: italic;
}

.story-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-categories li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mission-card-head {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
}

.mission-card-head.artist-head {
  background: linear-gradient(135deg, rgba(109, 40, 217, .06), rgba(109, 40, 217, .02));
}

.mission-card-head.client-head {
  background: linear-gradient(135deg, rgba(225, 29, 72, .06), rgba(225, 29, 72, .02));
}

.mission-role {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: 6px;
}

.client-head .mission-role { color: var(--accent); }

.mission-card-head h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.mission-block {
  padding: 20px 24px;
}

.mission-block + .mission-block {
  border-top: 1px solid var(--border);
}

.mission-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.problem-tag {
  background: #fef2f2;
  color: #b91c1c;
}

.solution-tag {
  background: #f0fdf4;
  color: #15803d;
}

.mission-block p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: .95rem;
}

.solution-block {
  background: rgba(240, 253, 244, .35);
}

.feature-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--gradient-soft);
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.artsy-section { padding-top: 0; }

.artsy-card {
  position: relative;
  border: 1px solid rgba(109, 40, 217, .2);
  border-radius: 28px;
  padding: 40px;
  background: linear-gradient(145deg, #0f0f12 0%, #1a1033 50%, #1f0a1a 100%);
  color: #fff;
  overflow: hidden;
}

.artsy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(139, 92, 246, .25), transparent);
  pointer-events: none;
}

.artsy-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #e9d5ff;
}

.artsy-grid {
  position: relative;
  display: grid;
  gap: 32px;
}

.artsy-copy .eyebrow { color: #c4b5fd; }
.artsy-copy h2 { color: #fff; margin-top: 10px; }
.artsy-copy .section-intro { color: #a1a1aa; max-width: 62ch; }

.artsy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.artsy-col {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

.artsy-col h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #e9d5ff;
}

.artsy-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.artsy-col li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: .92rem;
  color: #d4d4d8;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.artsy-col li:last-child { border-bottom: none; }

.artsy-col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #a78bfa;
  font-size: .85rem;
}

.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }

.section-head.center .section-intro {
  margin: 12px auto 0;
}

.eyebrow {
  margin: 0;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
}

.section h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.section-intro {
  margin: 0;
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 3; }

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}

.bento-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.bento-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: .95rem;
}

.audience-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-secondary);
  transition: all .2s;
}

.tab-btn:hover { border-color: var(--primary-light); color: var(--primary); }

.tab-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(109, 40, 217, .25);
}

.audience-panel { display: none; }
.audience-panel.active { display: block; }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: .95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.audience-list li:last-child { border-bottom: none; }

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.audience-cta-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  border: 1px solid rgba(109, 40, 217, .15);
}

.audience-cta-card.artist-card {
  background: linear-gradient(135deg, rgba(225, 29, 72, .06), rgba(109, 40, 217, .08));
  border-color: rgba(225, 29, 72, .15);
}

.audience-cta-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.audience-cta-card p {
  margin: 0 0 20px;
  color: var(--text-secondary);
}

.steps-flow {
  display: grid;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  counter-reset: none;
  list-style: none;
  padding: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 68px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-light), var(--accent-light));
  opacity: .3;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(109, 40, 217, .25);
  flex-shrink: 0;
}

.step-body h3 {
  margin: 4px 0 6px;
  font-size: 1.05rem;
}

.step-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: .95rem;
}

.preview-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shot {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform .2s, box-shadow .2s;
}

.shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f4f4f5;
}

.shot .placeholder {
  display: none;
  aspect-ratio: 16 / 10;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(-45deg, #f4f4f5, #f4f4f5 8px, #ececef 8px, #ececef 16px);
  color: var(--text-muted);
  font-size: .85rem;
  text-align: center;
  padding: 16px;
}

.shot .meta { padding: 14px 16px 16px; }
.shot h4 { margin: 0; font-size: .92rem; font-weight: 700; }
.shot .route { margin: 4px 0 0; font-size: .78rem; color: var(--primary); font-family: ui-monospace, monospace; }
.shot .summary { margin: 6px 0 0; font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform .2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.65;
}

.download-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 22px;
}

.release-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(147, 51, 234, .14), rgba(236, 72, 153, .12));
  color: var(--accent);
  font-weight: 800;
  font-size: .9rem;
}

.release-stat {
  color: var(--text-secondary);
  font-size: .92rem;
}

.release-stat strong {
  color: var(--text);
}

.release-notes {
  max-width: 46ch;
  margin: 0 auto 28px;
  text-align: left;
}

.release-notes h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.release-notes ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.6;
}

.release-notes li + li {
  margin-top: 6px;
}

.download-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.download-actions .btn.is-disabled {
  opacity: .55;
  pointer-events: none;
}

.download-steps {
  margin: 0 auto;
  padding: 0;
  max-width: 46ch;
  text-align: left;
  color: var(--text-secondary);
  font-size: .95rem;
  list-style: decimal;
  padding-left: 1.25rem;
}

.download-steps li {
  margin: 0 0 10px;
  padding-left: 4px;
}

.download-steps li:last-child { margin-bottom: 0; }

.download-note {
  margin: 20px 0 0;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 600;
}

.cta-section { padding: 0 0 96px; }

.cta-card {
  position: relative;
  text-align: center;
  padding: 64px 40px;
  border-radius: 28px;
  background: var(--gradient);
  color: #fff;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.15), transparent 60%);
  pointer-events: none;
}

.cta-card h2 {
  position: relative;
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.cta-card p {
  position: relative;
  margin: 0 0 28px;
  opacity: .9;
  font-size: 1.05rem;
}

.cta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: #0f0f12;
  color: #a1a1aa;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .brand { color: #fff; }
.footer-tagline { margin: 12px 0 0; font-size: .9rem; }

.footer-col h4 {
  margin: 0 0 16px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: .9rem;
  transition: color .15s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 24px 0;
  font-size: .85rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: -1; }
  .hero-copy { text-align: center; }
  .lead { margin: 0 auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { order: -1; }
  .mission-grid { grid-template-columns: 1fr; }
  .artsy-columns { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card-queue { left: 0; }
  .float-card-booking { right: 0; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-actions .btn-ghost,
  .nav-actions .btn-primary { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 72px 0; }
  .bento-grid,
  .gallery { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .float-card { display: none; }
  .cta-card { padding: 48px 24px; }
  .artsy-card { padding: 28px 20px; }
  .artsy-badge { top: 16px; right: 16px; }
}

.legal-page {
  padding: calc(var(--header-h) + 32px) 0 64px;
  min-height: 60vh;
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
}

.legal-content a {
  color: var(--primary);
}

.legal-content ul {
  padding-left: 1.25rem;
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
}
