:root {
  --background: #050505;
  --background-soft: #0c0c0c;
  --glass: rgba(255, 255, 255, 0.025);
  --glass-strong: rgba(255, 255, 255, 0.065);
  --glass-subtle: rgba(255, 255, 255, 0.034);
  --line: rgba(255, 255, 255, 0.22);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f7f7f7;
  --muted: #b5b5b5;
  --white: #f7f7f7;
  --silver: #d4d4d4;
  --glow: rgba(255, 255, 255, 0.13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.33);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  isolation: isolate;
  min-height: 100vh;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: #050505;
  content: "";
}

.cursor-light {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: min(27rem, 48vw);
  height: min(27rem, 48vw);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 163, 166, 0.065), rgba(120, 124, 128, 0.022) 30%, transparent 70%);
  filter: blur(18px);
  opacity: 0;
  transform: translate3d(calc(var(--pointer-x, -600px) - 50%), calc(var(--pointer-y, -600px) - 50%), 0);
  transition: opacity 220ms ease;
  will-change: transform;
}

body.pointer-active .cursor-light {
  opacity: 1;
}

.glass-filters {
  position: absolute;
  width: 0;
  height: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #171717;
  color: var(--text);
  transform: translateY(calc(-100% - 18px));
}

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

button {
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

code,
kbd {
  font-family: "JetBrains Mono", Consolas, monospace;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.glass {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--glass-x, 36%) var(--glass-y, 8%), rgba(154, 158, 162, 0.034), transparent 31%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012) 33%, rgba(255, 255, 255, 0.036)),
    var(--glass);
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.33),
    inset -1px -2px 3px rgba(0, 0, 0, 0.47),
    0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow);
  backdrop-filter: blur(20px) saturate(116%) brightness(1.07);
  -webkit-backdrop-filter: blur(20px) saturate(116%) brightness(1.07);
}

.glass::before,
.glass::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  content: "";
}

.glass::before {
  background: rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  filter: url("#panel-refraction");
  opacity: 0.7;
}

.glass::after {
  z-index: 1;
  background:
    radial-gradient(circle at var(--glass-x, 32%) var(--glass-y, 0%), rgba(174, 178, 181, 0.06), transparent 20%),
    linear-gradient(126deg, rgba(255, 255, 255, 0.095), transparent 16%, transparent 70%, rgba(255, 255, 255, 0.035)),
    linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.042) 32%, transparent 54%);
  opacity: 0.56;
  transition: opacity 180ms ease;
}

.glass.lit::after {
  opacity: 0.82;
}

.glass > * {
  position: relative;
  z-index: 2;
}

.glass-subtle {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015) 36%),
    var(--glass-subtle);
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.18),
    inset -1px -1px 2px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px) brightness(1.08);
  -webkit-backdrop-filter: blur(12px) brightness(1.08);
}

.workspace {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 20px;
  margin: 20px;
  min-height: calc(100vh - 40px);
}

.sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  height: calc(100vh - 40px);
  padding: 25px 16px 19px;
  border-radius: 25px;
}

.identity {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 10px;
}

.identity strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.identity small {
  color: var(--muted);
  font-size: 0.77rem;
}

.nav-label {
  padding: 0 12px;
  color: #909090;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sidebar-nav {
  display: grid;
  gap: 5px;
  margin-top: -12px;
}

.nav-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 50px;
  padding: 13px 13px;
  border-radius: 13px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.008);
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 600;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-item::before,
.glass-button::before,
.social-link::before,
.mobile-nav-item::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.13), transparent 29%, transparent 67%, rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 27% 10%, rgba(255, 255, 255, 0.105), transparent 36%);
  content: "";
  filter: url("#control-refraction");
  opacity: 0;
  transition: opacity 180ms ease;
}

.nav-item:hover,
.nav-item.active {
  border-color: rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.nav-item:hover::before,
.nav-item.active::before,
.glass-button::before,
.social-link:hover::before,
.mobile-nav-item.active::before {
  opacity: 0.6;
}

.nav-item > *,
.mobile-nav-item > * {
  position: relative;
  z-index: 1;
}

.nav-item.active {
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.18),
    inset -1px -1px 2px rgba(0, 0, 0, 0.26);
}

.nav-item:active {
  transform: scale(0.99);
}

.nav-icon {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 19px;
  color: #8b8b8b;
}

.nav-item.active .nav-icon {
  color: var(--white);
}

