/* moz.css — Mozrat AI full-site stylesheet */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
  --studio-black: #0A0A0F;
  --studio-surface: #13131A;
  --studio-surface-raised: #1C1C27;
  --studio-border: #2A2A3D;
  --stem-violet: #7B4FF7;
  --stem-violet-muted: #4A2E9A;
  --playback-cyan: #00E5B4;
  --playback-cyan-dim: #00A882;
  --meter-amber: #F59E0B;
  --text-on-dark-primary: #F0F0F8;
  --text-on-dark-secondary: #9191B0;
  --text-on-dark-muted: #55556A;
  --light-canvas: #F5F5FA;
  --light-surface: #EBEBF5;
  --light-border: #D0D0E0;
  --text-on-light-primary: #0E0E1A;
  --text-on-light-secondary: #3A3A55;
  --text-on-light-muted: #6A6A85;

  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);
  --section-pad-v: clamp(4rem, 8vw, 7rem);
  --card-gap: 1.5rem;
  --grid-gap: 2rem;

  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 100px;
  --radius-input: 8px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-normal: 280ms;

  --nav-height: 68px;
}

/* ============================================================
   2. CSS RESET + BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--studio-black);
  color: var(--text-on-dark-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.moz-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moz-small {
  font-size: 0.875rem;
}

/* ============================================================
   4. CONTAINER
   ============================================================ */

.moz-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================================
   5. SECTION BACKGROUNDS
   ============================================================ */

.moz-section--dark {
  background: var(--studio-black);
  color: var(--text-on-dark-primary);
}

.moz-section--dark-alt {
  background: var(--studio-surface);
  color: var(--text-on-dark-primary);
}

.moz-section--light {
  background: var(--light-canvas);
  color: var(--text-on-light-primary);
}

.moz-section--light-alt {
  background: var(--light-surface);
  color: var(--text-on-light-primary);
}

.moz-section--white {
  background: #ffffff;
  color: var(--text-on-light-primary);
}

.moz-section--brand {
  background: linear-gradient(135deg, var(--stem-violet-muted) 0%, var(--stem-violet) 60%, #5B2FD0 100%);
  color: var(--text-on-dark-primary);
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */

.moz-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--dur-normal) var(--ease), box-shadow var(--dur-normal) var(--ease);
  background: transparent;
}

.moz-page--dark-top .moz-nav {
  background: transparent;
}

.moz-page--light-top .moz-nav {
  background: var(--light-canvas);
  border-bottom: 1px solid var(--light-border);
}

.moz-nav--scrolled {
  background: var(--studio-black) !important;
  box-shadow: 0 1px 0 var(--studio-border);
}

.moz-nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.moz-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.moz-nav__logo img {
  height: 36px;
  width: auto;
}

.moz-nav__logo-light {
  display: block;
}

.moz-nav__logo-dark {
  display: none;
}

.moz-page--light-top .moz-nav .moz-nav__logo-light {
  display: none;
}

.moz-page--light-top .moz-nav .moz-nav__logo-dark {
  display: block;
}

.moz-page--light-top .moz-nav--scrolled .moz-nav__logo-light {
  display: block !important;
}

.moz-page--light-top .moz-nav--scrolled .moz-nav__logo-dark {
  display: none !important;
}

.moz-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.moz-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-btn);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  color: var(--text-on-dark-secondary);
}

.moz-page--dark-top .moz-nav .moz-nav__link {
  color: var(--text-on-dark-secondary);
}

.moz-page--light-top .moz-nav .moz-nav__link {
  color: var(--text-on-light-secondary);
}

.moz-page--dark-top .moz-nav .moz-nav__link:hover {
  color: var(--text-on-dark-primary);
  background: rgba(255,255,255,0.06);
}

.moz-page--light-top .moz-nav .moz-nav__link:hover {
  color: var(--text-on-light-primary);
  background: var(--light-surface);
}

.moz-nav--scrolled .moz-nav__link {
  color: var(--text-on-dark-secondary) !important;
}

.moz-nav--scrolled .moz-nav__link:hover {
  color: var(--text-on-dark-primary) !important;
  background: rgba(255,255,255,0.06) !important;
}

.moz-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.moz-nav__signin {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.moz-page--dark-top .moz-nav .moz-nav__signin {
  color: var(--text-on-dark-secondary);
  border-color: var(--studio-border);
}

.moz-page--dark-top .moz-nav .moz-nav__signin:hover {
  color: var(--text-on-dark-primary);
  border-color: var(--text-on-dark-muted);
}

.moz-page--light-top .moz-nav .moz-nav__signin {
  color: var(--text-on-light-secondary);
  border-color: var(--light-border);
}

.moz-page--light-top .moz-nav .moz-nav__signin:hover {
  color: var(--text-on-light-primary);
  border-color: var(--light-border);
  background: var(--light-surface);
}

.moz-nav--scrolled .moz-nav__signin {
  color: var(--text-on-dark-secondary) !important;
  border-color: var(--studio-border) !important;
}

.moz-nav--scrolled .moz-nav__signin:hover {
  color: var(--text-on-dark-primary) !important;
  border-color: var(--text-on-dark-muted) !important;
}

.moz-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: var(--radius-btn);
  background: none;
  border: none;
  cursor: pointer;
}

