:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --dark: #0f172a;
  --darker: #020617;
  --light: #f8fafc;
  --gray: #94a3b8;
  --spacing: 1.5rem;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Astral-inspired Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  background: radial-gradient(
    circle at center,
    var(--dark) 0%,
    var(--darker) 80%
  );
  z-index: 4;
  padding-top: 4rem;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 0;
  overflow: visible;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2rem, 6vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #f8fafc, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.35rem);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
  line-height: 1.6;
}

.btn-hero {
  background-color: var(--primary);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4),
    0 0 15px rgba(96, 165, 250, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 25px rgba(37, 99, 235, 0.5),
    0 0 20px rgba(96, 165, 250, 0.4);
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  z-index: -1;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.btn-hero:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Scrolling Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
  margin-bottom: 0.5rem;
}

.mouse::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
}

.scroll-text {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* Section Styling — Mobile First */
.section {
  padding: clamp(2.5rem, 5vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  color: var(--light);
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Hanwag Scrolling Animation */
.hanwag-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hanwag-active {
  opacity: 1;
  transform: translateY(0);
}

/* Skills Section */
.skill-card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.skill-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.skill-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--light);
}

.skill-description {
  color: var(--gray);
  line-height: 1.6;
}

/* Work Experience Section */
.experience-card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge {
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.experience-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--light);
}

.experience-company {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.experience-list {
  padding-left: 1.5rem;
}

.experience-list li {
  margin-bottom: 0.5rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Services Section */
.service-card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--light);
}

.service-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-cta {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: var(--primary);
  color: white;
}

/* Background Effects */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  overflow: visible;
  background-size: 40px 40px;
  z-index: -2;
  opacity: 0.3;
}

.bg-blur {
  position: absolute;
  overflow: visible;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -2;
  opacity: 0.15;
}

/* Responsive Adjustments — now handled by clamp() above.
   Keeping this block only for legacy safety. */
@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
  }

  .hero-section {
    padding-top: 5rem;
  }
}

/* PROJECT FILTER CONTROLS */
.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}

.filter-search {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.filter-search input {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--light);
  transition: all 0.3s ease;
}

.filter-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.filter-search input::placeholder {
  color: var(--gray);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.filter-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

/* Filter animation styles */
.project-card[aria-hidden="true"] {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.project-card[aria-hidden="false"],
.project-card:not([aria-hidden]) {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* PROJECT CARD STYLES */
.project-card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 20px;
  margin-top: auto;
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.3);
}

.project-visual {
  position: relative;
  overflow: hidden;
  height: clamp(200px, 40vw, 320px);
}

.project-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(15, 23, 42, 0.95)
  );
}

.project-type-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.badge-code {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.project-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f1f5f9;
  line-height: 1.3;
}

.project-description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* TECH STACK TAGS */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.project-impact {
  background: rgba(37, 99, 235, 0.1);
  border-left: 3px solid var(--primary);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.project-impact p {
  margin-bottom: 0.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.impact-icon {
  color: var(--primary);
  margin-right: 0.5rem;
  font-size: 1.2rem;
  vertical-align: middle;
}

/* MINIMALIST GITHUB LINK */
.project-cta-container {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.project-link {
  display: inline-flex;
  align-items: center;
  color: #60a5fa;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

/* Filter hidden state for project links */
.project-link[aria-hidden="true"] {
  display: none !important;
}

.project-link i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.project-link:hover {
  color: #93c5fd;
}

.project-link:hover i {
  transform: scale(1.15);
}

/* RESPONSIVE ADJUSTMENTS */
@media (min-width: 992px) {
  .project-card {
    flex-direction: row;
    height: 380px;
  }

  .project-visual {
    width: 55%;
    height: 100%;
  }

  .project-content {
    width: 45%;
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .project-title {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

  .project-content {
    padding: 1.25rem;
  }
}

/* PERFORMANCE OPTIMIZATION */
.project-video {
  background-color: #0f172a;
}

/* CTA SECTION STYLING */
.cta-section {
  background: linear-gradient(135deg, var(--darker), var(--dark));
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
  margin: clamp(2rem, 5vw, 5rem) auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-heading {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #f8fafc, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.cta-subtext {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.3rem);
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-button {
  background: var(--primary);
  color: white;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 1.5rem;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
  background: var(--primary-dark);
}

.intense-button:hover {
  transform: scale(1.2, 1.2);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
  background: var(--primary-dark);
}

.contact-preview {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.contact-title {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-light);
}

.contact-details {
  text-align: left;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--light);
}

.contact-form-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.contact-form-link:hover {
  color: var(--primary);
  gap: 0.7rem;
}

/* Background Elements */
.cta-blur {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.2;
}

.blur-1 {
  background: var(--primary);
  top: -50px;
  left: -50px;
}

.blur-2 {
  background: #8b5cf6;
  bottom: -50px;
  right: -50px;
}

.cta-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .cta-heading {
    font-size: 2.4rem;
  }

  .cta-subtext {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    margin: 1.5rem;
    border-radius: 16px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .nav.justify-content-center {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .nav.justify-content-center .cta-button {
    margin: 0.25rem 0 !important;
    width: 200px;
  }

  .contact-preview {
    padding: 1.2rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

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

/* About page base */
.about-page {
  background-color: var(--darker);
  color: var(--light);
  overflow-x: hidden;
}

/* Hero section */
.about-hero {
  padding: clamp(3rem, 6vw, 7rem) 0 0;
  position: relative;
}

.about-headline {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #f8fafc, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Bio content styling */
.bio-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
}

.bio-content .lead {
  font-size: 1.25rem;
  color: var(--light);
}

/* Journey highlights */
.journey-highlight-item {
  transition: transform 0.3s ease;
  height: 100%;
}

.journey-highlight-item:hover {
  transform: translateY(-5px);
}

/* Mini CTA */
.about-mini-cta {
  display: inline-flex;
  align-items: center;
}

/* About responsive — now handled by clamp() above */
@media (max-width: 768px) {
  .bio-content .lead {
    font-size: 1.1rem;
  }
}

/* Type differentiation */
.education-formal .education-icon i {
    color: var(--primary);
}

.education-certification .education-icon i {
    color: #8b5cf6;
}

.education-training .education-icon i {
    color: #0ea5e9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .education-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .education-icon i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .education-card {
        padding: 1.25rem !important;
    }
    
    .education-degree {
        font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
    }
    
    /* Only target education card flex layouts, NOT all .d-flex */
    .education-card .d-flex {
        flex-direction: column;
    }
    
    .education-icon {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
}

/* Touch device: suppress hover transforms that cause layout jitter */
@media (hover: none) {
    .skill-card:hover,
    .experience-card:hover,
    .service-card:hover,
    .project-card:hover {
        transform: none;
    }
}

/* Extended skills section */

.skills-pills .skill-group {
    margin-bottom: 3rem;
}

.skill-pill {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-color: rgba(37, 99, 235, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .skill-group h3 {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 768px) {
    .d-flex.flex-wrap {
        justify-content: center;
    }
    
    .skill-pill {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }
}
/* Accessibility: Focus visible outline */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
