/* ═══════════ CUSTOM PROPERTIES ═══════════ */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg-deep: #070707;
  --bg-mid: #0c0c0c;
  --bg-surface: #111111;
  --bg-card: rgba(17, 17, 17, 0.6);
  --bg-card-hover: rgba(22, 22, 22, 0.8);
  --text-primary: #f0ebe0;
  --text-secondary: #a8a49c;
  --text-dim: #9f9b92;
  --accent: #c9a84c;
  --accent-bright: #d4b860;
  --accent-mid: #b89840;
  --accent-dark: #8a6820;
  --accent-muted: #a89040;
  --success: #7ab648;
  --success-deep: #5a8a34;
  --success-dim: #3d6b22;
  --glow-accent: rgba(201, 168, 76, 0.12);
  --glow-accent-strong: rgba(201, 168, 76, 0.22);
  --rose: #c4726a;
  --rose-dim: rgba(196, 114, 106, 0.12);
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'SF Mono', 'Fira Code', monospace;
  --font-brand: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --nav-height: 64px;
}

/* ═══════════ RESET & BASE ═══════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  background: var(--bg-deep);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ═══════════ SCROLL PROGRESS BAR ═══════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-bright));
  z-index: 10001;
  transition: width 0.05s linear;
}

/* ═══════════ FLOATING NAV ═══════════ */
.floating-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.floating-nav.scrolled {
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(201,168,76,0.06), 0 8px 32px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: 0.13em;
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 400;
}
.wm-private { color: var(--text-primary); }
.wm-press { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }
/* Variant E — Compact with animated arrow (nav bar) */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bg-deep);
  background: var(--text-primary);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, gap 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.18), 0 4px 12px rgba(0,0,0,0.2);
  gap: 10px;
}
.nav-cta svg {
  opacity: 0.5;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.nav-cta:hover svg {
  transform: translateY(2px);
  opacity: 0.8;
}

/* ═══════════ SECTION DEFAULTS ═══════════ */
section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 600;
}
h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 520px;
  font-weight: 400;
  line-height: 1.7;
}

/* ═══════════ SCROLL REVEAL ANIMATIONS ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px) translateY(10px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px) translateY(10px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.reveal-fast {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-fast.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-gentle {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-gentle.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════ AMBIENT GLOW ZONES ═══════════ */
.glow-zone {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════
   HERO — VOCAL MOCKUP-DOMINANT
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 32px 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0c0c0c 100%);
}

/* ═══════════ VOCAL HERO ═══════════ */

/* Headline block — tight, punchy, vocal */
.hero-text {
  text-align: center;
  max-width: 700px;
  margin-bottom: 48px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.hero-h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.35s forwards;
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-h1 .hero-strike {
  text-decoration: line-through;
  text-decoration-color: var(--rose);
  text-decoration-thickness: 2px;
  color: var(--text-dim);
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease;
}
.hero-cta:hover { background: var(--accent-bright); transform: translateY(-1px); }
.hero-footnote {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* App mockup — dominant, centered */
.hero-mockup-wrap {
  width: 100%;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.8s forwards;
}
.app-mockup {
  background: #0c0c0e;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,168,76,0.03),
    0 0 80px rgba(201,168,76,0.02);
  overflow: hidden;
  transform: perspective(1400px) rotateX(2deg);
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.app-mockup:hover {
  transform: perspective(1400px) rotateX(0deg);
}

/* Chrome */
.mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(18,18,20,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #febc2e; }
.mock-dot.g { background: #28c840; }
.mock-chrome-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Toolbar */
.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  background: rgba(10,10,12,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mock-tabs { display: flex; gap: 2px; }
.mock-tab {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--text-dim);
}
.mock-tab.active {
  color: var(--accent);
  background: rgba(201,168,76,0.06);
}
.mock-toolbar-right {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
}

/* Source + filters */
.mock-source {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(10,10,12,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 11px;
  color: var(--text-secondary);
}
.mock-source-status {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--success);
}
.mock-filters {
  display: flex;
  gap: 4px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.mock-chip {
  font-family: var(--font-display);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.04);
}
.mock-chip.active {
  color: var(--bg-deep);
  background: var(--accent);
  border-color: var(--accent);
}

/* Gallery */
.mock-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 10px;
}
.mock-album { position: relative; }
.mock-album-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
}
.mock-album-title {
  font-size: 9px;
  color: var(--text-secondary);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-album-artist {
  font-size: 7px;
  color: var(--text-dim);
}
.mock-status-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.mock-sd-pressed { background: var(--success); }
.mock-sd-missing { background: var(--rose); }
.mock-sd-lowres { background: var(--accent); }
.mock-sd-library { background: #d4883a; }

/* Missing tile — concentric arcs */
.mock-album-missing {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  background: #0e0e10;
  border: 1px dashed rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.mock-album-missing svg {
  position: absolute;
  width: 65%;
  height: 65%;
  top: 17%;
  left: 17%;
}

/* Low-res pixelated */
.mock-album-lowres {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  opacity: 0.65;
  border: 1px solid rgba(201,168,76,0.12);
}
.mock-album-lowres canvas {
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  display: block;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Legacy CTA (used by final CTA section) ── */

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.download-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--text-primary);
  color: var(--bg-deep);
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.download-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.2), 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
}
.download-cta-btn svg { opacity: 0.5; }

.cta-footnote-detail {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.5;
  margin-top: 4px;
  letter-spacing: 0.2px;
}

.cta-footnote {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 400;
}





/* ═══════════════════════════════════════════════
   EDITORIAL ROW LAYOUT
═══════════════════════════════════════════════ */
.editorial-row {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  max-width: 1120px;
  margin: 0 auto 120px;
  align-items: center;
}
.editorial-row:last-child {
  margin-bottom: 0;
}
.editorial-row.reversed {
  grid-template-columns: 45% 55%;
}
.editorial-row.reversed .editorial-text {
  order: 2;
}
.editorial-row.reversed .editorial-illustration {
  order: 1;
}

.editorial-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.editorial-feature {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.editorial-feature:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.feature-glyph {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 16px;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.feature-glyph svg { width: 22px; height: 22px; }

.editorial-feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.editorial-feature p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 400;
}

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.source-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════
   ILLUSTRATION PANELS
═══════════════════════════════════════════════ */
.editorial-illustration {
  perspective: 800px;
}
.illus-panel {
  background: rgba(20, 20, 18, 0.8);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}
.illus-panel:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border-color: rgba(201,168,76,0.15);
}

.illus-panel-header {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}


/* ═══════════════════════════════════════════════
   HOW IT WORKS — PROGRESS TRACK
═══════════════════════════════════════════════ */
.how-it-works {
  padding-top: 80px;
  background: linear-gradient(180deg, #090909 0%, #080808 100%);
}
.how-it-works .section-header { text-align: center; margin-bottom: 48px; }
.how-it-works .section-sub { margin: 0 auto; }

.steps-wrapper {
  position: relative;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}


.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.step:nth-child(2) { direction: rtl; }
.step:nth-child(2) > * { direction: ltr; }
.step:last-child { grid-template-columns: 1fr; text-align: center; max-width: 600px; }

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(201,168,76,0.06);
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 12px rgba(201,168,76,0.06);
  position: relative;
  z-index: 2;
}
.step:last-child .step-number { margin: 0 auto 16px; }


.step h3 { font-size: 24px; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--text-dim); line-height: 1.7; font-weight: 400; font-family: var(--font-body); }

/* ═══════════ SEE IT ═══════════ */
.see-it {
  padding: 120px 0 80px;
  background: var(--bg-deep);
}
.see-it-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.see-it-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.see-it-headline em {
  font-style: normal;
  color: var(--accent);
}

/* Screenshot gallery */
.see-it-screens {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.see-it-screen {
  margin: 0;
}
.see-it-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.10);
  transition: border-color 0.3s ease;
}
.see-it-screen:hover img {
  border-color: rgba(201, 168, 76, 0.25);
}
.see-it-screen figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .see-it { padding: 80px 0 60px; }
  .see-it-inner { padding: 0 24px; }
}
@media (max-width: 600px) {
  .see-it { padding: 60px 0 40px; }
  .see-it-inner { padding: 0 16px; }
  .see-it-headline { margin-bottom: 32px; }
  .see-it-video { margin-bottom: 32px; }
  .see-it-screens { gap: 24px; }
}

/* ═══════════ MANIFEST ═══════════ */
.manifest {
  padding: 100px 32px;
  max-width: 760px;
  margin: 0 auto;
}
.manifest-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.manifest-headline em {
  font-style: normal;
  color: var(--accent);
}
.manifest-items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.manifest-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}
.manifest-marker {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}
.manifest-item-content {}
.manifest-statement {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.manifest-body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
}
.manifest-close {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.06);
}
.manifest-close p {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 460px;
  color: var(--text-primary);
}
.manifest-close em {
  font-style: normal;
  color: var(--accent);
}
.manifest-liner-link {
  display: block;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.08);
  margin-top: 32px;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.manifest-liner-link:hover {
  border-color: rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.03);
}
.manifest-liner-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}
.manifest-liner-desc {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   iPOD / PORTABILITY SECTION
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   PRESS SYNC
═══════════════════════════════════════════════ */
.press-sync {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #080808 0%, #070707 100%);
}

.press-sync .glow-zone {
  width: 700px;
  height: 500px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,168,76,0.07), transparent 65%);
}