.moz-nav__hamburger .bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform var(--dur-normal) var(--ease), opacity var(--dur-normal) var(--ease), background var(--dur-normal) var(--ease);
}

.moz-page--dark-top .moz-nav .moz-nav__hamburger .bar {
  background: var(--text-on-dark-secondary);
}

.moz-page--light-top .moz-nav .moz-nav__hamburger .bar {
  background: var(--text-on-light-secondary);
}

.moz-nav--scrolled .moz-nav__hamburger .bar {
  background: var(--text-on-dark-secondary) !important;
}

.moz-nav__hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.moz-nav__hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.moz-nav__hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.moz-nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--studio-black);
  border-top: 1px solid var(--studio-border);
  padding: 1.5rem var(--container-pad);
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
}

.moz-nav__mobile.is-open {
  display: flex;
}

.moz-nav__mobile .moz-nav__link {
  color: var(--text-on-dark-secondary) !important;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: var(--radius-btn);
}

.moz-nav__mobile .moz-nav__link:hover {
  color: var(--text-on-dark-primary) !important;
  background: rgba(255,255,255,0.06) !important;
}

.moz-nav__mobile-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--studio-border);
}

/* ============================================================
   7. BUTTONS
   ============================================================ */

.moz-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.moz-btn--primary {
  background: var(--stem-violet);
  color: #ffffff;
  border-color: var(--stem-violet);
}

.moz-btn--primary:hover {
  background: #6B3DE7;
  border-color: #6B3DE7;
  color: #ffffff;
}

.moz-btn--outline-dark {
  background: transparent;
  color: var(--text-on-dark-primary);
  border-color: var(--studio-border);
}

.moz-btn--outline-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text-on-dark-muted);
  color: var(--text-on-dark-primary);
}

.moz-btn--outline-light {
  background: transparent;
  color: var(--text-on-light-primary);
  border-color: var(--light-border);
}

.moz-btn--outline-light:hover {
  background: var(--light-surface);
  color: var(--text-on-light-primary);
  border-color: var(--light-border);
}

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

.moz-btn--ghost-on-dark:hover {
  color: var(--text-on-dark-primary);
  background: rgba(255,255,255,0.06);
}

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

.moz-btn--ghost-on-light:hover {
  color: var(--text-on-light-primary);
  background: var(--light-surface);
}

.moz-btn--cyan {
  background: var(--playback-cyan);
  color: var(--studio-black);
  border-color: var(--playback-cyan);
}

.moz-btn--cyan:hover {
  background: var(--playback-cyan-dim);
  border-color: var(--playback-cyan-dim);
  color: var(--studio-black);
}

.moz-btn--sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.moz-btn--lg {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

/* ============================================================
   8. HERO — index.html
   ============================================================ */

.moz-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--studio-black);
  position: relative;
  overflow: hidden;
}

.moz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(123,79,247,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 75% 60%, rgba(0,229,180,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.moz-hero__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--grid-gap);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 1;
}

.moz-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.moz-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--playback-cyan);
}

.moz-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--playback-cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.moz-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-on-dark-primary);
  letter-spacing: -0.02em;
}

.moz-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  max-width: 52ch;
}

.moz-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.moz-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.moz-hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--studio-border);
}

