/* ==========================================================================
   Arteeoo Marketing Website - Global Styles
   Design System: Dark mode only, minimal, professional
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES (DESIGN TOKENS)
   ========================================================================== */

:root {
  /* Colors - Backgrounds */
  --bg-primary: #111827;      /* Near black */
  --bg-secondary: #1F2937;    /* Charcoal */
  --bg-tertiary: #374151;     /* Lighter charcoal for cards */

  /* Colors - Text */
  --text-primary: #F9FAFB;    /* Off-white */
  --text-secondary: #9CA3AF;  /* Gray */
  --text-tertiary: #6B7280;   /* Darker gray */

  /* Colors - Semantic */
  --green: #30D158;           /* iOS dark mode system green */
  --green-hover: #28B94C;     /* Hover state */
  --blue: #3B82F6;            /* Remote work */
  --amber: #F59E0B;           /* Evidence, warnings */

  /* Typography - Sizes */
  --text-hero: 56px;
  --text-hero-mobile: 36px;
  --text-h2: 36px;
  --text-h2-mobile: 28px;
  --text-h3: 24px;
  --text-body: 18px;
  --text-small: 14px;
  --text-tiny: 12px;

  /* Typography - Weights */
  --weight-bold: 700;
  --weight-semibold: 600;
  --weight-regular: 400;

  /* Typography - Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;

  /* Spacing - 8pt Grid System */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Semantic Spacing (mapped to scale) */
  --space-xs: var(--space-2);
  --space-sm: var(--space-4);
  --space-md: var(--space-6);
  --space-lg: var(--space-8);
  --space-section: var(--space-10);
  --space-section-mobile: var(--space-8);
  --component-gap: var(--space-7);
  --element-gap: var(--space-5);

  /* Border Radius */
  --radius-xs: 8px;   /* Small elements, badges */
  --radius-sm: 12px;  /* Buttons, inputs */
  --radius-md: 16px;  /* Cards, small containers */
  --radius-lg: 24px;  /* Large cards, images */
  --radius-xl: 32px;  /* Hero images, major containers */

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.6s ease-out;

  /* Easing Curves (Apple-style) */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Container */
  --container-max-width: 1200px;
  --container-narrow: 800px;
  --container-medium: 900px;
  --container-tight: 700px;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: var(--line-height-tight);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--text-hero);
  font-weight: var(--weight-semibold); /* 600, not 700 */
  letter-spacing: -0.025em; /* Critical for large display text */
}

h2 {
  font-size: var(--text-h2);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #059669;
}

strong {
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.container-medium {
  max-width: var(--container-medium);
  margin: 0 auto;
  padding: 0 24px;
}

.container-tight {
  max-width: var(--container-tight);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-bg-dark {
  background-color: var(--bg-primary);
}

.section-bg-darker {
  background-color: var(--bg-secondary);
}

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

/* ==========================================================================
   5. COMPONENT STYLES
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius-sm); /* 12px now */
  font-weight: var(--weight-semibold);
  font-size: 16px;
  text-decoration: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--green);
  color: white;
}

.btn-primary:hover {
  opacity: 0.85; /* iOS-style opacity reduction */
  color: white;
}

.btn-primary:active {
  transform: scale(0.97); /* Subtle scale down on press */
  opacity: 0.7;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.btn-lg {
  padding: 16px 32px;
  min-height: 50px;
  font-size: 17px;
}

.btn-sm {
  padding: 8px 16px;
  min-height: 34px;
  font-size: 14px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  opacity: 1;
}

.btn-secondary:active {
  transform: scale(0.97);
}

.btn-secondary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 3px;
}

/* Cards */
.card {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.card-hover {
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Pricing Cards */
.pricing-card {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.pricing-card.featured {
  border-color: var(--green);
  border-width: 2px;
  position: relative;
  background: linear-gradient(135deg, rgba(48, 209, 88, 0.05) 0%, transparent 50%);
  box-shadow: 0 0 40px rgba(48, 209, 88, 0.1);
  transform: scale(1.02);
}

.pricing-card h3 {
  margin-bottom: var(--space-xs);
}

.pricing-card .price {
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.pricing-card ul {
  list-style: none;
  margin: var(--space-sm) 0;
}

.pricing-card ul li {
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
}

.pricing-card ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2330D158'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  vertical-align: middle;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-md) 0;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: var(--space-sm);
  display: block;
}

.feature-title {
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.feature-description {
  color: var(--text-secondary);
  font-size: var(--text-body);
  line-height: var(--line-height-relaxed);
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

/* Privacy List */
.privacy-list {
  list-style: none;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 2.2;
  display: inline-block;
  text-align: left;
}

.privacy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Section Heading */
.section-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* Divider */
.divider {
  margin: var(--space-4) 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Button Opacity Improvement */
.btn-primary:active {
  transform: scale(0.97);
  opacity: 0.75; /* Less aggressive than 0.7 */
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--space-sm) 24px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: var(--space-4);
  align-items: center;
}

.navbar-logo {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: var(--space-2); /* 8px gap between logo and text */
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
}

.navbar-logo:hover {
  opacity: 0.8;
}

.navbar-logo-icon {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0; /* Prevent logo from shrinking */
}

.navbar-logo-text {
  white-space: nowrap;
}

.navbar .btn-sm {
  justify-self: end;
  white-space: nowrap;
}

/* ==========================================================================
   MOBILE MENU (HAMBURGER DRAWER)
   ========================================================================== */

/* Hamburger Button - Always visible on all screen sizes */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 60;
  transition: opacity var(--transition-fast);
}

.mobile-menu-toggle:hover {
  opacity: 0.7;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

/* Hamburger Lines */
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-quart),
              opacity 0.3s var(--ease-out-quart);
}

.hamburger-line:not(:last-child) {
  margin-bottom: 6px;
}

/* Hamburger Animation: Lines to X */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--bg-secondary);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 55;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out-expo);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Menu Content Container */
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: var(--space-8) var(--space-6) var(--space-6);
}

