/* ============================================
   TENANT EXPOSURE — style.css
   Professional/institutional design for commercial lease risk education
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

:root {
  /* Colors */
  --navy: #1a1a2e;
  --navy-light: #24243e;
  --navy-dark: #12121f;
  --teal: #16a085;
  --teal-hover: #1abc9c;
  --teal-dark: #0e8c73;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f5f5f5;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-600: #dc2626;
  --red-50: #fef2f2;
  --amber-600: #d97706;
  --amber-50: #fffbeb;
  --green-600: #059669;
  --green-50: #ecfdf5;

  /* Typography */
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Sizing */
  --content-narrow: 720px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Transitions */
  --transition: 200ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
  text-wrap: balance;
}

p, li, figcaption { text-wrap: pretty; }

::selection {
  background: rgba(22, 160, 133, 0.2);
  color: var(--gray-900);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--teal);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
  font-weight: 600;
}
.skip-link:focus {
  top: var(--space-2);
}

/* --- Navigation --- */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo:hover { color: var(--teal); }

.nav-logo svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a.active {
  color: var(--teal);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--white);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: var(--space-4) var(--space-6);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
}

/* --- Hero Section --- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(var(--space-16), 10vw, var(--space-24)) var(--space-6);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(22, 160, 133, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.25rem, 1.5rem + 3.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  max-width: 16ch;
}

.hero h1 .accent {
  color: var(--teal);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 48ch;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22, 160, 133, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-100);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Sections --- */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}

.section-alt {
  background: var(--gray-100);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

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

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

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

.section-header h2 {
  font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 60ch;
}

.section-navy .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: var(--space-3);
}

/* --- Exposure Infographic (Homepage) --- */
.exposure-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-8);
}

@media (max-width: 768px) {
  .exposure-visual { grid-template-columns: 1fr; }
}

.exposure-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.exposure-card-navy {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.exposure-card-navy h3 { color: var(--white); }

.exposure-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
}

.exposure-item:last-child {
  border-bottom: none;
}

.exposure-item .label {
  color: rgba(255, 255, 255, 0.7);
}

.exposure-item .value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--teal);
}

.exposure-total {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 2px solid var(--teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exposure-total .label {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.exposure-total .value {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}

/* Rent vs exposure comparison */
.rent-compare {
  text-align: center;
}

.rent-compare .rent-amount {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.rent-compare .rent-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-6);
}

.rent-compare .vs {
  display: inline-block;
  background: var(--gray-200);
  color: var(--gray-600);
  font-weight: 700;
  font-size: 0.75rem;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
}

.rent-compare .exposure-amount {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  font-weight: 800;
  color: var(--red-600);
  margin-bottom: var(--space-2);
}

.rent-compare .exposure-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Score Meter --- */
.score-scale {
  display: flex;
  gap: 2px;
  height: 2.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-6) 0;
}

.score-segment {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.score-green { background: var(--green-600); }
.score-amber { background: var(--amber-600); }
.score-red { background: var(--red-600); }

.score-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: var(--space-2);
}

/* --- Calculator Steps --- */
.calc-steps {
  counter-reset: step;
}

.calc-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--gray-200);
}

.calc-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.calc-step-number {
  counter-increment: step;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.calc-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.calc-step p {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
  max-width: 65ch;
}

.calc-example {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: 0.9375rem;
}

.calc-example .formula {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.calc-example .result {
  color: var(--teal-dark);
  font-weight: 700;
}

.calc-total {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-8);
}

.calc-total h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.calc-total .total-amount {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-2);
}

.calc-total p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 50ch;
  margin: 0 auto var(--space-6);
}

@media (max-width: 600px) {
  .calc-step {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* --- Article Content --- */
.article-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(var(--space-12), 8vw, var(--space-20)) var(--space-6);
}

.article-hero h1 {
  font-size: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: var(--space-4);
}

.article-hero .article-meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.article-body {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.article-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.article-body p {
  margin-bottom: var(--space-4);
  color: var(--gray-700);
  max-width: 65ch;
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
  color: var(--gray-700);
}

.article-body li {
  margin-bottom: var(--space-2);
  max-width: 65ch;
}

.article-body strong {
  color: var(--gray-900);
  font-weight: 600;
}

/* Callout / Warning box */
.callout {
  background: var(--gray-100);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) 0;
}

.callout p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.callout-warning {
  background: var(--red-50);
  border-left-color: var(--red-600);
}

.callout-warning p {
  color: var(--gray-800);
}

.callout-amber {
  background: var(--amber-50);
  border-left-color: var(--amber-600);
}

/* Inline data highlight */
.data-highlight {
  display: inline-block;
  background: rgba(22, 160, 133, 0.1);
  color: var(--teal-dark);
  font-weight: 700;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

/* --- Feature Grid (Organizations page) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--teal);
  margin-bottom: var(--space-4);
}

/* --- Benefits list --- */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 1rem;
  color: var(--gray-700);
}

.benefits-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  background: var(--teal);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  margin-top: var(--space-12);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 1.125rem + 1.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 50ch;
  margin: 0 auto var(--space-6);
  font-size: 1.0625rem;
}

/* Standalone CTA section (full-width) */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: clamp(var(--space-12), 8vw, var(--space-20)) var(--space-6);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 50ch;
  margin: 0 auto var(--space-8);
  font-size: 1.125rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-12) var(--space-6);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
}

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

.footer-brand p {
  margin-top: var(--space-3);
  font-size: 0.875rem;
  max-width: 36ch;
  line-height: 1.6;
}

.footer-links h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  display: block;
  padding: var(--space-1) 0;
}

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

.footer-bottom {
  max-width: var(--content-wide);
  margin: var(--space-8) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
}

.footer-disclaimer {
  max-width: var(--content-wide);
  margin: var(--space-6) auto 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-muted { color: var(--gray-500); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Internal link styling in articles */
.article-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(22, 160, 133, 0.3);
}
.article-body a:hover {
  text-decoration-color: var(--teal);
}

/* Table in articles */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-6) 0;
  font-size: 0.9375rem;
}

.article-body th,
.article-body td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.article-body th {
  font-weight: 700;
  color: var(--navy);
  background: var(--gray-50);
}

/* Page-specific: about */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

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

.about-card {
  text-align: center;
  padding: var(--space-6);
}

.about-card .icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto var(--space-4);
  color: var(--teal);
}

.about-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
}

.about-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