/* Stem visual SVG (fallback when image loads) */
.moz-stem-visual {
  width: 100%;
  max-width: 480px;
  background: var(--studio-surface);
  border: 1px solid var(--studio-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.moz-stem-track {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.moz-stem-track__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 64px;
  flex-shrink: 0;
  color: var(--text-on-dark-secondary);
}

.moz-stem-track__wave {
  flex: 1;
  height: 36px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.moz-stem-track__wave svg {
  width: 100%;
  height: 100%;
}

.moz-stem-track--melody .moz-stem-track__label { color: #7B4FF7; }
.moz-stem-track--harmony .moz-stem-track__label { color: #00E5B4; }
.moz-stem-track--rhythm .moz-stem-track__label { color: #F59E0B; }
.moz-stem-track--mix .moz-stem-track__label { color: var(--text-on-dark-secondary); }

/* ============================================================
   9. SOCIAL PROOF STRIP
   ============================================================ */

.moz-social-proof {
  padding-block: 2.5rem;
  background: var(--studio-surface);
  border-block: 1px solid var(--studio-border);
}

.moz-social-proof__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.moz-social-proof__inner::-webkit-scrollbar { display: none; }

.moz-social-proof__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.moz-social-proof__logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

.moz-logo-pill {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) var(--ease);
}

.moz-logo-pill:hover {
  color: var(--text-on-dark-secondary);
}

/* ============================================================
   10. OUTPUT SECTION — "What you get"
   ============================================================ */

.moz-output {
  padding-block: var(--section-pad-v);
  background: var(--studio-black);
}

.moz-output__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.moz-output__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.moz-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moz-section--dark .moz-section-eyebrow {
  color: var(--playback-cyan);
}

.moz-section--dark-alt .moz-section-eyebrow {
  color: var(--playback-cyan);
}

.moz-section--light .moz-section-eyebrow {
  color: var(--stem-violet);
}

.moz-section--light-alt .moz-section-eyebrow {
  color: var(--stem-violet);
}

.moz-section--white .moz-section-eyebrow {
  color: var(--stem-violet);
}

.moz-section--brand .moz-section-eyebrow {
  color: rgba(255,255,255,0.7);
}

.moz-section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.moz-section--dark .moz-section-headline {
  color: var(--text-on-dark-primary);
}

.moz-section--dark-alt .moz-section-headline {
  color: var(--text-on-dark-primary);
}

.moz-section--light .moz-section-headline {
  color: var(--text-on-light-primary);
}

.moz-section--light-alt .moz-section-headline {
  color: var(--text-on-light-primary);
}

.moz-section--white .moz-section-headline {
  color: var(--text-on-light-primary);
}

.moz-section--brand .moz-section-headline {
  color: #ffffff;
}

.moz-section-body {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.moz-section--dark .moz-section-body {
  color: var(--text-on-dark-secondary);
}

.moz-section--dark-alt .moz-section-body {
  color: var(--text-on-dark-secondary);
}

.moz-section--light .moz-section-body {
  color: var(--text-on-light-secondary);
}

.moz-section--light-alt .moz-section-body {
  color: var(--text-on-light-secondary);
}

.moz-section--white .moz-section-body {
  color: var(--text-on-light-secondary);
}

.moz-section--brand .moz-section-body {
  color: rgba(255,255,255,0.85);
}

.moz-output__stems-card {
  background: var(--studio-surface);
  border: 1px solid var(--studio-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.moz-output__stems-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--studio-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.moz-output__stems-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.moz-stem-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--studio-border);
  transition: background var(--dur-fast) var(--ease);
}

.moz-stem-row:last-child {
  border-bottom: none;
}

.moz-stem-row:hover {
  background: var(--studio-surface-raised);
}

.moz-stem-row__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.moz-stem-row__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
  width: 80px;
  flex-shrink: 0;
}

.moz-stem-row__desc {
  font-size: 0.8125rem;
  color: var(--text-on-dark-secondary);
  flex: 1;
}

.moz-stem-row__wave {
  width: 100px;
  height: 24px;
  flex-shrink: 0;
}

/* ============================================================
   11. HOW IT WORKS — 3-step
   ============================================================ */

.moz-how {
  padding-block: var(--section-pad-v);
}

.moz-how__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  position: relative;
}

.moz-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.moz-step__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--stem-violet);
  opacity: 0.4;
}

.moz-section--light .moz-step__num {
  color: var(--stem-violet);
  opacity: 0.3;
}

.moz-step__label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
}

.moz-step__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-on-light-secondary);
}

/* ============================================================
   12. USE CASES PREVIEW — 3 cards
   ============================================================ */

.moz-usecases-preview {
  padding-block: var(--section-pad-v);
}

.moz-usecases-preview__header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.moz-uc-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur-normal) var(--ease), box-shadow var(--dur-normal) var(--ease), transform var(--dur-normal) var(--ease);
}

.moz-uc-card:hover {
  border-color: var(--stem-violet);
  box-shadow: 0 8px 32px rgba(123,79,247,0.12);
  transform: translateY(-2px);
  color: inherit;
}

.moz-uc-card__segment {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stem-violet);
}

.moz-uc-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.3;
}

.moz-uc-card__pain {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

.moz-uc-card__value {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
  font-weight: 500;
}

.moz-uc-card__arrow {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stem-violet);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--dur-fast) var(--ease);
}

.moz-uc-card:hover .moz-uc-card__arrow {
  gap: 0.7rem;
}

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */

.moz-testimonials {
  padding-block: var(--section-pad-v);
  background: var(--studio-black);
}

.moz-testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
}

.moz-quote-card {
  background: var(--studio-surface);
  border: 1px solid var(--studio-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.moz-quote-card__mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--stem-violet);
  opacity: 0.5;
  font-family: Georgia, serif;
}

.moz-quote-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-on-dark-secondary);
  font-style: italic;
}

.moz-quote-card__attr {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.moz-quote-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid var(--studio-border);
}

.moz-quote-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
}

.moz-quote-card__role {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  margin-top: 0.125rem;
}

