:root {
  --bg-0: #040913;
  --bg-1: #081120;
  --bg-2: #0c182b;
  --surface-1: rgba(10, 17, 31, 0.72);
  --surface-2: rgba(12, 22, 40, 0.88);
  --surface-3: rgba(17, 30, 52, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text-strong: #f4f8ff;
  --text-main: #d7e5f6;
  --text-soft: #b4c4d9;
  --text-faint: #90a3ba;
  --gold: #f0c658;
  --gold-rgb: 240, 198, 88;
  --ice: #7cc9ff;
  --ice-rgb: 124, 201, 255;
  --mint: #35d3a4;
  --radius-xs: 16px;
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --shadow-lg: 0 32px 80px rgba(2, 6, 14, 0.58);
  --shadow-md: 0 18px 46px rgba(3, 8, 18, 0.42);
  --shadow-sm: 0 10px 26px rgba(3, 8, 18, 0.24);
  --container: min(1240px, calc(100% - 2rem));
  --nav-height: 86px;
  --btn-x: 0px;
  --btn-y: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(var(--gold-rgb), 0.16), transparent 24%),
    radial-gradient(circle at top left, rgba(var(--ice-rgb), 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg-0) 0%, #07111f 38%, #04070d 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  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: 82px 82px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.82), transparent 92%);
  opacity: 0.24;
}

body::after {
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--ice-rgb), 0.08), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(var(--gold-rgb), 0.12), transparent 28%);
  filter: blur(40px);
  opacity: 0.9;
}

::selection {
  background: rgba(var(--gold-rgb), 0.28);
  color: var(--text-strong);
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(var(--gold-rgb), 0.34);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 120;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.94);
  color: #04101d;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.page-shell > section,
.page-shell > header,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(4, 8, 16, 0.54);
  backdrop-filter: blur(20px);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-nav.is-scrolled {
  background: rgba(5, 10, 18, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(2, 6, 14, 0.34);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Alexandria", "Tajawal", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 18px;
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.22), rgba(var(--ice-rgb), 0.18));
  color: var(--text-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-sm);
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(135deg, #fff8db 4%, #f0c658 44%, #7cc9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-strong);
  transform: translateY(-1px);
}

.nav-links a.is-active {
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.18), rgba(var(--ice-rgb), 0.14));
  color: var(--text-strong);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--ice-rgb), 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45)),
    linear-gradient(135deg, rgba(var(--gold-rgb), 0.15), rgba(var(--ice-rgb), 0.12));
  color: var(--text-strong);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--gold-rgb), 0.34);
  box-shadow: var(--shadow-md);
}

.theme-toggle:active {
  transform: scale(0.985);
}

.theme-toggle i {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
}

.theme-toggle__sun {
  color: #b47b12;
  background: rgba(var(--gold-rgb), 0.18);
}

.theme-toggle__moon {
  display: none !important;
  color: var(--ice);
  background: rgba(var(--ice-rgb), 0.14);
}

.theme-toggle--mobile {
  width: 100%;
  justify-content: space-between;
  border-radius: 18px;
}

.theme-toggle--mobile span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

html[data-theme-mode="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme-mode="dark"] .theme-toggle__sun {
  display: none !important;
}

html[data-theme-mode="dark"] .theme-toggle__moon {
  display: inline-grid !important;
}

.nav-mobile {
  display: none;
  padding-bottom: 1rem;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile__panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 16, 28, 0.94);
  box-shadow: var(--shadow-md);
}

.nav-mobile__panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.nav-mobile__panel .theme-toggle {
  min-height: 3rem;
  padding: 0.9rem 1rem;
}

.nav-mobile__panel a:hover,
.nav-mobile__panel a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-strong);
}

.section-block {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
}

.section-shell,
.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(12, 20, 35, 0.94), rgba(7, 12, 22, 0.98)),
    linear-gradient(130deg, rgba(var(--ice-rgb), 0.08), rgba(var(--gold-rgb), 0.08));
  box-shadow: var(--shadow-md);
}

.section-shell::before,
.panel::before {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  inset: auto auto -6rem -5rem;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.18), transparent 70%);
  pointer-events: none;
}

.section-shell {
  padding: clamp(1.4rem, 2.6vw, 3rem);
}

