/**
 * MetaformaX.Web - Main CSS
 * Global styles, base elements, and utilities
 */

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */

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

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

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

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

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-primary-hover);
}



/* ==========================================================================
   IMAGES & MEDIA
   ========================================================================== */

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

/* ==========================================================================
   SELECTION
   ========================================================================== */

::selection {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-background-subtle);
}

::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--slate-400);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

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

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing utilities */
.mb-0 { margin-bottom: var(--space-0) !important; }
.mb-1 { margin-bottom: var(--space-1) !important; }
.mb-2 { margin-bottom: var(--space-2) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-5 { margin-bottom: var(--space-5) !important; }
.mb-6 { margin-bottom: var(--space-6) !important; }
.mb-8 { margin-bottom: var(--space-8) !important; }
.mb-12 { margin-bottom: var(--space-12) !important; }

.mt-0 { margin-top: var(--space-0) !important; }
.mt-2 { margin-top: var(--space-2) !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-6 { margin-top: var(--space-6) !important; }
.mt-8 { margin-top: var(--space-8) !important; }

/* Display utilities */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Width utilities */
.w-full { width: 100%; }
.max-w-full { max-width: 100%; }

/* ==========================================================================
   METAFORMAX BRAND UTILITY CLASSES
   ========================================================================== */

/* Gradient Text Utilities */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: var(--gradient-brand-subtle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--purple-700);
}

/* Border Utilities */
.border-gold {
  border-color: var(--color-border-gold);
}

.border-gold-thick {
  border: 2px solid var(--color-border-gold);
}

/* Background Gradient Utilities */
.bg-gradient-brand {
  background: var(--gradient-brand);
}

.bg-gradient-brand-light {
  background: var(--gradient-brand-light);
}

.bg-gradient-brand-subtle {
  background: var(--gradient-brand-subtle);
}

.bg-gradient-gold {
  background: var(--gradient-gold);
}

/* Card/Premium Utilities */
.card-premium {
  border: 2px solid var(--color-border-gold);
  box-shadow: var(--shadow-secondary);
}

.card-brand {
  background: var(--gradient-brand);
  color: white;
}

/* Text Color Utilities */
.text-purple { color: var(--purple-700); }
.text-purple-dark { color: var(--purple-900); }
.text-gold { color: var(--gold-500); }
.text-gold-dark { color: var(--gold-700); }
.text-blue-brand { color: var(--blue-900); }

/* Font Family Utilities */
.font-display {
  font-family: var(--font-family-display);
}

.font-sans {
  font-family: var(--font-family-base);
}

/* Glow Effects */
.glow-purple {
  box-shadow: var(--shadow-primary);
}

.glow-purple-lg {
  box-shadow: var(--shadow-primary-lg);
}

.glow-gold {
  box-shadow: var(--shadow-secondary);
}

.glow-gold-lg {
  box-shadow: var(--shadow-secondary-lg);
}

/* Shine/Gloss Effect */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.shine-effect:hover::before {
  left: 100%;
}

/* Pulse Animation for CTAs */
.pulse-gold {
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
  }
}

/* Gradient Border */
.gradient-border {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-brand);
  border-radius: inherit;
  z-index: -1;
}

/* Glass Effect with Brand Colors */
.glass-brand {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(74, 20, 140, 0.1);
}

/* Premium Badge */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--gradient-gold);
  color: var(--slate-900);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-secondary);
}

/* Star/Icon Accents */
.icon-gold {
  color: var(--gold-500);
}

.icon-purple {
  color: var(--purple-700);
}

.icon-blue {
  color: var(--blue-900);
}

/* ==========================================================================
   METAFORMAX BRAND ANIMATION UTILITIES
   ========================================================================== */

/* Purple Pulse */
.pulse-purple {
  animation: pulse-purple 2s ease-in-out infinite;
}

/* Gold Shine Effect */
.gold-shine {
  position: relative;
  overflow: hidden;
}

.gold-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 193, 7, 0.3) 50%,
    transparent 100%
  );
  animation: gold-shine 3s ease-in-out infinite;
}

/* Gradient Border Animation */
.gradient-border-animated {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  z-index: 1;
}

.gradient-border-animated::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-brand);
  background-size: 200% 200%;
  border-radius: inherit;
  z-index: -1;
  animation: gradient-rotate 3s ease infinite;
}

/* Floating Gold Particles */
.float-gold {
  animation: float-gold 4s ease-in-out infinite;
}

/* Sparkle Effect */
.sparkle {
  position: relative;
}