/* ============================================================
   14. BOTTOM CTA SECTION
   ============================================================ */

.moz-cta-section {
  padding-block: var(--section-pad-v);
  text-align: center;
}

.moz-cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 640px;
  margin-inline: auto;
}

.moz-cta-section__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.moz-cta-section__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.moz-cta-section__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   15. FOOTER
   ============================================================ */

.moz-footer {
  background: var(--studio-black);
  border-top: 1px solid var(--studio-border);
  padding-top: 4rem;
  color: var(--text-on-dark-secondary);
}

.moz-footer__upper {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--studio-border);
}

.moz-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.moz-footer__logo img {
  height: 36px;
  width: auto;
}

.moz-footer__tagline {
  font-size: 0.9375rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
  max-width: 28ch;
}

.moz-footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.moz-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--studio-border);
  color: var(--text-on-dark-muted);
  font-size: 0.875rem;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.moz-footer__social-link:hover {
  color: var(--text-on-dark-primary);
  border-color: var(--stem-violet);
  background: rgba(123,79,247,0.08);
}

.moz-footer__col {
  display: flex;
  flex-direction: column;
}

.moz-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-primary);
  margin-bottom: 1.25rem;
}

.moz-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.moz-footer__link {
  font-size: 0.9375rem;
  color: var(--text-on-dark-secondary);
  transition: color var(--dur-fast) var(--ease);
  text-decoration: none;
}

.moz-footer__link:hover {
  color: var(--text-on-dark-primary);
}

.moz-footer__lower {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.moz-footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
}

.moz-footer__address {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  font-style: normal;
  line-height: 1.5;
}

.moz-footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.moz-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.moz-footer__legal-link:hover {
  color: var(--text-on-dark-secondary);
}

/* ============================================================
   16. PRODUCT PAGE
   ============================================================ */

.moz-product-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--studio-black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.moz-product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(123,79,247,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.moz-product-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.moz-product-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--text-on-dark-primary);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.moz-product-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  max-width: 60ch;
}

/* Generation section */
.moz-generation {
  padding-block: var(--section-pad-v);
  background: var(--studio-black);
}

.moz-generation__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.moz-generation__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Inline stem player mock */
.moz-stem-player {
  background: var(--studio-surface);
  border: 1px solid var(--studio-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.moz-stem-player__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--studio-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.moz-stem-player__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.moz-stem-player__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--playback-cyan);
}

.moz-stem-player__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--playback-cyan);
}

.moz-stem-player__track {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(42,42,61,0.5);
}

.moz-stem-player__track:last-child {
  border-bottom: none;
}

.moz-stem-player__play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--studio-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-on-dark-secondary);
  font-size: 0.6rem;
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.moz-stem-player__play:hover {
  border-color: var(--playback-cyan);
  color: var(--playback-cyan);
}

.moz-stem-player__track-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
  width: 70px;
  flex-shrink: 0;
}

.moz-stem-player__waveform {
  flex: 1;
  height: 28px;
  border-radius: 3px;
  overflow: hidden;
}

.moz-stem-player__waveform svg {
  width: 100%;
  height: 100%;
}

.moz-stem-player__duration {
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-on-dark-muted);
  flex-shrink: 0;
  width: 40px;
  text-align: right;
}

/* Brief input mock */
.moz-brief-input {
  background: var(--studio-surface-raised);
  border: 1px solid var(--studio-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.moz-brief-input__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.75rem;
}

.moz-brief-input__text {
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.65;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--studio-border);
  margin-bottom: 0.75rem;
}

.moz-brief-input__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.moz-brief-input__tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--studio-border);
  color: var(--text-on-dark-secondary);
  background: transparent;
}

.moz-brief-input__tag--mood { border-color: rgba(123,79,247,0.4); color: #A87BFF; }
.moz-brief-input__tag--tempo { border-color: rgba(0,229,180,0.4); color: var(--playback-cyan); }
.moz-brief-input__tag--genre { border-color: rgba(245,158,11,0.4); color: var(--meter-amber); }

/* Feature grid — product formats */
.moz-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
}

.moz-feature-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.moz-feature-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(123,79,247,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stem-violet);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.moz-feature-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-on-light-primary);
}

.moz-feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

/* Comparison table */
.moz-comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--light-border);
}

.moz-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: #ffffff;
}

.moz-comparison-table th,
.moz-comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--light-border);
}

.moz-comparison-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  background: var(--light-canvas);
}

.moz-comparison-table thead th:first-child {
  border-radius: var(--radius-card) 0 0 0;
}

.moz-comparison-table thead th:last-child {
  border-radius: 0 var(--radius-card) 0 0;
}

.moz-comparison-table thead th.moz-comparison-table__mozrat {
  color: var(--stem-violet);
  background: rgba(123,79,247,0.06);
}

.moz-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.moz-comparison-table tbody td {
  color: var(--text-on-light-secondary);
  vertical-align: middle;
}