/* ═══════════ ILLUSTRATION PANELS ═══════════ */
.illus-panel {
  background: #111113;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.illus-panel:hover {
  border-color: rgba(201,168,76,0.18);
}
.illus-panel-header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.06);
  margin-bottom: 16px;
}
.illus-panel-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Status tags */
.status-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 4px;
}
.tag-low-res { color: #c4614a; background: rgba(196,97,74,0.12); }
.tag-lossless { color: var(--success); background: rgba(122,182,72,0.12); }
.tag-alac { color: var(--text-secondary); background: rgba(168,164,156,0.1); }
.tag-fair { color: #d4883a; background: rgba(212,136,58,0.12); }

/* Coming soon tag */
.coming-soon-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
}

/* ── Scan Panel ── */
.scan-source {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.scan-source span { color: var(--text-primary); }
.scan-steps { display: flex; flex-direction: column; }
.scan-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.scan-step-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scan-step-icon .scan-check { display: none; }
.scan-step-icon .scan-spinner { display: none; }
.scan-step-icon .scan-pending {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-raised, #1A1A1E);
  border: 1.5px solid rgba(201,168,76,0.1);
}
.scan-step.active .scan-pending { display: none; }
.scan-step.active .scan-spinner { display: block; }
.scan-step.active .scan-step-label { color: var(--text-primary); }
.scan-step.done .scan-pending { display: none; }
.scan-step.done .scan-check {
  display: block;
  animation: checkPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scan-step.done .scan-step-label { color: var(--text-primary); }
@keyframes checkPop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.scan-step-label {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-faint, #545454);
  flex: 1;
  transition: color 0.3s ease;
}
.scan-step-detail {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.scan-step.done .scan-step-detail,
.scan-step.active .scan-step-detail { opacity: 1; }
.scan-step-progress {
  display: none;
  width: 100%;
  padding-left: 30px;
  margin-top: 2px;
}
.scan-step.active .scan-step-progress { display: block; }
.scan-progress-track {
  height: 4px;
  background: var(--bg-raised, #1A1A1E);
  border-radius: 2px;
  overflow: hidden;
}
.scan-progress-fill {
  height: 100%;
  background: #2979ff;
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
}
@keyframes spinnerRotate { to { transform: rotate(360deg); } }
.scan-spinner svg { animation: spinnerRotate 1.2s linear infinite; }

/* ── How It Works Step + Panel Layout ── */
.step .step-panel { margin-top: 0; }
.step .step-panel .illus-panel { max-width: 100%; }

/* ── Repair Panel ── */
.repair-header { margin-bottom: 12px; }
.repair-header h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.repair-header p {
  font-size: 11px;
  color: var(--text-secondary);
}
.repair-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.repair-compare {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}
.repair-art-box {
  width: 80px; height: 80px;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
}
.repair-art-box::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}
.repair-art-current { background: linear-gradient(135deg, #1a4a6a, #2a6a9a); border: 1px solid rgba(196,97,74,0.2); }
.repair-art-match { background: linear-gradient(135deg, #1a4a6a, #3a7aba); border: 1px solid rgba(122,182,72,0.25); }
.repair-art-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.repair-compare-arrow { color: var(--text-faint, #545454); flex-shrink: 0; }
.repair-confidence { text-align: center; margin-bottom: 12px; }
.repair-confidence-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--success);
}
.repair-confidence-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.repair-confidence-source {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}
.repair-actions {
  display: flex;
  justify-content: center;
}
.repair-btn-press {
  padding: 6px 24px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  border: none;
  cursor: pointer;
  background: rgba(122,182,72,0.15);
  color: var(--success);
  border: 1px solid rgba(122,182,72,0.25);
}

/* ═══════════ DATA VIGNETTES ═══════════ */
.vignettes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .vignettes-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
.vignette-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}
.vignette-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.18);
}
.vignette-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 20px;
  margin-bottom: 6px;
}
.vignette-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Quality Score Ring ── */
.score-ring-wrap { width: 100px; height: 100px; margin: 8px auto 12px; position: relative; }
.score-ring-wrap svg { width: 100px; height: 100px; transform: rotate(-90deg); }
.score-ring-value { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); font-family: var(--font-mono); font-size: 26px; font-weight: 500; color: var(--text-primary); }
.score-ring-sub { position: absolute; top: 65%; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
.score-ring-anim { animation: scoreRingAnim 1.8s cubic-bezier(0.22,1,0.36,1) forwards; animation-play-state: paused; }
.visible .score-ring-anim, .ln-vignette .score-ring-anim { animation-play-state: running; }
@keyframes scoreRingAnim { to { stroke-dashoffset: 37; } }
.score-counts { display: flex; justify-content: center; gap: 16px; margin-bottom: 4px; }
.score-count { text-align: center; }
.score-count-num { font-family: var(--font-mono); font-size: 14px; font-weight: 500; }
.score-count-label { font-family: var(--font-mono); font-size: 8px; color: var(--text-dim); letter-spacing: 0.05em; }
.score-count-divider { width: 1px; background: rgba(201,168,76,0.08); }

/* ── Provider Bars ── */
.prov-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.prov-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); width: 68px; text-align: right; }
.prov-track { flex: 1; height: 6px; background: var(--bg-raised, #1A1A1E); border-radius: 3px; overflow: hidden; }
.prov-fill { height: 100%; border-radius: 3px; width: 0%; animation-play-state: paused; }
.visible .prov-fill, .ln-vignette .prov-fill { animation-play-state: running; }
.prov-fill.prov-itunes { background: var(--success); animation: provBar 1s cubic-bezier(0.22,1,0.36,1) 0.5s forwards; }
.prov-fill.prov-mb { background: #5ac8fa; animation: provBar2 1s cubic-bezier(0.22,1,0.36,1) 0.8s forwards; }
.prov-fill.prov-discogs { background: #d4883a; animation: provBar3 1s cubic-bezier(0.22,1,0.36,1) 1.1s forwards; }
.prov-score { font-family: var(--font-mono); font-size: 11px; width: 32px; }
.prov-score.prov-winner { color: var(--success); font-weight: 500; }
.prov-score.prov-other { color: var(--text-dim); }
@keyframes provBar { to { width: 98%; } }
@keyframes provBar2 { to { width: 82%; } }
@keyframes provBar3 { to { width: 71%; } }

/* ── Duplicate Detection ── */
.dup-compare { display: flex; gap: 10px; align-items: stretch; margin-bottom: 8px; }
.dup-card { flex: 1; padding: 8px; border-radius: 8px; background: var(--bg-raised, #1A1A1E); position: relative; }
.dup-card-keeper { border: 1px solid rgba(122,182,72,0.2); }
.dup-card-lower { border: 1px solid rgba(201,168,76,0.06); opacity: 0.5; }
.dup-art { width: 100%; aspect-ratio: 1; border-radius: 4px; margin-bottom: 6px; }
.dup-name { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 3px; }
.dup-tags { display: flex; gap: 3px; flex-wrap: wrap; }
.dup-tag { font-family: var(--font-mono); font-size: 7px; padding: 1px 4px; border-radius: 2px; }
.dup-tag-good { background: rgba(122,182,72,0.12); color: var(--success); }
.dup-tag-bad { background: rgba(196,114,106,0.12); color: #c4726a; }
.dup-check {
  position: absolute; top: -5px; right: -5px;
  width: 16px; height: 16px; background: var(--success); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #111113;
}

/* ── Waveform ── */
.wave-bar {
  width: 3px;
  border-radius: 1.5px;
  background: var(--accent);
  opacity: 0;
  animation: waveRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             wavePulse 2s ease-in-out infinite;
  animation-play-state: paused;
}
.visible .wave-bar, .ln-vignette .wave-bar { animation-play-state: running; }
@keyframes waveRise { from { height: 4px; opacity: 0; } to { opacity: 0.3; } }
@keyframes wavePulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }
@keyframes matchBadge {
  0% { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Atomic Writes ── */
.atomic-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100px;
  position: relative;
}
.atomic-file {
  width: 52px; height: 64px;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  position: relative;
  background: var(--bg-raised, #1A1A1E);
}
.atomic-file.temp { border-style: dashed; border-color: rgba(201,168,76,0.2); opacity: 0; animation: tempAppear 0.5s cubic-bezier(0.22,1,0.36,1) 0.5s forwards; animation-play-state: paused; }
.visible .atomic-file.temp, .ln-vignette .atomic-file.temp { animation-play-state: running; }
.atomic-file.verified { opacity: 0; animation: verifiedSwap 0.4s cubic-bezier(0.22,1,0.36,1) 2s forwards; animation-play-state: paused; }
.visible .atomic-file.verified, .ln-vignette .atomic-file.verified { animation-play-state: running; }
@keyframes tempAppear { to { opacity: 1; } }
@keyframes verifiedSwap { 0% { opacity: 0; transform: scale(0.9); } 100% { opacity: 1; transform: scale(1); } }
.atomic-file-label { font-family: var(--font-mono); font-size: 8px; color: var(--text-dim); letter-spacing: 0.08em; }
.atomic-check {
  position: absolute; bottom: -6px; right: -6px;
  width: 16px; height: 16px;
  background: var(--success); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #111113;
  opacity: 0; animation: checkAppear 0.3s ease 1.5s forwards; animation-play-state: paused;
}
.visible .atomic-check, .ln-vignette .atomic-check { animation-play-state: running; }
@keyframes checkAppear { to { opacity: 1; } }
.atomic-arrow { color: var(--accent); opacity: 0; animation: arrowAppear 0.4s ease 1.2s forwards; animation-play-state: paused; }
.visible .atomic-arrow, .ln-vignette .atomic-arrow { animation-play-state: running; }
@keyframes arrowAppear { to { opacity: 0.5; } }
.atomic-swap-label {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 8px; color: var(--success);
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; animation: swapLabelAppear 0.3s ease 2.2s forwards; animation-play-state: paused; white-space: nowrap;
}
@keyframes swapLabelAppear { to { opacity: 0.8; } }

/* ── Format Strips ── */
.format-strips { display: flex; flex-direction: column; gap: 6px; padding: 0 8px; }
.format-strip { display: flex; align-items: center; gap: 6px; height: 18px; }
.format-strip-label { font-family: var(--font-mono); font-size: 9px; color: var(--text-dim); width: 36px; text-align: right; letter-spacing: 0.05em; }
.format-strip-bar { flex: 1; height: 10px; border-radius: 3px; overflow: hidden; display: flex; position: relative; }
.format-audio { flex: 3; background: var(--bg-raised, #1A1A1E); position: relative; }
.format-metadata { flex: 1; background: rgba(201,168,76,0.04); position: relative; }
.format-audio-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-mono); font-size: 7px; color: var(--text-faint, #545454); letter-spacing: 0.1em; pointer-events: none;
}
.meta-front { border-right: 1px solid #1A1A1A; }
.meta-end { border-left: 1px solid #1A1A1A; }
.format-cursor {
  position: absolute; top: 0; left: 0; width: 2px; height: 100%;
  background: var(--accent); opacity: 0;
  animation: cursorSweep 1.5s cubic-bezier(0.22,1,0.36,1) forwards; animation-play-state: paused;
}
.visible .format-cursor, .ln-vignette .format-cursor { animation-play-state: running; }
.format-strip:nth-child(1) .format-cursor { animation-delay: 0.3s; }
.format-strip:nth-child(2) .format-cursor { animation-delay: 0.6s; }
.format-strip:nth-child(3) .format-cursor { animation-delay: 0.9s; }
.format-strip:nth-child(4) .format-cursor { animation-delay: 1.2s; }
@keyframes cursorSweep { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 2px); opacity: 0; } }
.format-written {
  position: absolute; inset: 0; background: rgba(201,168,76,0.12);
  transform: scaleX(0); transform-origin: left;
  animation: metaWrite 0.8s cubic-bezier(0.22,1,0.36,1) forwards; animation-play-state: paused;
}
.visible .format-written, .ln-vignette .format-written { animation-play-state: running; }
.format-strip:nth-child(1) .format-written { animation-delay: 0.8s; }
.format-strip:nth-child(2) .format-written { animation-delay: 1.1s; }
.format-strip:nth-child(3) .format-written { animation-delay: 1.4s; }
.format-strip:nth-child(4) .format-written { animation-delay: 1.7s; }
@keyframes metaWrite { to { transform: scaleX(1); } }


/* ═══════════ PRESS SYNC PANEL (new) ═══════════ */
.sync-panel-coming { border-style: dashed; border-color: rgba(201,168,76,0.15); }
.sync-discovery {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-bottom: 20px; padding: 16px 0;
}
.sync-mac { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sync-mac-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--bg-raised, #1A1A1E); border: 1px solid rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
}
.sync-mac-name { font-family: var(--font-display); font-size: 12px; font-weight: 500; color: var(--text-primary); }
.sync-pulse-zone { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sync-pulse-line { width: 60px; height: 2px; background: var(--bg-raised, #1A1A1E); border-radius: 1px; position: relative; overflow: hidden; }
.sync-pulse-fill {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  display: none;
  animation: syncPulseSweep 2.4s ease-in-out infinite;
}
@keyframes syncPulseSweep { 0% { left: -100%; } 45% { left: 100%; } 50% { left: 100%; } 95% { left: -100%; } 100% { left: -100%; } }
.sync-connected-badge {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--success); background: rgba(122,182,72,0.08); border: 1px solid rgba(122,182,72,0.2);
  padding: 2px 8px; border-radius: 4px; opacity: 0; transition: opacity 0.4s ease;
}

/* Sync stages progress track */
.sync-stages { display: flex; align-items: center; justify-content: center; padding: 8px 0 4px; }
.sync-stage-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sync-stage-icon { width: 18px; height: 18px; position: relative; }
.sync-stage-icon .sync-check-svg { display: none; }
.sync-stage-icon .sync-spinner-svg { display: none; }
.sync-stage-icon .sync-pending-circle { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid rgba(201,168,76,0.12); }
.sync-stage-icon .sync-spinner-svg svg { animation: spinnerRotate 1.2s linear infinite; }
.sync-stage-step.active .sync-pending-circle { display: none; }
.sync-stage-step.active .sync-spinner-svg { display: block; }
.sync-stage-step.active .sync-stage-label { color: var(--text-primary); }
.sync-stage-step.done .sync-pending-circle { display: none; }
.sync-stage-step.done .sync-check-svg { display: block; animation: checkPop 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.sync-stage-step.done .sync-stage-label { color: var(--text-primary); }
.sync-stage-label { font-family: var(--font-display); font-size: 10px; color: var(--text-faint, #545454); transition: color 0.3s ease; white-space: nowrap; }
.sync-stage-line { width: 20px; height: 1.5px; background: rgba(201,168,76,0.08); margin: 0 4px; margin-bottom: 18px; }

/* Sync arbitration */
.sync-arb-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 10px; border-radius: 6px; margin-bottom: 3px;
  background: rgba(201,168,76,0.02); border: 1px solid rgba(201,168,76,0.04);
}
.sync-arb-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); letter-spacing: 0.03em; }
.sync-arb-val { font-family: var(--font-mono); font-size: 10px; }
.sync-arb-val.winner { color: var(--success); font-weight: 500; }
.sync-verdict {
  margin-top: 12px; padding: 8px 10px; border-radius: 6px;
  background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.08);
}
.sync-verdict-text { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .scan-step.done .scan-check,
  .sync-stage-step.done .sync-check-svg { animation: none; }
  .scan-spinner svg,
  .sync-stage-icon .sync-spinner-svg svg { animation: none; }
  .wave-bar { animation: none; opacity: 0.3; }
  .sync-pulse-fill { animation: none; }
  .atomic-file.temp,
  .atomic-file.verified,
  .atomic-check,
  .atomic-arrow,
  .atomic-swap-label { animation: none; opacity: 1; }
  .score-ring-anim { animation: none; stroke-dashoffset: 37; }
  .prov-fill { animation: none; }
  .prov-fill.prov-itunes { width: 98%; }
  .prov-fill.prov-mb { width: 82%; }
  .prov-fill.prov-discogs { width: 71%; }
  .format-cursor { animation: none; opacity: 0; }
  .format-written { animation: none; transform: scaleX(1); }
  [style*="matchBadge"] { animation: none !important; opacity: 1 !important; }
}

/* ═══════════════════════════════════════════════
   INGEST PIPELINE
═══════════════════════════════════════════════ */
.ingest {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #070707 0%, var(--bg-deep) 100%);
}

.ingest .glow-zone {
  width: 700px;
  height: 500px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,168,76,0.05), transparent 65%);
}

/* ── Routing Rules Illustration ── */
.ingest-routes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ingest-route {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.06);
}
.ingest-route-condition {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ingest-route-if {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.ingest-route-format {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.ingest-route-format--flac {
  color: var(--success);
  background: rgba(122,182,72,0.1);
  border: 1px solid rgba(122,182,72,0.2);
}
.ingest-route-format--alac {
  color: #5ac8fa;
  background: rgba(90,200,250,0.1);
  border: 1px solid rgba(90,200,250,0.2);
}
.ingest-route-arrow {
  flex-shrink: 0;
  opacity: 0.5;
}
.ingest-route-dest {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════
   PRIVATE VAULT (homepage section)
═══════════════════════════════════════════════ */
.vault {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #090909 100%);
}

.vault .glow-zone {
  width: 700px;
  height: 500px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,168,76,0.05), transparent 65%);
}

/* ── Encryption Mode Cards ── */
.vault-enc-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vault-enc-card {
  padding: 16px 12px;
  border-radius: 10px;
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.08);
  text-align: center;
  transition: border-color 0.3s ease;
}
.vault-enc-card:hover {
  border-color: rgba(201,168,76,0.18);
}
.vault-enc-card--zk {
  border-color: rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.05);
}
.vault-enc-icon {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1;
}
.vault-enc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.vault-enc-desc {
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1.4;
}


/* ── Vault Pricing (pricing.html) ── */
.vault-pricing-section {
  margin-top: 48px;
  text-align: center;
}
.vault-pricing-heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.vault-pricing-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.vault-pricing-card {
  max-width: 400px;
  margin: 0 auto 24px;
  padding: 32px 28px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 2px solid var(--accent-dark);
  backdrop-filter: blur(12px);
  text-align: left;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.vault-pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
}
.vault-pricing-card-header {
  margin-bottom: 24px;
}
.vault-pricing-card .pricing-tier {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}
.vault-pricing-price {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.vault-pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
}
.vault-pricing-annual {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}
.vault-pricing-requires {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.vault-pricing-card .pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.vault-pricing-card .pricing-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}
.vault-pricing-card .pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}
.pricing-cta--vault {
  display: block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--accent-dark);
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-cta--vault:hover {
  background: rgba(201,168,76,0.14);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
  text-decoration: none;
}
.vault-pricing-footnote {
  max-width: 600px;
  margin: 0 auto;
}

/* ── Vault responsive ── */
@media (max-width: 600px) {
  .vault-enc-modes {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════
   INGEST PIPELINE COMPACT (single-row section)
═══════════════════════════════════════════════ */
.ingest-pipeline-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pipeline-stage {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.08);
}
.pipeline-stage-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pipeline-stage-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}
.pipeline-arrow {
  flex-shrink: 0;
}
.pipeline-example {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(201,168,76,0.06);
}

/* ── Pro feature note ── */
.pro-feature-note {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #a8b4be;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 16px;
  padding: 5px 14px;
  background: rgba(168, 180, 190, 0.06);
  border: 1px solid rgba(168, 180, 190, 0.12);
  border-radius: 20px;
  display: inline-block;
}


/* ═══════════════════════════════════════════════
   FRAMEWORK GRID (in features section)
═══════════════════════════════════════════════ */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
@media (min-width: 1060px) {
  .framework-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.framework-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 8px;
  padding: 8px 10px;
}
.framework-icon {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 2px 4px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}
.framework-footer {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  opacity: 0.6;
  padding-top: 12px;
  border-top: 1px solid rgba(201,168,76,0.06);
}


/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing {
  padding-top: 100px;
  background: linear-gradient(180deg, #070707 0%, var(--bg-deep) 100%);
}
.pricing .section-header { text-align: center; margin-bottom: 72px; }
.pricing .section-sub { margin: 0 auto; }

.pricing .glow-zone {
  width: 600px;
  height: 600px;
  bottom: -100px;
  left: 55%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 65%);
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 36px 24px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing-card:hover { transform: translateY(-4px); }

/* ── Pro card ── */
.pricing-card.pro {
  border: 1px solid var(--accent-muted);
  background: var(--bg-card);
  flex: 1.08;
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(201,168,76,0.08);
  overflow: visible;
}
.pricing-card.pro:hover { transform: scale(1.04) translateY(-4px); }

/* ── Press Run card ── */
.pricing-card.pack {
  border: 1px solid rgba(201,168,76,0.2);
}

@keyframes rotateBorder { to { --border-angle: 360deg; } }

.pricing-card.pro::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: conic-gradient(from var(--border-angle), var(--accent), var(--accent-dark), var(--accent-muted), var(--accent-bright), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorder 6s linear infinite;
  pointer-events: none;
}
.pricing-card.pro::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(201,168,76,0.10), transparent 40%);
  pointer-events: none;
}

.pro-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: linear-gradient(135deg, #a8b4be, #c0ccd6);
  padding: 5px 14px;
  border-radius: 20px;
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 1;
}

.pricing-card .plan-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.65;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.pricing-card h3 {
  font-size: 30px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  text-transform: none;
}
.pricing-card h3 .mono-price {
  font-family: var(--font-mono);
  font-weight: 700;
}
.pricing-card .price {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.pricing-card .price .mono-detail {
  font-family: var(--font-mono);
  font-size: 12px;
}

.pricing-features {
  list-style: none;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.08);
  position: relative;
  z-index: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 400;
}
.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.25);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L7 11L12 5' stroke='%23e8a849' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.pricing-card.pro .pricing-features li::before {
  border-color: rgba(201,168,76,0.4);
  background-color: rgba(201,168,76,0.12);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
}
.pricing-cta:hover { transform: translateY(-2px); }

/* Free card CTA */
.pricing-card:not(.pack):not(.pro) .pricing-cta {
  background: rgba(201,168,76,0.12);
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.25);
}
.pricing-card:not(.pack):not(.pro) .pricing-cta:hover {
  background: rgba(201,168,76,0.18);
  box-shadow: 0 6px 24px rgba(201,168,76,0.12);
}

/* Pack card CTA */
.pricing-card.pack .pricing-cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.15));
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.3);
}
.pricing-card.pack .pricing-cta:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.35), rgba(201,168,76,0.22));
  box-shadow: 0 6px 24px rgba(201,168,76,0.18);
}