.sparkle::before,
.sparkle::after {
  content: '✦';
  position: absolute;
  color: var(--gold-400);
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle::before {
  top: -5px;
  left: -5px;
  animation-delay: 0s;
}

.sparkle::after {
  bottom: -5px;
  right: -5px;
  animation-delay: 1s;
}

/* Purple Ripple on Click */
.ripple-purple {
  position: relative;
}

.ripple-purple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(74, 20, 140, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ripple-purple:active::before {
  animation: purple-ripple 0.6s ease-out;
}

/* Gradient Fade Animation */
.gradient-fade {
  background: var(--gradient-brand);
  background-size: 200% 200%;
  animation: gradient-fade 5s ease infinite;
}

/* Pulse Ring Animation */
.pulse-ring {
  position: relative;
}

.pulse-ring::before,
.pulse-ring::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--purple-700);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s ease-out infinite;
}

.pulse-ring::after {
  animation-delay: 1s;
}

/* Shine Effect on Hover */
.shine-on-hover {
  position: relative;
  overflow: hidden;
}

.shine-on-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.5s;
}

.shine-on-hover:hover::before {
  left: 150%;
}

/* Glow Animation */
.glow-pulse {
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from {
    box-shadow: 0 0 10px rgba(74, 20, 140, 0.3);
  }
  to {
    box-shadow: 0 0 30px rgba(74, 20, 140, 0.6);
  }
}

/* Gold Border Glow */
.glow-border-gold {
  border: 2px solid var(--gold-400);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.glow-border-gold:hover {
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
  border-color: var(--gold-500);
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 { font-size: var(--font-size-3xl); }
  h2 { font-size: var(--font-size-2xl); }
}



/* ==========================================================================
   DARK MODE SUPPORT (Base)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  /* Optional: Auto dark mode based on system preference */
  /* Uncomment to enable auto dark mode */
  /*
  html:not([data-theme]) {
    --color-background: var(--slate-950);
    --color-background-elevated: var(--slate-900);
    --color-text-primary: var(--slate-50);
    --color-text-secondary: var(--slate-300);
    --color-text-muted: var(--slate-400);
  }
  */
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .navbar,
  .footer,
  .hero-cta,
  .package-toggle,
  .testimonial-nav,
  .contact-form {
    display: none !important;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  section {
    page-break-inside: avoid;
  }
}

/* ==========================================================================
   BASE STYLES FOR DYNAMIC COMPONENTS
   ========================================================================== */

/* Smooth transition for theme switching */
html {
  transition: background-color var(--duration-normal) var(--ease-out),
              color var(--duration-normal) var(--ease-out);
}

/* Base styles for form elements */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Ensure interactive elements have minimum touch target size */
button,
input,
textarea,
select {
  min-height: 44px;
  min-width: 44px;
}

/* Links only need touch target in navigation context */
nav a,
.btn {
  min-height: 44px;
}

/* Allow form elements to be smaller when explicitly sized */
input[type="checkbox"],
input[type="radio"] {
  min-height: auto;
  min-width: auto;
}



/* ==========================================================================
   DARK MODE THEME - MetaformaX Brand Colors
   ========================================================================== */

[data-theme="dark"] {
  --color-background: var(--slate-950);
  --color-background-elevated: var(--slate-900);
  --color-background-subtle: var(--slate-800);
  --color-text-primary: var(--slate-50);
  --color-text-secondary: var(--slate-300);
  --color-text-muted: var(--slate-400);
  --color-border: var(--slate-700);
  --color-border-subtle: var(--slate-800);
  --nav-bg: rgba(15, 23, 42, 0.95);
  --nav-border: var(--slate-700);
}

/* Dark mode component overrides */
[data-theme="dark"] .hero {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5), #0f172a);
}

[data-theme="dark"] .hero-orb-1 {
  opacity: 0.15;
  filter: blur(96px) brightness(1.2);
}

[data-theme="dark"] .hero-orb-2 {
  opacity: 0.15;
  filter: blur(96px) brightness(1.2);
}

[data-theme="dark"] .pricing-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card {
  background: var(--color-background-elevated);
  border-color: var(--color-border);
}

[data-theme="dark"] .contact-form {
  background: var(--color-background-elevated);
  border-color: var(--color-border);
}

[data-theme="dark"] .testimonial-quote {
  color: var(--slate-300);
}

[data-theme="dark"] .accordion-answer {
  color: var(--slate-400);
}

[data-theme="dark"] .service-description {
  color: var(--slate-400);
}

[data-theme="dark"] .contact-description,
[data-theme="dark"] .section-subtitle {
  color: var(--slate-400);
}

/* Dark mode enhanced glow effects - MetaformaX Brand */
[data-theme="dark"] .pricing-card-popular {
  box-shadow:
    0 25px 50px -12px rgba(74, 20, 140, 0.5),
    0 0 0 2px rgba(255, 193, 7, 0.5);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 23, 42, 0.98);
  border-bottom-color: #334155;
}