.moz-comparison-table tbody td:first-child {
  color: var(--text-on-light-primary);
  font-weight: 500;
}

.moz-check-yes {
  color: var(--playback-cyan-dim);
  font-size: 1rem;
}

.moz-check-no {
  color: var(--text-on-light-muted);
  font-size: 0.9rem;
}

.moz-check-partial {
  color: var(--meter-amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   17. USE CASES PAGES
   ============================================================ */

.moz-uc-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--studio-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.moz-uc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(123,79,247,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.moz-uc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.moz-uc-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--text-on-dark-primary);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.moz-uc-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  max-width: 60ch;
}

/* Use cases card list (use-cases.html) */
.moz-uc-list {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  padding-block: var(--section-pad-v);
}

.moz-uc-list-card {
  background: var(--studio-surface);
  border: 1px solid var(--studio-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur-normal) var(--ease), box-shadow var(--dur-normal) var(--ease);
}

.moz-uc-list-card:hover {
  border-color: var(--stem-violet);
  box-shadow: 0 8px 32px rgba(123,79,247,0.15);
  color: inherit;
}

.moz-uc-list-card__segment {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--playback-cyan);
  margin-bottom: 0.5rem;
}

.moz-uc-list-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.75rem;
}

.moz-uc-list-card__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.moz-uc-list-card__bullet {
  font-size: 0.9rem;
  color: var(--text-on-dark-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.moz-uc-list-card__bullet::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--playback-cyan);
  flex-shrink: 0;
}

.moz-uc-list-card__arrow {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stem-violet);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.moz-uc-list-card__content {
  flex: 1;
}

/* Workflow steps — advertising/game pages */
.moz-workflow {
  padding-block: var(--section-pad-v);
}

.moz-workflow__header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-workflow__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.moz-workflow__step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
}

.moz-workflow__step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--stem-violet);
  background: rgba(123,79,247,0.08);
  border: 1px solid rgba(123,79,247,0.2);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.moz-workflow__step-text {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
}

/* Testimonial card — use case sub-pages */
.moz-testimonial-single {
  padding-block: var(--section-pad-v);
}

.moz-testimonial-single__card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  max-width: 720px;
  margin-inline: auto;
}

.moz-testimonial-single__quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-on-light-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.moz-testimonial-single__attr {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-on-light-muted);
}

/* Sub-page features list */
.moz-features-light {
  padding-block: var(--section-pad-v);
}

.moz-features-light__header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-features-light__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
}

.moz-features-light__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
}

.moz-features-light__icon {
  color: var(--playback-cyan-dim);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.moz-features-light__text {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

/* Sub-page CTA (dark) */
.moz-subpage-cta {
  padding-block: var(--section-pad-v);
  background: var(--studio-black);
  text-align: center;
}

.moz-subpage-cta__inner {
  max-width: 560px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.moz-subpage-cta__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-on-dark-primary);
  line-height: 1.15;
}

.moz-subpage-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Use cases hero with image */
.moz-subpage-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--studio-black);
  position: relative;
  overflow: hidden;
}

.moz-subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(123,79,247,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.moz-subpage-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.moz-subpage-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.moz-subpage-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--text-on-dark-primary);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.moz-subpage-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
}

.moz-subpage-hero__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--studio-border);
  height: auto;
}

/* ============================================================
   18. PRICING PAGE
   ============================================================ */

.moz-pricing-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--studio-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.moz-pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(123,79,247,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.moz-pricing-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.moz-pricing-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--text-on-dark-primary);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.moz-pricing-hero__sub {
  font-size: 1.125rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
}

.moz-pricing-tiers {
  padding-block: var(--section-pad-v);
}

.moz-pricing-tiers__header {
  text-align: center;
  margin-bottom: 0.75rem;
}

.moz-pricing-tiers__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  margin-bottom: 3rem;
}

.moz-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  align-items: stretch;
}

.moz-tier-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.moz-tier-card--highlight {
  border-color: var(--stem-violet);
  box-shadow: 0 0 0 1px var(--stem-violet), 0 16px 48px rgba(123,79,247,0.12);
}

.moz-tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--stem-violet);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.moz-tier-card__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
}

.moz-tier-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.moz-tier-card__amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-on-light-primary);
  line-height: 1;
}

.moz-tier-card__unit {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
}

.moz-tier-card__cap {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-light-secondary);
  padding: 0.375rem 0.75rem;
  background: var(--light-canvas);
  border-radius: var(--radius-pill);
  display: inline-block;
}

.moz-tier-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.moz-tier-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-on-light-secondary);
  line-height: 1.5;
}