/* Pro card CTA */
.pricing-card.pro .pricing-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--bg-deep);
  font-weight: 700;
}
.pricing-card.pro .pricing-cta:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}


/* ── Subtle divider after pricing ── */
.pricing-divider {
  max-width: 200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.1), transparent);
  margin-top: 80px;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 160px 40px 120px;
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #040404 100%);
}
.final-cta .glow-zone {
  width: 500px;
  height: 500px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.07), transparent 60%);
}

.final-cta .final-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 44px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  position: relative;
  z-index: 1;
}
.final-cta .final-icon svg { width: 100%; height: 100%; }
.final-cta h2 { margin-bottom: 36px; position: relative; z-index: 1; }
.final-cta .cta-group {
  position: relative;
  z-index: 1;
  align-items: center;
}

/* ── Animated Half-Press icon ── */

/* Initial hidden state — gated behind .js so icon is visible without JS */
.js .final-icon .pp-arcs-group,
.js .final-icon .pp-s-spindle,
.js .final-icon .pp-right-arc-1,
.js .final-icon .pp-right-arc-2,
.js .final-icon .pp-right-arc-3,
.js .final-icon .pp-right-arc-4,
.js .final-icon .pp-cascade-bars rect,
.js .final-icon .pp-s-divider {
  opacity: 0;
}

