/* ============================================
   Reset & Base – 120fps Optimized
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
  /* Prevent layout shift from scrollbar */
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition:
    background-color var(--transition-theme),
    color var(--transition-theme);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.binary-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
}

[data-theme="dark"] .binary-bg {
  opacity: 0.35;
}

.navbar,
.hero,
.section,
.footer {
  position: relative;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Prevent images from triggering layout */
  content-visibility: auto;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   Utility
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  /* Isolate compositing */
  contain: layout style;
}

.navbar.scrolled {
  background: color-mix(in srgb, var(--color-bg) 85%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  font-family: var(--font-code);
  font-size: clamp(0.95rem, 1.1vw + 0.6rem, var(--fs-lg));
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 10;
  white-space: nowrap;
  max-width: 60vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo__bracket {
  color: var(--color-primary);
}

.logo__name {
  color: var(--color-text);
  transition: color var(--transition-theme);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  padding: var(--space-xs) 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.btn-icon:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

/* Theme toggle icons */
.icon--moon { display: none; }
[data-theme="dark"] .icon--sun { display: none; }
[data-theme="dark"] .icon--moon { display: block; }

.lang-label {
  font-family: var(--font-code);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
}

/* Burger Menu */
.navbar__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  backface-visibility: hidden;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.navbar__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar__burger:hover {
  background: var(--color-bg-alt);
}

body.nav-open {
  overflow: hidden;
}

.nav-backdrop {
  display: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

.btn--primary:hover {
  background: var(--color-primary-light);
  box-shadow: 0 6px 24px var(--color-primary-glow);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-xs);
}

.btn--full {
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  overflow: hidden;
  /* Isolate hero compositing layer */
  contain: layout style;
}

.hero__bg-grid {
  position: absolute;
  inset: -40px;
  background-image:
    linear-gradient(var(--color-border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border-light) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  /* Force own compositor layer */
  isolation: isolate;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__greeting {
  font-size: var(--fs-md);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-sm);
}

.hero__name {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-text), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__typed-wrapper {
  display: flex;
  align-items: center;
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  min-height: 2em;
}

.hero__typed {
  color: var(--color-primary);
}

.hero__desc {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 500px;
  margin-bottom: var(--space-2xl);
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Code Window */
.code-window {
  background: var(--color-bg-code);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  /* Promote to own layer for floating animation */
  transform: translateZ(0);
}

.code-window__dots {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.15);
}

.code-window__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-window__dots span:nth-child(1) { background: #ff5f57; }
.code-window__dots span:nth-child(2) { background: #febc2e; }
.code-window__dots span:nth-child(3) { background: #28c840; }

.code-window__body {
  padding: 20px 24px;
  font-family: var(--font-code);
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: #e0e0e0;
  overflow-x: auto;
}

/* Code Syntax Colors */
.code-kw { color: #c678dd; }
.code-var { color: #e5c07b; }
.code-str { color: #98c379; }
.code-prop { color: #61afef; }
.code-fn { color: #61afef; }
.code-comment { color: #5c6370; font-style: italic; }

/* Hero Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
  /* Lazy render off-screen sections */
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.section:nth-child(even) {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section__header--left {
  text-align: start;
}

.section__tag {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background: var(--color-primary-glow);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.section__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.section__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  overflow: hidden;
  /* GPU layer for hover transform */
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout style;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.service-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-glow);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.service-card__number {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-code);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-border-light);
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition-theme);
}

[dir="ltr"] .service-card__number {
  right: var(--space-lg);
  left: auto;
}

[dir="rtl"] .service-card__number {
  left: var(--space-lg);
  right: auto;
}

/* ============================================
   SKILLS
   ============================================ */
.skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.skill-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  contain: layout style;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.skill-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.skill-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.skill-item__icon svg {
  width: 100%;
  height: 100%;
}

.skill-item__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  font-family: var(--font-code);
  min-width: 80px;
  white-space: nowrap;
}

.skill-item__bar {
  flex: 1;
  height: 6px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.skill-item__fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.project-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* GPU layer for hover transform */
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout style;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.project-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow-md);
}

.project-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    hsl(var(--hue, 260), 60%, 65%),
    hsl(calc(var(--hue, 260) + 40), 60%, 45%)
  );
}

.project-card__placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.6);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  /* Use less expensive blur on overlay */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.project-card__info {
  padding: var(--space-xl);
}

.project-card__info h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.project-card__info p {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.project-card__tags span {
  font-size: var(--fs-xs);
  font-family: var(--font-code);
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.project-card__info .btn {
  margin-top: var(--space-md);
}

/* ============================================
   ABOUT
   ============================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.code-window--large {
  max-width: 520px;
}

.about__text p {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.about__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  font-family: var(--font-code);
}

.stat__plus {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.stat__label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

/* ============================================
   CONTACT
   ============================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form .btn {
  grid-column: 1 / -1;
  margin-top: var(--space-sm);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: border-color var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--color-primary);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-glow);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.contact-info-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.contact__socials {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border-light);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__logo {
  font-family: var(--font-code);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

.footer__copy {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.footer__made {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer__code {
  font-family: var(--font-code);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --fs-5xl: 3.5rem;
    --fs-4xl: 2.75rem;
    --fs-3xl: 2rem;
  }

  .hero__inner {
    gap: var(--space-2xl);
  }

  .about__inner {
    gap: var(--space-2xl);
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --container-padding: 1.25rem;
    --space-5xl: 5rem;
  }

  /* Nav Mobile */
  .navbar__burger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 320px);
    padding: calc(var(--navbar-height) + var(--space-lg)) var(--space-xl) var(--space-xl);
    background: var(--color-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--space-lg);
    opacity: 1;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform var(--transition-base);
    z-index: 1002;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    border-inline-start: 1px solid var(--color-border-light);
    overflow-y: auto;
  }

  .navbar__logo {
    max-width: 52vw;
  }

  .navbar__links.open {
    transform: translateX(0);
    pointer-events: all;
  }

  .navbar__links.open .nav-link {
    font-size: var(--fs-lg);
    animation: none;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links .nav-link {
    display: block;
    width: 100%;
    padding: 0.8rem 0.4rem;
    border-bottom: 1px solid var(--color-border-light);
  }

  .navbar__actions {
    z-index: 1003;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    z-index: 1001;
  }

  .nav-backdrop.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Hero Mobile */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__typed-wrapper {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  /* About Mobile */
  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__code-block {
    order: 2;
  }

  .about__text {
    order: 1;
  }

  .section__header--left {
    text-align: center;
  }

  .about__stats {
    justify-content: center;
  }

  /* Contact Mobile */
  .contact__form {
    grid-template-columns: 1fr;
  }

  /* Skills Mobile */
  .skills__grid {
    grid-template-columns: 1fr;
  }

  /* Portfolio Mobile */
  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile */
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --fs-5xl: 2rem;
    --fs-4xl: 1.75rem;
    --container-padding: 1rem;
  }

  .about__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .btn-icon {
    width: 36px;
    height: 36px;
  }

  .navbar__actions {
    gap: 0.35rem;
  }
}