.moz-tier-card__feature-check {
  color: var(--playback-cyan-dim);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.moz-tier-card__cta {
  width: 100%;
  justify-content: center;
}

/* Pricing FAQ */
.moz-pricing-faq {
  padding-block: var(--section-pad-v);
}

.moz-pricing-faq__header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.moz-faq-item {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.moz-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-on-light-primary);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.moz-faq-item__question:hover {
  background: var(--light-canvas);
  color: var(--text-on-light-primary);
}

.moz-faq-item__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-on-light-muted);
  font-size: 0.75rem;
  transition: transform var(--dur-normal) var(--ease), border-color var(--dur-normal) var(--ease), color var(--dur-normal) var(--ease);
}

.moz-faq-item--open .moz-faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--stem-violet);
  color: var(--stem-violet);
}

.moz-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-normal) var(--ease), padding var(--dur-normal) var(--ease);
}

.moz-faq-item--open .moz-faq-item__answer {
  max-height: 400px;
}

.moz-faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
}

/* ============================================================
   19. ABOUT PAGE
   ============================================================ */

.moz-about-hero {
  padding-top: calc(var(--nav-height) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.moz-about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.moz-about-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.moz-about-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-on-light-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.moz-about-hero__body {
  font-size: 1.0625rem;
  color: var(--text-on-light-secondary);
  line-height: 1.75;
}

.moz-about-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Founders section */
.moz-founders {
  padding-block: var(--section-pad-v);
}

.moz-founders__header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-founders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.moz-founder-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.moz-founder-card__photo {
  width: 96px;
  height: 128px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-card);
  flex-shrink: 0;
  border: 1px solid var(--light-border);
  height: auto;
  aspect-ratio: 3/4;
}

.moz-founder-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.moz-founder-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
}

.moz-founder-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--stem-violet);
  letter-spacing: 0.04em;
}

.moz-founder-card__bio {
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
}

/* Values section */
.moz-values {
  padding-block: var(--section-pad-v);
}

.moz-values__header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.moz-value-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.moz-value-card__label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
}

.moz-value-card__body {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
}

/* Contact strip */
.moz-about-contact {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--light-border);
}

.moz-about-contact__inner {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.moz-about-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.moz-about-contact__icon {
  color: var(--stem-violet);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.moz-about-contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-light-muted);
  margin-bottom: 0.25rem;
}

.moz-about-contact__value {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  text-decoration: none;
}

.moz-about-contact__value:hover {
  color: var(--stem-violet);
}

/* ============================================================
   20. BLOG PAGE
   ============================================================ */

.moz-blog-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
}

.moz-blog-hero__content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.moz-blog-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.moz-blog-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
}

.moz-blog-grid-section {
  padding-block: var(--section-pad-v);
}

.moz-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.moz-blog-cards .moz-blog-card:first-child {
  grid-column: span 2;
}

.moz-blog-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur-normal) var(--ease), box-shadow var(--dur-normal) var(--ease), transform var(--dur-normal) var(--ease);
}

.moz-blog-card:hover {
  border-color: var(--stem-violet);
  box-shadow: 0 8px 32px rgba(123,79,247,0.1);
  transform: translateY(-2px);
  color: inherit;
}

.moz-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.moz-blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.moz-blog-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stem-violet);
}

.moz-blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.35;
}

.moz-blog-card:first-child .moz-blog-card__title {
  font-size: 1.4rem;
}

.moz-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
  flex: 1;
}

.moz-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
  font-size: 0.8125rem;
  color: var(--text-on-light-muted);
}

.moz-blog-card__date {
  font-size: 0.8125rem;
  color: var(--text-on-light-muted);
}

/* ============================================================
   21. ARTICLE TEMPLATE
   ============================================================ */

.moz-article-header {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2.5rem;
}

.moz-article-header__inner {
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.moz-article-header__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stem-violet);
}

.moz-article-header__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.moz-article-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
}

.moz-article-header__cover {
  max-width: 840px;
  margin-inline: auto;
  width: 100%;
}

.moz-article-header__cover-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--light-border);
}

.moz-article-body-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.moz-article-body {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-on-light-secondary);
}

.moz-article-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.moz-article-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.moz-article-body p {
  margin-bottom: 1.25rem;
  color: var(--text-on-light-secondary);
}

.moz-article-body ul,
.moz-article-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.moz-article-body ul {
  list-style: disc;
}

.moz-article-body ol {
  list-style: decimal;
}

.moz-article-body li {
  margin-bottom: 0.5rem;
  color: var(--text-on-light-secondary);
}

.moz-article-body blockquote {
  border-left: 3px solid var(--stem-violet);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--text-on-light-muted);
}

.moz-article-body pre {
  background: var(--studio-surface);
  border: 1px solid var(--studio-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
  color: var(--text-on-dark-secondary);
}

.moz-article-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875em;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  padding: 0.125em 0.375em;
  color: var(--stem-violet);
}

.moz-article-body pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
}

.moz-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  margin-block: 1.5rem;
}

.moz-article-related {
  padding-block: var(--section-pad-v);
}