/* Phase 1: Slide-in */
.final-icon.pp-animate .pp-arcs-group {
  animation: ppGroupSlideIn calc(var(--speed) * 0.6s) cubic-bezier(0.16, 1, 0.3, 1) both;
}
.final-icon.pp-animate .pp-s-spindle {
  animation: ppGroupSlideIn calc(var(--speed) * 0.6s) cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ppGroupSlideIn {
  0%   { transform: translateX(-70px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Phase 2: Right arcs hold then dissolve */
.final-icon.pp-animate .pp-right-arc-1 {
  animation: ppRetract1 calc(var(--speed) * 1.2s) cubic-bezier(0.4, 0, 0.2, 1) calc(var(--speed) * 0.2s) both;
}
.final-icon.pp-animate .pp-right-arc-2 {
  animation: ppRetract2 calc(var(--speed) * 1.2s) cubic-bezier(0.4, 0, 0.2, 1) calc(var(--speed) * 0.2s) both;
}
.final-icon.pp-animate .pp-right-arc-3 {
  animation: ppRetract3 calc(var(--speed) * 1.2s) cubic-bezier(0.4, 0, 0.2, 1) calc(var(--speed) * 0.2s) both;
}
.final-icon.pp-animate .pp-right-arc-4 {
  animation: ppRetract4 calc(var(--speed) * 1.2s) cubic-bezier(0.4, 0, 0.2, 1) calc(var(--speed) * 0.2s) both;
}

@keyframes ppRetract1 {
  0%   { opacity: 0.92; }
  42%  { opacity: 0.92; }
  75%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes ppRetract2 {
  0%   { opacity: 0.5; }
  47%  { opacity: 0.5; }
  80%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes ppRetract3 {
  0%   { opacity: 0.28; }
  52%  { opacity: 0.28; }
  85%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes ppRetract4 {
  0%   { opacity: 0.15; }
  57%  { opacity: 0.15; }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Phase 3: Bar cascade */
.final-icon.pp-animate .pp-cascade-bars rect {
  animation: ppBarCascade calc(var(--speed) * 1.0s) cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.final-icon.pp-animate .pp-cascade-bars rect:nth-child(1) { animation-delay: calc(var(--speed) * 0.70s); }
.final-icon.pp-animate .pp-cascade-bars rect:nth-child(2) { animation-delay: calc(var(--speed) * 0.77s); }
.final-icon.pp-animate .pp-cascade-bars rect:nth-child(3) { animation-delay: calc(var(--speed) * 0.84s); }
.final-icon.pp-animate .pp-cascade-bars rect:nth-child(4) { animation-delay: calc(var(--speed) * 0.91s); }
.final-icon.pp-animate .pp-cascade-bars rect:nth-child(5) { animation-delay: calc(var(--speed) * 0.98s); }
.final-icon.pp-animate .pp-cascade-bars rect:nth-child(6) { animation-delay: calc(var(--speed) * 1.05s); }
.final-icon.pp-animate .pp-cascade-bars rect:nth-child(7) { animation-delay: calc(var(--speed) * 1.12s); }

@keyframes ppBarCascade {
  0%   { transform: translateX(50px) translateY(8px) scaleY(0.5); opacity: 0; }
  55%  { transform: translateX(-3px) translateY(-3px) scaleY(1.18); opacity: var(--pp-top, 1); }
  75%  { transform: translateX(1px) translateY(1px) scaleY(0.94); }
  100% { transform: translateX(0) translateY(0) scaleY(1); opacity: var(--pp-top, 1); }
}

/* Phase 4: Divider reveal */
.final-icon.pp-animate .pp-s-divider {
  animation: ppDivReveal calc(var(--speed) * 0.5s) cubic-bezier(0.16, 1, 0.3, 1) calc(var(--speed) * 0.90s) both;
  transform-origin: 80px 80px;
}

@keyframes ppDivReveal {
  0%   { transform: scaleY(0); opacity: 0; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* Left arcs — always at their target opacity (unconditional so no-JS fallback works) */
.final-icon .pp-left-arc {
  opacity: var(--pp-arc-op);
}

/* Gold glow pulse — separate element, not the existing .glow-zone */
.final-icon .pp-glow-pulse {
  position: absolute;
  width: 300px; height: 300px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.final-cta.pp-animate .final-icon .pp-glow-pulse {
  animation: ppGlowPulse 0.8s ease-out 1.5s forwards;
}
@keyframes ppGlowPulse {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Reduced motion — show final static state, matching current icon appearance */
@media (prefers-reduced-motion: reduce) {
  .final-icon .pp-arcs-group,
  .final-icon .pp-s-spindle,
  .final-icon .pp-s-divider {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  .final-icon .pp-cascade-bars rect {
    opacity: var(--pp-top, 1) !important;
    animation: none !important;
    transform: none !important;
  }
  .final-icon .pp-left-arc {
    opacity: var(--pp-arc-op) !important;
    animation: none !important;
  }
  .final-icon .pp-right-arc-1,
  .final-icon .pp-right-arc-2,
  .final-icon .pp-right-arc-3,
  .final-icon .pp-right-arc-4 {
    opacity: 0 !important;
    animation: none !important;
  }
  .final-icon .pp-glow-pulse {
    animation: none !important;
    opacity: 0 !important;
  }
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 44px 32px;
  border-top: 1px solid rgba(201,168,76,0.05);
}
footer p { font-size: 13px; color: var(--text-dim); font-weight: 400; }
footer a {
  color: var(--accent);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}
footer a:hover { opacity: 1; }

.footer-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-lockup .footer-icon { flex-shrink: 0; }
.footer-lockup .footer-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-align: left;
}
.footer-legal {
  font-size: 0.85em;
  color: var(--text-dim);
  margin-top: 0.5rem;
}
.footer-legal a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: var(--accent);
}
.footer-trademark {
  font-size: 0.85em;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  section { padding: 80px 24px; }
  .floating-nav { padding: 0 20px; }
  .nav-links { display: none; }

  /* Features: single column */
  .editorial-row,
  .editorial-row.reversed {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editorial-row.reversed .editorial-text {
    order: 1;
  }
  .editorial-row.reversed .editorial-illustration {
    order: 2;
  }
  .editorial-row { margin-bottom: 80px; }

  /* Steps: single column on mobile */
  .step { grid-template-columns: 1fr; }
  .step:nth-child(2) { direction: ltr; }
  .step:last-child { max-width: 100%; }

  /* Pricing */
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
  }
  .pricing-card.pro { transform: none; flex: 1; }
  .pricing-card.pro:hover { transform: translateY(-4px); }

  .final-cta { padding: 120px 24px 80px; }
}
@media (max-width: 600px) {
  section { padding: 80px 20px; }
  .hero { padding: 60px 16px 40px; }
  .mock-gallery { grid-template-columns: repeat(4, 1fr); }
  .final-cta .final-icon { width: 100px; height: 100px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-lockup { flex-direction: column; gap: 8px; }
  .footer-lockup .footer-wordmark { text-align: center; }
}

/* ═══════════ BLOG ═══════════ */

/* ── Deadwax hero (blog index header) ── */
.deadwax-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
}
.deadwax-arcs {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
}
.deadwax-header-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .deadwax-arcs {
    width: 420px;
    height: 420px;
    left: -40px;
  }
}
@media (max-width: 600px) {
  .deadwax-arcs {
    width: 340px;
    height: 340px;
    left: -20px;
  }
  .deadwax-hero {
    padding: 60px 0 24px;
  }
}

/* ── Blog index page ── */
.blog-index {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.blog-card {
  display: block;
  padding: 32px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.4s ease;
  position: relative;
}
.blog-card:first-child {
  border-top: 1px solid rgba(201,168,76,0.08);
}
.blog-card:hover {
  border-color: rgba(201,168,76,0.25);
}
.blog-card:hover + .blog-card {
  border-top-color: rgba(201,168,76,0.25);
}
.blog-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 10px 0 8px;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card-title {
  color: var(--accent);
}
.blog-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 640px;
}
.blog-card-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 18px;
}
.blog-card:hover .blog-card-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

/* ── Blog dates & tags ── */
.blog-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: rgba(201,168,76,0.08);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

/* ── Blog article header ── */
.blog-article {
  position: relative;
}
.blog-article::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
  pointer-events: none;
}
.blog-header {
  margin-bottom: 8px;
  position: relative;
}
.blog-header h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}
/* Decorative groove arcs in article header */
.blog-header::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  pointer-events: none;
}

/* ── Blog article prose ── */
.blog-prose {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.blog-prose h2 {
  font-size: 22px;
  color: var(--accent);
  margin-top: 56px;
  margin-bottom: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.blog-prose h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 12px;
}
.blog-prose p {
  margin-bottom: 20px;
}
.blog-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201,168,76,0.3);
  transition: text-decoration-color 0.2s ease;
}
.blog-prose a:hover {
  color: var(--accent-bright);
  text-decoration-color: var(--accent-bright);
}
.blog-prose img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}
.blog-prose blockquote {
  border-left: 2px solid var(--accent-muted);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(201,168,76,0.03);
  border-radius: 0 8px 8px 0;
  color: var(--text-primary);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
}
.blog-prose code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}
.blog-prose pre {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
}
.blog-prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-secondary);
}
.blog-prose ul, .blog-prose ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-prose li {
  margin-bottom: 8px;
}
.blog-prose li::marker {
  color: var(--accent-muted);
}
.blog-prose strong {
  color: var(--text-primary);
  font-weight: 600;
}
.blog-prose hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dark), transparent);
  opacity: 0.5;
  margin: 48px 0;
}