.panel {
  padding: clamp(1.1rem, 2vw, 1.7rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.6rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #fff8db);
  box-shadow: 0 0 0 6px rgba(var(--gold-rgb), 0.13);
}

.section-top {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.section-title {
  margin: 0;
  font-family: "Alexandria", "Tajawal", sans-serif;
  font-size: clamp(1.65rem, 3.3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.section-copy {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.88;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
}

.btn {
  --btn-y-hover: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.3rem;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
  transform: translate3d(var(--btn-x), var(--btn-y), 0);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translate3d(var(--btn-x), calc(var(--btn-y) + var(--btn-y-hover)), 0);
}

.btn:active {
  transform: translate3d(var(--btn-x), calc(var(--btn-y) - 1px), 0) scale(0.985);
}

.btn--primary {
  background: linear-gradient(135deg, #f8e099 0%, #f0c658 55%, #caa13d 100%);
  color: #05101d;
}

.btn--secondary {
  background: linear-gradient(135deg, rgba(var(--ice-rgb), 0.18), rgba(255, 255, 255, 0.05));
  border-color: rgba(var(--ice-rgb), 0.26);
  color: var(--text-strong);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.btn--success {
  background: linear-gradient(135deg, rgba(53, 211, 164, 0.95), rgba(26, 160, 119, 0.95));
  color: #f4fffb;
}

.chip-row,
.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.chip,
.stack-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.55rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-weight: 700;
}

.chip i,
.stack-chip i {
  color: var(--gold);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
  font-weight: 700;
}

.link-inline i {
  color: var(--gold);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-main);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-shell {
  padding: 2rem 0 2.4rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 7, 14, 0.84);
  backdrop-filter: blur(16px);
}

.footer-inner {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
}

.footer-title {
  margin: 0;
  font-family: "Alexandria", "Tajawal", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-copy,
.footer-meta {
  margin: 0;
  color: var(--text-faint);
}

.footer-copy {
  font-size: 0.94rem;
}

.footer-meta {
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  :root {
    --container: min(1240px, calc(100% - 1.4rem));
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

html[data-theme-mode="light"] {
  --bg-0: #f5f9ff;
  --bg-1: #edf4fb;
  --bg-2: #e4edf7;
  --surface-1: rgba(255, 255, 255, 0.76);
  --surface-2: rgba(255, 255, 255, 0.9);
  --surface-3: rgba(255, 255, 255, 0.98);
  --surface-soft: rgba(12, 31, 55, 0.055);
  --line-soft: rgba(29, 58, 92, 0.12);
  --line-strong: rgba(29, 58, 92, 0.2);
  --text-strong: #101a28;
  --text-main: #26384c;
  --text-soft: #51667d;
  --text-faint: #74869a;
  --gold: #bd8720;
  --gold-rgb: 189, 135, 32;
  --ice: #2776ba;
  --ice-rgb: 39, 118, 186;
  --mint: #16886c;
  --shadow-lg: 0 30px 80px rgba(54, 80, 108, 0.22);
  --shadow-md: 0 18px 46px rgba(54, 80, 108, 0.17);
  --shadow-sm: 0 10px 28px rgba(54, 80, 108, 0.12);
}

html[data-theme-mode="light"] body {
  background:
    radial-gradient(circle at top right, rgba(var(--gold-rgb), 0.16), transparent 27%),
    radial-gradient(circle at top left, rgba(var(--ice-rgb), 0.13), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fc 48%, #f9fbff 100%);
}

html[data-theme-mode="light"] body::before {
  background-image:
    linear-gradient(rgba(39, 75, 118, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 75, 118, 0.045) 1px, transparent 1px);
  opacity: 0.5;
}

html[data-theme-mode="light"] body::after {
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--ice-rgb), 0.1), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(var(--gold-rgb), 0.12), transparent 30%);
  opacity: 0.8;
}

html[data-theme-mode="light"] .site-nav {
  border-bottom-color: rgba(29, 58, 92, 0.1);
  background: rgba(247, 251, 255, 0.74);
}

html[data-theme-mode="light"] .site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(29, 58, 92, 0.12);
  box-shadow: 0 16px 42px rgba(54, 80, 108, 0.13);
}

html[data-theme-mode="light"] .brand-mark,
html[data-theme-mode="light"] .nav-links,
html[data-theme-mode="light"] .nav-toggle,
html[data-theme-mode="light"] .nav-mobile__panel,
html[data-theme-mode="light"] .nav-mobile__panel a,
html[data-theme-mode="light"] .chip,
html[data-theme-mode="light"] .stack-chip {
  border-color: rgba(29, 58, 92, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

html[data-theme-mode="light"] .gradient-text {
  background: linear-gradient(135deg, #111d2d 0%, #bd8720 45%, #2776ba 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-theme-mode="light"] .section-shell,
html[data-theme-mode="light"] .panel {
  border-color: rgba(29, 58, 92, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.88)),
    linear-gradient(130deg, rgba(var(--ice-rgb), 0.06), rgba(var(--gold-rgb), 0.07));
}

html[data-theme-mode="light"] .eyebrow,
html[data-theme-mode="light"] .btn--ghost,
html[data-theme-mode="light"] .btn--secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(29, 58, 92, 0.13);
}

html[data-theme-mode="light"] .btn--primary {
  background: linear-gradient(135deg, #ffe6a3 0%, #d69c2d 52%, #a86d0d 100%);
  color: #17202d;
}

html[data-theme-mode="light"] .site-footer {
  background: rgba(255, 255, 255, 0.76);
  border-top-color: rgba(29, 58, 92, 0.1);
}

@media (max-width: 720px) {
  :root {
    --nav-height: 76px;
  }

  .section-block {
    padding: 4rem 0;
  }

  .section-shell,
  .panel {
    border-radius: 28px;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Modern system-wide visual pass. Kept at the end to normalize all pages. */
html[data-theme-mode="light"] {
  color-scheme: light;
}

html[data-theme-mode="dark"] {
  color-scheme: dark;
}

html[data-theme-mode="light"] body {
  background:
    radial-gradient(circle at 12% 0%, rgba(120, 173, 230, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(214, 156, 45, 0.14), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 48%, #ffffff 100%);
}

html[data-theme-mode="dark"] body {
  background:
    radial-gradient(circle at 12% 0%, rgba(124, 201, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(240, 198, 88, 0.12), transparent 28rem),
    linear-gradient(180deg, #050914 0%, #08111f 48%, #05070d 100%);
}

html[data-theme-mode="light"] body::before,
html[data-theme-mode="dark"] body::before {
  opacity: 0;
}

html[data-theme-mode="light"] body::after,
html[data-theme-mode="dark"] body::after {
  filter: blur(56px);
  opacity: 0.55;
}

.site-nav {
  border-bottom: 1px solid var(--line-soft);
}

html[data-theme-mode="light"] .site-nav,
html[data-theme-mode="light"] .site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 34px rgba(48, 70, 96, 0.08);
}

html[data-theme-mode="dark"] .site-nav,
html[data-theme-mode="dark"] .site-nav.is-scrolled {
  background: rgba(7, 12, 22, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.brand-mark,
.nav-links,
.nav-toggle,
.theme-toggle,
.nav-mobile__panel,
.nav-mobile__panel a {
  border-color: var(--line-soft);
}

.nav-links,
.theme-toggle,
.nav-toggle {
  min-height: 2.75rem;
}

.nav-links a {
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
}

.section-shell,
.panel {
  border-color: var(--line-soft);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}

html[data-theme-mode="light"] .section-shell,
html[data-theme-mode="light"] .panel {
  background: rgba(255, 255, 255, 0.82);
}

html[data-theme-mode="dark"] .section-shell,
html[data-theme-mode="dark"] .panel {
  background: rgba(11, 18, 31, 0.86);
}

.section-shell::before,
.panel::before {
  opacity: 0.35;
}

.section-title,
.hero-title,
.project-hero__title {
  letter-spacing: -0.025em;
}

.section-copy,
.hero-subtitle,
.project-hero__summary,
.contact-copy p,
.panel p {
  color: var(--text-soft);
}

.btn {
  min-height: 3rem;
  padding: 0.76rem 1.15rem;
  box-shadow: none;
}

.btn:hover {
  transform: translate3d(var(--btn-x), -2px, 0);
}

.btn--primary {
  background: #111827;
  color: #fff;
}

html[data-theme-mode="dark"] .btn--primary {
  background: #f5f7fb;
  color: #07111f;
}

.btn--secondary,
.btn--ghost {
  background: var(--surface-soft);
  border-color: var(--line-soft);
  color: var(--text-strong);
}

.theme-toggle {
  box-shadow: none;
  background: var(--surface-soft);
  color: var(--text-strong);
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 1.25rem, 1240px);
  }

  .nav-inner {
    min-height: var(--nav-height);
  }

  .brand {
    font-size: 1.04rem;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 14px;
  }

  .theme-toggle {
    padding-inline: 0.62rem;
  }

  .theme-toggle > span {
    display: none;
  }
}