/* Mobile menu header with logo */
.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: var(--space-2); /* 8px */
  padding: 0 0 var(--space-4); /* 16px bottom padding */
  margin: calc(var(--space-8) * -1) calc(var(--space-6) * -1) var(--space-2); /* Negative margins to align with container */
  padding: var(--space-6) var(--space-6) var(--space-4); /* 24px sides, 24px top, 16px bottom */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-2); /* 8px */
}

.mobile-menu-logo {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}

.mobile-menu-brand {
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--text-primary);
}

/* Menu Sections */
.mobile-menu-section {
  display: flex;
  flex-direction: column;
}

.mobile-menu-top {
  flex-grow: 1;
}

.mobile-menu-bottom {
  margin-top: auto;
  padding-top: var(--space-6);
}

/* Section Titles */
.mobile-menu-section-title {
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.mobile-menu-section-title:first-child {
  margin-top: 0;
}

/* Menu Links */
.mobile-menu-link {
  display: block;
  font-size: 20px;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-3) 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
  position: relative;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
  color: var(--green);
  transform: translateX(4px);
}

.mobile-menu-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: var(--radius-xs);
}

/* Small links for bottom section */
.mobile-menu-link-small {
  display: block;
  font-size: var(--text-small);
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.mobile-menu-link-small:hover,
.mobile-menu-link-small:focus {
  color: var(--text-primary);
}

.mobile-menu-link-small:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

/* Divider */
.mobile-menu-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-4);
}

/* Menu Overlay Backdrop */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 54;
  pointer-events: none;
}

.mobile-menu.open ~ .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: var(--space-7) 24px;
  margin-top: var(--space-section);
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer-brand-section {
  /* Container for logo + brand + tagline */
}

.footer-brand-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-2); /* 8px */
  margin-bottom: var(--space-1);
}

.footer-logo {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  opacity: 0.9; /* Slightly muted in footer */
}

.footer-brand {
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--text-primary);
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-sections {
  display: flex;
  gap: var(--space-7);
  flex-wrap: wrap;
}

.footer-section-title {
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-link {
  display: block;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  max-width: var(--container-max-width);
  margin: var(--space-6) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-tertiary);
  font-size: 14px;
  text-align: center;
}

/* ==========================================================================
   6. ANIMATION CLASSES
   ========================================================================== */

/* Fade-in on scroll */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

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

/* Hero section spacing */
.hero-headline {
  margin-bottom: var(--space-5); /* 24px for better breathing room */
}

.hero-subhead {
  margin-bottom: var(--space-7); /* 48px before CTA */
}

/* Hero image fade-in on load */
.hero-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo) 0.3s,
              transform 0.8s var(--ease-out-expo) 0.3s;
}

.hero-image.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion support */
@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;
  }

  .fade-in-section {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-image {
    opacity: 1 !important;
  }
}

/* ==========================================================================
   7. CONTENT STYLES
   ========================================================================== */

/* Content pages (Privacy, Terms, Support, etc.) */
.content-page {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-section) 24px;
}

.content-page h1 {
  margin-bottom: var(--space-md);
}

.content-page h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.content-page h3 {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.content-page p {
  margin-bottom: var(--space-sm);
}

.content-page ul, .content-page ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.content-page li {
  margin-bottom: var(--space-xs);
}

.content-page a {
  color: var(--green);
  text-decoration: underline;
}

.content-page a:hover {
  color: #059669;
}

/* FAQ Accordion */
.faq-section {
  margin-bottom: var(--space-md);
}

.faq-section h2 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.faq-item {
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--space-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  padding: var(--space-sm) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--green);
}

.faq-question:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.faq-question::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s var(--ease-out-quart);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease;
}

.faq-answer[aria-hidden="false"] {
  max-height: 1000px;
  padding-bottom: var(--space-sm);
}

.faq-answer p {
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

/* ==========================================================================
   8. RESPONSIVE BREAKPOINTS
   ========================================================================== */

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

  .two-column {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --text-hero: var(--text-hero-mobile);
    --text-h2: var(--text-h2-mobile);
    --space-section: var(--space-section-mobile);
  }

  h1 {
    font-size: var(--text-hero-mobile);
  }

  h2 {
    font-size: var(--text-h2-mobile);
  }

  .section {
    padding: var(--space-section-mobile) 0;
  }

  .container,
  .container-narrow,
  .container-medium,
  .container-tight {
    padding: 0 16px;
  }

  .feature-grid {
    gap: var(--space-md);
  }
}

@media (max-width: 640px) {
  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

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

  /* Mobile menu adjustments for small screens */
  .mobile-menu {
    width: 280px;
  }

  .mobile-menu-content {
    padding: var(--space-7) var(--space-5) var(--space-5);
  }
}

/* ==========================================================================
   9. UTILITY CLASSES
   ========================================================================== */

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

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

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

.text-green { color: var(--green); }
.text-blue { color: var(--blue); }
.text-amber { color: var(--amber); }

.font-bold { font-weight: var(--weight-bold); }
.font-semibold { font-weight: var(--weight-semibold); }