/* ── Blog signoff ── */
.blog-empty {
  color: var(--text-dim);
  font-style: italic;
}
.blog-signoff {
  margin-top: 64px;
}
.blog-signoff .groove-divider {
  margin-bottom: 32px;
}
.blog-signoff-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.blog-back-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.blog-back-link:hover {
  color: var(--accent-bright);
  text-decoration: underline;
}

/* ── Scroll progress bar (blog) ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  z-index: 200;
  transition: width 50ms linear;
}

/* ═══════════ LINER NOTES PAGE ═══════════ */

/* ── Groove divider — vinyl groove aesthetic ── */
.groove-divider {
  height: 1px;
  max-width: 720px;
  margin: 48px auto;
  background: linear-gradient(90deg, transparent, var(--accent-dark), transparent);
  opacity: 0.5;
}

/* ── Liner notes intro stats ── */
.ln-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 48px 0 16px;
  flex-wrap: wrap;
  padding: 48px 40px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 16px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 920px;
  max-width: calc(100vw - 48px);
}
.ln-stat {
  text-align: center;
}
.ln-stat-value {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1;
}
.ln-stat-value.accent {
  color: var(--accent);
}
.ln-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ── Section structure ── */
.ln-section {
  margin-top: 64px;
}
.ln-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ln-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.subpage-main .ln-heading {
  border-bottom: none;
  padding-bottom: 0;
}
.ln-prose {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
}