.home-icon {
  border: 1.6px solid currentColor;
  border-radius: 5px;
}

.home-icon::before,
.home-icon::after {
  position: absolute;
  left: 4px;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.home-icon::before {
  top: 6px;
}

.home-icon::after {
  top: 11px;
}

.folder-icon {
  margin-top: 3px;
  height: 13px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
}

.resume-icon {
  border: 1.6px solid currentColor;
  border-radius: 4px;
}

.resume-icon::before,
.resume-icon::after {
  position: absolute;
  left: 4px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.resume-icon::before {
  top: 6px;
  width: 10px;
}

.resume-icon::after {
  top: 11px;
  width: 7px;
}

.folder-icon::before {
  position: absolute;
  top: -5px;
  left: -1.6px;
  width: 9px;
  height: 5px;
  border: 1.6px solid currentColor;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  content: "";
}

.write-icon {
  border: 1.6px solid currentColor;
  border-radius: 5px;
}

.write-icon::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: rotate(-46deg);
  transform-origin: left;
}

.link-icon::before,
.link-icon::after {
  position: absolute;
  width: 11px;
  height: 7px;
  border: 1.6px solid currentColor;
  border-radius: 7px;
  content: "";
  transform: rotate(-42deg);
}

.link-icon::before {
  top: 3px;
  left: 1px;
}

.link-icon::after {
  right: 0;
  bottom: 3px;
}

.main-panel {
  min-width: 0;
}

.topbar {
  position: sticky;
  z-index: 5;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin-bottom: 20px;
  padding: 0 21px;
  border-radius: 19px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a0a0a0;
  font-size: 0.87rem;
}

.breadcrumb strong {
  color: var(--text);
  font-weight: 600;
}

.chevron {
  color: #5f5f5f;
}

.topbar-actions,
.hero-actions {
  display: flex;
  gap: 11px;
}

.glass-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 13px;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.135), rgba(255, 255, 255, 0.025) 44%),
    rgba(255, 255, 255, 0.035);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow:
    inset 1px 1px 3px rgba(255, 255, 255, 0.27),
    inset -1px -2px 3px rgba(0, 0, 0, 0.32),
    0 8px 22px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px) brightness(1.08);
  -webkit-backdrop-filter: blur(10px) brightness(1.08);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.glass-button:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.05) 44%),
    rgba(255, 255, 255, 0.052);
  transform: translateY(-1px);
}

.glass-button.accent {
  border-color: rgba(255, 255, 255, 0.4);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.205), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.035);
}

.mobile-brand {
  display: none;
  align-items: center;
  gap: 9px;
  background: transparent;
  font-weight: 700;
}

.view {
  display: none;
  animation: rise-in 380ms ease;
}

.view.active {
  display: block;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(315px, 0.95fr) minmax(298px, 1fr) clamp(210px, 18vw, 250px);
  align-items: start;
  gap: clamp(28px, 3.1vw, 54px);
  min-height: 530px;
  overflow: hidden;
  padding: 42px clamp(37px, 4vw, 58px);
  border-radius: var(--radius-xl);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0 0 19px;
  font-size: clamp(3rem, 4.35vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: 535px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions .glass-button {
  min-height: 50px;
  padding: 0 26px;
}

.hero-about {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.hero-about-card {
  padding: 19px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-about-card:first-child {
  padding-top: 0;
}

.hero-about-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-about-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.hero-about-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

.profile-frame {
  display: grid;
  width: 100%;
  aspect-ratio: 303 / 470;
  justify-self: end;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012) 42%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.14),
    0 18px 36px rgba(0, 0, 0, 0.24);
}

.profile-photo,
.profile-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 17px;
}

.profile-photo {
  display: block;
  object-fit: cover;
  object-position: center top;
}

.profile-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.012);
  color: var(--muted);
  text-align: center;
}

.profile-photo-placeholder strong {
  color: #d4d4d4;
  font-size: 0.9rem;
  font-weight: 600;
}

.profile-photo-placeholder small {
  max-width: 150px;
  font-size: 0.7rem;
  line-height: 1.55;
}

.profile-photo-placeholder code {
  color: #c4c4c4;
}

