/* =========================================================
   RoleCheck Marketing — Design System
   ========================================================= */

:root {
  /* Backgrounds */
  --bg-primary: #0A0A0A;
  --bg-secondary: #141414;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-primary: #F5F0E8;
  --text-secondary: rgba(245, 240, 232, 0.7);
  --text-tertiary: rgba(245, 240, 232, 0.5);

  /* Brand */
  --brand-orange: #FF6B3D;
  --brand-orange-hover: #FF8559;
  --brand-orange-active: #E55A2E;

  /* Risk Categories */
  --risk-stable: #10B981;
  --risk-evolving: #F59E0B;
  --risk-high: #FF6B3D;
  --risk-critical: #EF4444;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-default: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --border-brand: rgba(255, 107, 61, 0.3);

  /* Fonts */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Type scale */
  --text-display: clamp(3rem, 8vw, 5.5rem);
  --text-h1: clamp(2.5rem, 6vw, 4rem);
  --text-h2: clamp(2rem, 4vw, 3rem);
  --text-h3: 1.5rem;
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-caption: 0.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Container */
  --container-max: 1200px;
  --container-content: 720px;
  --container-padding: clamp(1.5rem, 5vw, 3rem);
}

/* =========================================================
   Reset
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--brand-orange-hover);
}

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

ul,
ol {
  list-style: none;
}

/* =========================================================
   Typography
   ========================================================= */

.eyebrow {
  display: inline-block;
  color: var(--brand-orange);
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.h3 {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.lead {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.6;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-tertiary {
  color: var(--text-tertiary);
}

.text-brand {
  color: var(--brand-orange);
}

/* =========================================================
   Layout
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-content {
  max-width: var(--container-content);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

section {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}

.section-header .h2 {
  margin-bottom: var(--space-md);
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-orange);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--brand-orange-hover);
  color: var(--bg-primary);
}

.btn-primary:active {
  background: var(--brand-orange-active);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-default);
  font-weight: 600;
}

.btn-secondary:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-orange);
  padding: 14px 24px;
  font-weight: 600;
}

.btn-ghost:hover {
  text-decoration: underline;
  color: var(--brand-orange-hover);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.0625rem;
}

/* =========================================================
   Cards
   ========================================================= */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.2s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-default);
}

.card-static {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--text-primary);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-orange);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9375rem;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-meta {
  font-size: var(--text-small);
  color: var(--text-tertiary);
  max-width: 480px;
  line-height: 1.5;
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/19;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: 40px;
  padding: 12px;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 28px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  padding: 32px 20px;
  gap: 16px;
}

.phone-eyebrow {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--brand-orange);
  text-transform: uppercase;
}

.phone-score {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--brand-orange);
  letter-spacing: -0.04em;
}

.phone-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--risk-evolving);
  text-transform: uppercase;
}

.phone-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 4px 0;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.phone-bar {
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--border-subtle);
  overflow: hidden;
  margin-top: 2px;
}

.phone-bar-fill {
  height: 100%;
  background: var(--brand-orange);
  border-radius: var(--radius-pill);
}

/* =========================================================
   Sample Outcome
   ========================================================= */

.sample-outcome {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.sample-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.sample-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-lg);
}

@media (max-width: 600px) {
  .sample-top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.sample-score {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--brand-orange);
  letter-spacing: -0.04em;
}

.sample-analysis p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.sample-includes-title {
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand-orange);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%230A0A0A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3 6.2 5 8.2 9 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

/* =========================================================
   Steps
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--brand-orange);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.step-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =========================================================
   Comparison
   ========================================================= */

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.compare-card.featured {
  border-color: var(--border-brand);
  background: rgba(255, 107, 61, 0.04);
}

.compare-title {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.compare-card.featured .compare-title {
  color: var(--brand-orange);
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.compare-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-tertiary);
}

.compare-card.featured .compare-list li::before {
  content: "✓";
  color: var(--brand-orange);
  font-weight: 700;
}

/* =========================================================
   Pricing
   ========================================================= */

.pricing {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.pricing-tier {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--brand-orange);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xs);
}

.pricing-meta {
  color: var(--text-tertiary);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.pricing-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-lg) 0;
}

.pricing-extras {
  text-align: left;
}

.pricing-extras-title {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  text-align: center;
}

.pricing-extras-row {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-extras-row:last-child {
  border-bottom: none;
}

.pricing-extras-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-includes-title {
  text-align: left;
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.pricing-cta {
  width: 100%;
  margin-top: var(--space-lg);
}

.pricing-fineprint {
  margin-top: var(--space-md);
  font-size: var(--text-small);
  color: var(--text-tertiary);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.15s ease;
}

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

.faq-summary:hover {
  color: var(--brand-orange);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  padding: 0 0 var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 640px;
}

.faq-answer p + p {
  margin-top: var(--space-sm);
}

/* =========================================================
   Final CTA
   ========================================================= */

.final-cta {
  text-align: center;
}

.final-cta .h1 {
  margin-bottom: var(--space-md);
}

.final-cta .lead {
  margin-bottom: var(--space-xl);
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--bg-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  color: var(--text-tertiary);
  font-size: var(--text-small);
}

.footer-col-title {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-small);
  color: var(--text-tertiary);
  text-align: center;
}

/* =========================================================
   Long-form Content (Privacy, Terms, Support)
   ========================================================= */

.legal-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-header {
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.legal-header .h1 {
  margin-bottom: var(--space-sm);
}

.legal-updated {
  color: var(--text-tertiary);
  font-size: var(--text-small);
}

.legal-content {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 var(--space-md) 0;
  padding-left: 1.5rem;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: var(--space-xs);
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-content a {
  color: var(--brand-orange);
  text-decoration: underline;
  text-decoration-color: var(--border-brand);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  text-decoration-color: var(--brand-orange);
}

/* Support specific */
.support-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}

.support-hero .h1 {
  margin-bottom: var(--space-sm);
}

.faq-group {
  margin-bottom: var(--space-2xl);
}

.faq-group-title {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-orange);
  margin-bottom: var(--space-md);
}

.contact-card {
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-card .h3 {
  margin-bottom: var(--space-sm);
}

.contact-card a {
  color: var(--brand-orange);
  font-weight: 600;
}

.contact-card .text-tertiary {
  margin-top: var(--space-xs);
  font-size: var(--text-small);
}

/* =========================================================
   404
   ========================================================= */

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 12rem);
  line-height: 1;
  color: var(--brand-orange);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}

.error-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.error-text {
  color: var(--text-secondary);
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.error-footer {
  margin-top: var(--space-2xl);
  font-size: var(--text-small);
  color: var(--text-tertiary);
}

/* =========================================================
   Utilities
   ========================================================= */

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.text-center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduce 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;
  }
}