/* ── Detail cards (breakout width) ── */
.ln-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 920px;
  max-width: calc(100vw - 48px);
}
.ln-cards-2x2 {
  grid-template-columns: repeat(2, 1fr);
  width: 640px;
  max-width: calc(100vw - 48px);
}
.ln-card {
  padding: 28px 24px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.10);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.ln-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.15);
}
.ln-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.ln-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Numbered card variant (pipeline steps) ── */
.ln-card[data-step] {
  position: relative;
  padding-top: 44px;
}
.ln-card[data-step]::before {
  content: attr(data-step);
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 1px;
}

/* ── Feature list variant (left-border accent) ── */
.ln-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 920px;
  max-width: calc(100vw - 48px);
}
.ln-feature {
  padding: 24px 28px;
  border-left: 2px solid var(--accent-dark);
  transition: border-color 0.25s ease;
}
.ln-feature:hover {
  border-left-color: var(--accent);
}
.ln-feature h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.ln-feature p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
}

/* ── Framework credits grid ── */
.ln-framework-credits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin-top: 8px;
}
.ln-fw-group h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.ln-fw-group .framework-chip {
  margin-bottom: 6px;
  justify-content: space-between;
}
.ln-fw-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}
.ln-fw-role {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: right;
  flex-shrink: 0;
  margin-left: 12px;
  letter-spacing: 0.2px;
}