[data-theme="dark"] .theme-toggle {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

[data-theme="dark"] .theme-toggle .theme-icon {
  color: white;
}



/* ==========================================================================
   BASE COMPONENTS (btn, card, form, input)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:active {
  transform: scale(0.98);
}
.btn:disabled, .btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.btn .btn-loading {
  display: none;
  align-items: center;
  gap: var(--spacing-sm);
}
.btn.is-loading .btn-text {
  display: none;
}
.btn.is-loading .btn-loading {
  display: flex;
}
.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

/* ==========================================================================
   BUTTON STYLES - MetaformaX Brand
   ========================================================================== */

.btn-primary {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--gradient-brand-light);
  box-shadow: var(--shadow-primary-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--gradient-gold);
  color: var(--slate-900);
  box-shadow: var(--shadow-secondary);
  font-weight: var(--font-weight-bold);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-800) 100%);
  box-shadow: var(--shadow-secondary-lg);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--color-primary-subtle);
  border-color: var(--color-primary-hover);
  color: var(--color-primary-hover);
}

/* Gold Outline Button */
.btn-outline-gold {
  background-color: transparent;
  border: 2px solid var(--gold-500);
  color: var(--gold-600);
}

.btn-outline-gold:hover {
  background: var(--gold-100);
  border-color: var(--gold-600);
  color: var(--gold-700);
}

/* Premium Button (with gold border) */
.btn-premium {
  background: var(--gradient-brand);
  color: #ffffff;
  border: 2px solid var(--gold-400);
  box-shadow:
    var(--shadow-primary),
    0 0 0 1px var(--gold-300);
}

.btn-premium:hover {
  background: var(--gradient-brand-light);
  border-color: var(--gold-500);
  box-shadow:
    var(--shadow-primary-lg),
    0 0 0 2px var(--gold-400);
  transform: translateY(-2px);
}

/* Ghost Button (Brand colors) */
.btn-ghost {
  background-color: transparent;
  border: 1px solid rgba(74, 20, 140, 0.2);
  color: var(--purple-700);
}

.btn-ghost:hover {
  background: var(--purple-50);
  border-color: var(--purple-300);
  color: var(--purple-900);
}


/* ==========================================================================
   CARD STYLES - MetaformaX Brand
   ========================================================================== */

.card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border-subtle);
}

/* Premium Card with Gold Accent */
.card-premium {
  background: linear-gradient(to bottom, #ffffff, var(--purple-50));
  border: 2px solid var(--gold-300);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px var(--gold-100);
  position: relative;
}

.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Brand Card with Gradient */
.card-brand {
  background: var(--gradient-brand);
  color: white;
  border: none;
}

.card-brand .card-title,
.card-brand .card-text {
  color: white;
}

/* Elevated Card */
.card-elevated {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-gold);
}

[data-theme="dark"] .card {
  background-color: var(--slate-800);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-700);
}

[data-theme="dark"] .card-premium {
  background: linear-gradient(to bottom, var(--slate-800), rgba(74, 20, 140, 0.2));
  border-color: var(--gold-500);
}

[data-theme="dark"] .card-brand {
  background: var(--gradient-brand);
}

/* Forms */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-primary);
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--color-text-primary);
  transition: all var(--duration-fast) var(--ease-out);
}

[data-theme="dark"] .input {
  background-color: var(--slate-900);
  border-color: var(--slate-700);
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(123, 31, 162, 0.2);
}

.input.is-error {
  border-color: var(--color-error);
  animation: shake 0.4s ease-in-out;
}
.input.is-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--color-text-primary);
  transition: all var(--duration-fast) var(--ease-out);
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

[data-theme="dark"] .textarea {
  background-color: var(--slate-900);
  border-color: var(--slate-700);
}

.textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(123, 31, 162, 0.2);
}

.textarea.is-error {
  border-color: var(--color-error);
  animation: shake 0.4s ease-in-out;
}
.textarea.is-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.form-error {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-error);
  margin-top: var(--spacing-xs);
  min-height: 1.2rem;
}

.form-success-state {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-xl);
  background: var(--emerald-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--emerald-200);
  animation: scaleIn var(--duration-normal) var(--ease-out);
}
[data-theme="dark"] .form-success-state {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}
.form-success-icon {
  width: 48px;
  height: 48px;
  color: var(--emerald-500);
  margin: 0 auto var(--spacing-md);
}
.form-success-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}
.form-success-desc {
  color: var(--slate-600);
  font-size: var(--font-size-sm);
}
[data-theme="dark"] .form-success-desc {
  color: var(--slate-400);
}

/* ==========================================================================
   ACCESSIBILITY UTILITIES
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  z-index: var(--z-tooltip);
  transition: top var(--duration-normal) var(--ease-out);
}

.skip-link:focus {
  top: var(--spacing-md);
}

.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;
}

/* ==========================================================================
   HIGH CONTRAST MODE
   ========================================================================== */

@media (prefers-contrast: high) {
  :root {
    --color-border: var(--slate-400);
    --color-border-subtle: var(--slate-300);
  }
}