.moz-article-related__header {
  margin-bottom: 2rem;
}

.moz-article-related__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
}

.moz-article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

/* ============================================================
   22. AUTH / LOGIN PAGES
   ============================================================ */

.moz-auth-page {
  min-height: 100vh;
  background: var(--studio-black);
  display: flex;
  flex-direction: column;
}

.moz-auth-split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.moz-auth-brand {
  background: var(--studio-surface);
  border-right: 1px solid var(--studio-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem clamp(2rem, 4vw, 4rem);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.moz-auth-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(123,79,247,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.moz-auth-brand__logo {
  position: relative;
  z-index: 1;
}

.moz-auth-brand__logo img {
  height: 40px;
  width: auto;
}

.moz-auth-brand__tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--text-on-dark-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.moz-auth-brand__tagline span {
  color: var(--playback-cyan);
}

.moz-auth-brand__visual {
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 1;
}

.moz-auth-brand__stem-mini {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.moz-auth-stem-bar {
  height: 8px;
  border-radius: 4px;
  opacity: 0.7;
}

.moz-auth-stem-bar--melody { background: var(--stem-violet); width: 80%; }
.moz-auth-stem-bar--harmony { background: var(--playback-cyan); width: 65%; }
.moz-auth-stem-bar--rhythm { background: var(--meter-amber); width: 90%; }
.moz-auth-stem-bar--mix { background: var(--text-on-dark-muted); width: 75%; }

.moz-auth-form-panel {
  background: var(--studio-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem clamp(2rem, 4vw, 4rem);
}

.moz-auth-form {
  width: 100%;
  max-width: 400px;
}

.moz-auth-form__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.moz-auth-form__subhead {
  font-size: 0.9375rem;
  color: var(--text-on-dark-secondary);
  margin-bottom: 2rem;
}

.moz-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.moz-form-group__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-on-dark-secondary);
  letter-spacing: 0.02em;
}

.moz-form-group__input {
  background: var(--studio-surface);
  border: 1px solid var(--studio-border);
  border-radius: var(--radius-input);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-on-dark-primary);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  width: 100%;
  outline: none;
}

.moz-form-group__input::placeholder {
  color: var(--text-on-dark-muted);
}

.moz-form-group__input:focus {
  border-color: var(--stem-violet);
  box-shadow: 0 0 0 3px rgba(123,79,247,0.15);
}

.moz-auth-form__submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.moz-auth-form__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.moz-auth-form__link {
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.moz-auth-form__link:hover {
  color: var(--text-on-dark-primary);
}

.moz-auth-form__link a {
  color: var(--playback-cyan);
  font-weight: 600;
  text-decoration: none;
}

.moz-auth-form__link a:hover {
  color: var(--playback-cyan-dim);
}

.moz-auth-form__legal {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  text-align: center;
  line-height: 1.6;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--studio-border);
}

.moz-auth-form__legal a {
  color: var(--text-on-dark-secondary);
  text-decoration: underline;
  text-decoration-color: var(--studio-border);
}

.moz-auth-form__legal a:hover {
  color: var(--text-on-dark-primary);
}

/* Contact form inputs in light context */
.moz-contact-form {
  padding-block: var(--section-pad-v);
}

.moz-contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.moz-contact-form__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 1.75rem;
}

.moz-form-group--light .moz-form-group__label {
  color: var(--text-on-light-secondary);
}

.moz-form-group--light .moz-form-group__input {
  background: #ffffff;
  border: 1px solid var(--light-border);
  color: var(--text-on-light-primary);
}

.moz-form-group--light .moz-form-group__input::placeholder {
  color: var(--text-on-light-muted);
}

.moz-form-group--light .moz-form-group__input:focus {
  border-color: var(--stem-violet);
  box-shadow: 0 0 0 3px rgba(123,79,247,0.1);
}

.moz-form-group__textarea {
  resize: vertical;
  min-height: 140px;
}

.moz-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3.5rem;
}

.moz-contact-detail {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.moz-contact-detail__icon {
  color: var(--stem-violet);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.moz-contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-light-muted);
  margin-bottom: 0.25rem;
}

.moz-contact-detail__value {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  text-decoration: none;
}

.moz-contact-detail__value:hover {
  color: var(--stem-violet);
}

.moz-contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.moz-contact-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2.5rem;
}

.moz-contact-hero__content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.moz-contact-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-on-light-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.moz-contact-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
}

/* ============================================================
   23. LEGAL PAGES
   ============================================================ */

.moz-legal-hero {
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: 2.5rem;
  background: var(--light-canvas);
}

.moz-legal-hero__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.5rem;
}

.moz-legal-content {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: #ffffff;
}

.moz-legal-content main,
.moz-legal-inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.legal-article {
  color: var(--text-on-light-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-border);
}

.legal-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
}

.legal-article section {
  margin-bottom: 2rem;
}