.photo-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.photo-icon::before {
  position: absolute;
  top: 13px;
  left: 21px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.photo-icon::after {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px 18px 10px 10px;
  content: "";
}

.project-card p,
.post-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.page-heading {
  max-width: 690px;
  padding: 44px 7px 36px;
}

.page-heading h1 {
  margin: 16px 0 13px;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  letter-spacing: -0.075em;
  line-height: 1.07;
}

.page-heading > p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.page-heading code {
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #dcdcdc;
  font-size: 0.84em;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 16px;
  padding-bottom: 20px;
}

.empty-state {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.empty-state h2 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.empty-state p {
  color: var(--muted);
  line-height: 1.7;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 296px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 29px;
}

.project-status {
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  color: #dedede;
  font-size: 0.7rem;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.projects-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: var(--radius-lg);
}

.projects-empty h2 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.projects-empty p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

.projects-empty code {
  color: #d8d8d8;
}

.resume-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 354px);
  align-items: start;
  gap: 16px;
  max-width: 1150px;
  padding-bottom: 20px;
}

.resume-highlights {
  display: grid;
  gap: 14px;
}

.resume-card {
  min-height: 125px;
  padding: 25px 28px;
  border-radius: var(--radius-lg);
}

.resume-card h2,
.resume-file h2 {
  margin-bottom: 11px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.resume-card p,
.resume-file > p:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.resume-file {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.resume-file .eyebrow {
  margin-bottom: 18px;
}

.resume-file code {
  color: #d8d8d8;
}

.resume-download {
  justify-self: start;
}

.tag-row {
  display: flex;
  gap: 8px;
  margin: auto 0 18px;
  padding-top: 22px;
}

.tag-row span {
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #b8b8b8;
  font-size: 0.69rem;
}

.project-link,
.post-link,
.social-link {
  width: max-content;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.disabled {
  color: #777777;
  cursor: default;
}

.post-list {
  display: grid;
  gap: 16px;
  max-width: 930px;
  padding-bottom: 20px;
}

.post-card {
  padding: 30px 34px;
  border-radius: var(--radius-lg);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #dddddd;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.post-meta time {
  color: #858585;
}

.post-card h2 {
  margin-bottom: 13px;
  font-size: 1.4rem;
  letter-spacing: -0.045em;
}

.post-link {
  display: inline-block;
  margin-top: 23px;
}

.contact-heading {
  padding-bottom: 40px;
}

.social-list {
  display: grid;
  gap: 13px;
  max-width: 920px;
  padding-bottom: 20px;
}

.social-card {
  display: grid;
  grid-template-columns: 122px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 106px;
  padding: 21px 28px;
  border-radius: var(--radius-lg);
}

.social-name {
  color: #dddddd;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.social-card h2 {
  margin-bottom: 6px;
  font-size: 1.03rem;
}

.social-card p {
  color: var(--muted);
  font-size: 0.81rem;
}

.social-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 12px 19px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav {
  display: none;
}

@media (max-width: 1260px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(278px, 0.9fr);
  }

  .hero-copy {
    grid-column: 1;
  }

  .hero-about {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-about-card {
    padding: 0 18px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
  }

  .hero-about-card:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .profile-frame {
    width: min(228px, 100%);
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-top: 7px;
  }
}

@media (max-width: 850px) {
  .workspace {
    display: block;
    margin: 12px 12px 83px;
    min-height: auto;
  }

  .sidebar {
    display: none;
  }

  .topbar {
    top: 12px;
    height: 60px;
    margin-bottom: 15px;
    padding: 0 13px;
    border-radius: 18px;
  }

  .mobile-brand {
    display: flex;
  }

  .breadcrumb {
    display: none;
  }

  .topbar-actions .quiet {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 31px;
    padding: 39px 25px 29px;
    border-radius: 25px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-about {
    grid-column: 1;
    grid-row: auto;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .hero-about-card,
  .hero-about-card:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-about-card:first-child {
    padding-top: 0;
  }

  .hero-about-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .profile-frame {
    grid-column: 1;
    grid-row: auto;
    width: min(220px, 100%);
    margin-top: 10px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .resume-layout {
    grid-template-columns: 1fr;
  }

  .page-heading {
    padding-top: 29px;
  }

  .social-card {
    grid-template-columns: 1fr auto;
    gap: 13px;
  }

  .social-name {
    grid-column: 1 / -1;
  }

  .mobile-nav {
    position: fixed;
    z-index: 10;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    padding: 6px;
    border-radius: 18px;
  }

  .mobile-nav-item {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 46px;
    border-radius: 13px;
    background: transparent;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
  }

  .mobile-nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
  }
}

@media (max-width: 440px) {
  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .project-card,
  .post-card,
  .social-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