/* ── Closing sign-off ── */
.ln-signoff {
  text-align: center;
  margin-top: 80px;
  padding-top: 48px;
}
.ln-signoff-text {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

/* ── CTA reuse (mirrors homepage final CTA button) ── */
.ln-cta-group {
  display: flex;
  justify-content: center;
}

/* ── CTA link from homepage Built Different section ── */
.ln-cta-link {
  text-align: center;
  margin-top: 40px;
}
.ln-cta-link a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.ln-cta-link a:hover {
  color: var(--accent-bright);
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ln-cards { grid-template-columns: repeat(2, 1fr); }
  .ln-cards-2x2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ln-cards,
  .ln-cards-2x2,
  .ln-features,
  .ln-stats {
    left: auto;
    transform: none;
    width: 100%;
  }
  .ln-cards { grid-template-columns: 1fr; }
  .ln-cards-2x2 { grid-template-columns: 1fr; }
  .ln-stats { gap: 32px; padding: 32px 24px; }
  .ln-stat-value { font-size: 32px; }
  .ln-framework-credits { grid-template-columns: 1fr; }
}

/* ═══════════ FOCUS VISIBLE ═══════════ */
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ═══════════ SKIP LINK ═══════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 10002;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-fast, .reveal-gentle {
    opacity: 1;
    transform: none;
  }
  .hero-h1, .hero-sub, .hero-cta-row, .hero-cta, .hero-footnote,
  .hero-eyebrow, .hero-mockup-wrap {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ═══════════ SUBPAGE SHARED ═══════════ */

/* ── Subpage Header ── */
.subpage-header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.subpage-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
}
.subpage-header .logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
}
.subpage-header .back-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}
.subpage-header .back-link:hover {
  text-decoration: underline;
}
.subpage-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.subpage-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}
.subpage-nav a:hover {
  color: var(--accent);
}
@media (max-width: 600px) {
  .subpage-nav { gap: 16px; }
  .subpage-nav a { font-size: 12px; }
}

/* ── Subpage Body & Links ── */
.subpage-body {
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.subpage-body a { color: var(--accent); text-decoration: none; }
.subpage-body a.download-btn { color: var(--bg-deep); }
.subpage-body a:hover { text-decoration: underline; }
.subpage-body a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ── Subpage Content Container ── */
.subpage-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Subpage Main ── */
.subpage-main {
  padding: 80px 0 120px;
}
.subpage-main h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.subpage-main h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-top: 56px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.subpage-main .subtitle {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 56px;
}

.subpage-main .highlight {
  color: var(--text-primary);
  font-weight: 500;
}

/* ── Subpage Footer ── */
.subpage-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  text-align: center;
}
.subpage-footer p {
  font-size: 13px;
  color: var(--text-dim);
}
.subpage-footer a {
  color: var(--accent);
  text-decoration: none;
}
.subpage-footer a:hover {
  text-decoration: underline;
}

/* ═══════════ FAQ (SUPPORT PAGE) ═══════════ */

.faq-item {
  margin-bottom: 4px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 16px 40px 16px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  position: relative;
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dim);
  transition: transform 0.2s, color 0.2s;
}
.faq-item.open .faq-question::after {
  content: '\2212';
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease 0.05s;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 0 20px;
}
.faq-answer ul {
  list-style: none;
  margin-bottom: 16px;
}
.faq-answer li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 3px 0 3px 20px;
  position: relative;
}
.faq-answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}