.legal-article h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.875rem;
  margin-top: 0;
}

.legal-article p {
  margin-bottom: 1rem;
  color: var(--text-on-light-secondary);
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-article ul {
  list-style: disc;
}

.legal-article ol {
  list-style: decimal;
}

.legal-article li {
  margin-bottom: 0.5rem;
  color: var(--text-on-light-secondary);
}

.legal-article a {
  color: var(--stem-violet);
  text-decoration: underline;
  text-decoration-color: rgba(123,79,247,0.3);
}

.legal-article a:hover {
  color: var(--stem-violet-muted);
  text-decoration-color: var(--stem-violet);
}

.legal-article address {
  font-style: normal;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--light-border);
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-border);
  color: var(--text-on-light-secondary);
}

.legal-table th {
  background: var(--light-canvas);
  font-weight: 600;
  color: var(--text-on-light-primary);
  font-size: 0.8125rem;
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   24. SITEMAP PAGE
   ============================================================ */

.moz-sitemap {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 4rem;
  background: var(--light-canvas);
  min-height: 100vh;
}

.moz-sitemap__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 3rem;
}

.moz-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.moz-sitemap__section-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-border);
}

.moz-sitemap__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.moz-sitemap__link {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.moz-sitemap__link:hover {
  color: var(--stem-violet);
}

/* ============================================================
   25. COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--studio-surface-raised);
  border-top: 1px solid var(--studio-border);
  padding: 1rem;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
  min-width: 240px;
}

.cookie-banner__text a {
  color: var(--playback-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0,229,180,0.3);
}

.cookie-banner__text a:hover {
  text-decoration-color: var(--playback-cyan);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--text-on-dark-secondary);
  border: 1px solid var(--studio-border);
}

.cookie-banner__btn--secondary:hover {
  color: var(--text-on-dark-primary);
  border-color: var(--text-on-dark-muted);
}

.cookie-banner__btn--primary {
  background: var(--stem-violet);
  color: #ffffff;
  border: 1px solid var(--stem-violet);
}

.cookie-banner__btn--primary:hover {
  background: #6B3DE7;
  border-color: #6B3DE7;
  color: #ffffff;
}

/* ============================================================
   26. FADE-IN ANIMATION
   ============================================================ */

.moz-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-normal) var(--ease), transform var(--dur-normal) var(--ease);
}

.moz-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   27. LIGHT-TOP BODY CONTEXT
   ============================================================ */

.moz-page--light-top {
  background: var(--light-canvas);
  color: var(--text-on-light-primary);
}

/* ============================================================
   28. SECTION PADDING UTILITY
   ============================================================ */

.moz-section-pad {
  padding-block: var(--section-pad-v);
}

/* ============================================================
   29. PRODUCT PAGE SECTION OVERRIDES
   ============================================================ */

.moz-product-formats {
  padding-block: var(--section-pad-v);
}

.moz-product-formats__header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.moz-product-diff {
  padding-block: var(--section-pad-v);
}

.moz-product-diff__header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============================================================
   30. RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .moz-nav__links,
  .moz-nav__actions {
    display: none;
  }

  .moz-nav__hamburger {
    display: flex;
  }

  .moz-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .moz-hero__visual {
    order: -1;
  }

  .moz-stem-visual {
    max-width: 100%;
  }

  .moz-output__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .moz-how__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .moz-uc-grid {
    grid-template-columns: 1fr;
  }

  .moz-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .moz-footer__upper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .moz-footer__brand {
    grid-column: 1 / -1;
  }

  .moz-footer__lower {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .moz-auth-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .moz-auth-brand {
    display: none;
  }

  .moz-auth-form-panel {
    min-height: 100vh;
    padding: 2rem 1.25rem;
  }

  .moz-tier-grid {
    grid-template-columns: 1fr;
  }

  .moz-faq-grid {
    grid-template-columns: 1fr;
  }

  .moz-feature-grid {
    grid-template-columns: 1fr;
  }

  .moz-blog-cards {
    grid-template-columns: 1fr;
  }

  .moz-blog-cards .moz-blog-card:first-child {
    grid-column: span 1;
  }

  .moz-article-related__grid {
    grid-template-columns: 1fr;
  }

  .moz-founders__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .moz-values__grid {
    grid-template-columns: 1fr;
  }

  .moz-about-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .moz-sitemap__grid {
    grid-template-columns: 1fr;
  }

  .moz-contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .moz-contact-details {
    padding-top: 0;
  }

  .moz-generation__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .moz-subpage-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .moz-about-contact__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .moz-uc-list-card {
    flex-direction: column;
    gap: 1rem;
  }

  .moz-features-light__list {
    grid-template-columns: 1fr;
  }

  .moz-nav__mobile-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .moz-nav__mobile-actions .moz-btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .moz-cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .moz-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .moz-footer__upper {
    grid-template-columns: 1fr;
  }
}