.cta-box {
  margin-top: 64px;
  padding: 32px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid rgba(201,168,76,0.1);
  text-align: center;
}
.cta-box p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 4px;
}
.cta-box a {
  font-weight: 600;
}

/* ═══════════ PRIVACY PAGE ═══════════ */

.privacy-content .last-updated {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 48px;
}

.privacy-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
}

.privacy-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 16px;
}
.privacy-content li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.privacy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}

/* ═══════════ PRICING SUBPAGE ═══════════ */
/* Scoped to .pricing-content to avoid collision with homepage .pricing-card */

.pricing-content {
  max-width: 960px;
}

.pricing-content .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-content .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  backdrop-filter: blur(12px);
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  overflow: visible;
  flex: initial;
}
.pricing-content .pricing-card:hover {
  border-color: rgba(201,168,76,0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.06);
}

.pricing-content .pricing-card--recommended {
  border-color: var(--accent-dark);
  box-shadow: 0 0 24px rgba(201,168,76,0.08), inset 0 1px 0 rgba(201,168,76,0.1);
}
.pricing-content .pricing-card--recommended:hover {
  border-color: var(--accent);
  box-shadow: 0 0 32px rgba(201,168,76,0.15), 0 12px 40px rgba(201,168,76,0.08);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 3px 14px;
  border-radius: 10px;
  white-space: nowrap;
}

.pricing-content .pricing-card-header {
  margin-bottom: 24px;
}

.pricing-content .pricing-tier {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.pricing-content .pricing-price {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-content .pricing-term {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}

.pricing-content .pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.pricing-content .pricing-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}
.pricing-content .pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}

.pricing-content .pricing-cta {
  display: block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.pricing-content .pricing-cta:hover {
  background: rgba(201,168,76,0.14);
  box-shadow: 0 4px 16px rgba(201,168,76,0.1);
  text-decoration: none;
}

.pricing-content .pricing-cta--pro {
  color: var(--bg-deep);
  background: var(--accent);
  border-color: var(--accent);
}
.pricing-content .pricing-cta--pro:hover {
  background: var(--accent-bright);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.pricing-footnote {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .pricing-content .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing-content .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════ DOWNLOAD PAGE ═══════════ */

.download-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  backdrop-filter: blur(12px);
  margin-bottom: 16px;
}

.download-card-version {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.download-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-deep);
  background: var(--accent);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.25);
  text-decoration: none;
}

.download-whats-new {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

.download-list {
  list-style: none;
  margin-bottom: 16px;
}
.download-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 5px 0 5px 20px;
  position: relative;
}
.download-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}

.download-steps {
  list-style: none;
  counter-reset: step;
  margin-bottom: 16px;
}
.download-steps li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 0 6px 32px;
  position: relative;
  counter-increment: step;
}
.download-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ═══════════ CHANGELOG PAGE ═══════════ */

.changelog-entry {
  margin-bottom: 48px;
}

.changelog-version {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.changelog-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.changelog-date {
  font-size: 13px;
  color: var(--text-dim);
}

.changelog-list {
  list-style: none;
}
.changelog-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.7;
}
.changelog-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}

/* ═══════════ SUPPORT PAGE ADDITIONS ═══════════ */

.support-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.support-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.support-nav-link:hover {
  border-color: rgba(201,168,76,0.25);
  color: var(--accent);
  background: rgba(201,168,76,0.04);
  text-decoration: none;
}

.support-nav-icon {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.6;
  width: 20px;
  text-align: center;
}

.support-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .support-detail-grid { grid-template-columns: 1fr; }
}

.support-detail-grid h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.groove-divider-sm {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.12) 20%,
    rgba(201,168,76,0.2) 50%,
    rgba(201,168,76,0.12) 80%,
    transparent 100%
  );
  margin: 48px 0;
}

.faq-category {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--accent-dark);
}

/* ═══════════ RECOVER (LICENSE RECOVERY) ═══════════ */

.recover-form {
  margin-bottom: 24px;
}

.recover-field {
  margin-bottom: 16px;
}

.recover-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.recover-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.15);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.recover-input::placeholder {
  color: var(--text-dim);
  opacity: 0.5;
}
.recover-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.recover-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-deep);
  background: var(--accent);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.recover-btn:hover {
  background: var(--accent-bright);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.recover-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.recover-message {
  padding: 20px 24px;
  border-radius: 10px;
  margin-top: 24px;
}
.recover-message p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.recover-message--success {
  background: rgba(122, 182, 72, 0.08);
  border: 1px solid rgba(122, 182, 72, 0.2);
}
.recover-message--success p {
  color: var(--success);
}

.recover-message--error {
  background: var(--rose-dim);
  border: 1px solid rgba(196, 114, 106, 0.2);
}
.recover-message--error p {
  color: var(--rose);
}

/* ═══════════ LEGAL CALLOUT (TERMS PAGE) ═══════════ */

.legal-callout {
  padding: 24px 28px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.06);
  margin: 16px 0 24px;
}
.legal-callout p {
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: 0.2px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.legal-callout p:last-child {
  margin-bottom: 0;
}

/* ═══════════ PRIVACY HIGHLIGHT ═══════════ */

.privacy-highlight {
  padding: 28px;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.08);
  margin: 8px 0 32px;
}
.privacy-highlight p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 12px;
}
.privacy-highlight p:last-child {
  margin-bottom: 0;
}
.privacy-highlight ul {
  list-style: none;
  margin-bottom: 12px;
}
.privacy-highlight li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
}
.privacy-highlight li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}

/* ═══════════ TERMS PAGE ═══════════ */

.terms-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
}
.terms-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
}
.terms-content ul {
  list-style: none;
  margin-bottom: 16px;
}
.terms-content li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
}
.terms-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}
.terms-content .last-updated {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 48px;
}

/* ── Liner Notes Vignette Placement ── */
.ln-vignette {
  max-width: 400px;
  margin: 32px auto 0;
}
@media (max-width: 600px) {
  .ln-vignette { max-width: 100%; }
}

/* ═══════════ EMAIL SIGNUP ═══════════ */
.signup-section {
  text-align: center;
  padding: 64px 24px;
  max-width: 520px;
  margin: 0 auto;
}
.signup-section .ln-eyebrow {
  margin-bottom: 12px;
}
.signup-section h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.signup-section .signup-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 24px;
  line-height: 1.5;
}
.signup-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.signup-input {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.signup-input:focus {
  border-color: var(--accent);
}
.signup-input::placeholder {
  color: var(--text-dim);
}
.signup-btn {
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.signup-btn:hover {
  background: var(--accent-bright);
}
.signup-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
.signup-msg {
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 12px;
  min-height: 18px;
}
.signup-msg--success { color: var(--success); }
.signup-msg--error { color: var(--rose); }
.signup-privacy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 16px;
}
.signup-privacy a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 600px) {
  .signup-form { flex-direction: column; }
  .signup-btn { width: 100%; }
}
