:root {
  color-scheme: dark;
  --text: #f5f7fb;
  --muted: rgba(234, 241, 250, .72);
  --line: rgba(255, 255, 255, .22);
}

* { box-sizing: border-box; }
html { min-width: 280px; background: #080d16; }
html.entry-pending { overflow: hidden; }
body {
  min-height: 100vh;
  margin: 0;
  background: #080d16;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
html, body, a, button { cursor: url('/assets/logos/voidac-cursor.png') 4 4, auto; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

.entry-screen {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 7, 13, .48);
  backdrop-filter: blur(22px) saturate(.8);
  -webkit-backdrop-filter: blur(22px) saturate(.8);
  opacity: 1;
  visibility: visible;
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), visibility .7s;
}
.entry-screen { display: none; }
.entry-button {
  display: grid;
  width: min(310px, 100%);
  place-items: center;
  padding: 30px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  appearance: none;
}
.entry-logo {
  display: grid;
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 23px;
  background: #03060b;
  box-shadow: 0 20px 48px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
  animation: entry-float 3.6s ease-in-out infinite;
}
.entry-logo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.entry-title { font-size: 19px; font-weight: 650; letter-spacing: -.025em; }
.entry-subtitle { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: rgba(235,242,249,.62); font-size: 11px; letter-spacing: .04em; }
.entry-wave { display: inline-flex; height: 12px; align-items: center; gap: 2px; }
.entry-wave i { display: block; width: 2px; height: 5px; border-radius: 2px; background: currentColor; animation: entry-wave .8s ease-in-out infinite alternate; }
.entry-wave i:nth-child(2) { height: 11px; animation-delay: -.4s; }
.entry-wave i:nth-child(3) { height: 7px; animation-delay: -.2s; }
.entry-button:hover .entry-title { color: #dceeff; }
.entry-button:focus-visible { outline: 1px solid rgba(215,235,251,.7); outline-offset: 12px; border-radius: 24px; }
.site-entered .entry-screen { opacity: 0; visibility: hidden; pointer-events: none; }
.entry-pending:not(.site-entered) .page-shell { opacity: 1; filter: none; }
.page-shell { transition: opacity .8s ease, filter .8s ease; }

.backdrop,
.backdrop-shade { position: fixed; z-index: 0; inset: 0; width: 100%; height: 100%; }
.backdrop {
  object-fit: cover;
  object-position: center;
  filter: saturate(.85) brightness(.72);
}
.backdrop-shade {
  background: linear-gradient(135deg, rgba(5, 9, 17, .63), rgba(7, 14, 27, .30) 52%, rgba(4, 8, 15, .72));
  pointer-events: none;
}
.page-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
}

.topbar,
.page-footer { width: min(1120px, calc(100% - 72px)); margin-inline: auto; }
.topbar {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: fade-in .8s both;
}
.wordmark { margin-right: auto; font-size: 16px; font-weight: 680; letter-spacing: -.045em; }
.wordmark-dot { color: #bdd7eb; }
.site-nav { display: flex; gap: 4px; padding: 4px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(15,24,37,.48); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.site-nav a { display: grid; min-height: 36px; place-items: center; padding: 0 18px; border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 600; transition: color .2s ease, background .2s ease; }
.site-nav a:hover { color: white; background: rgba(255,255,255,.07); }
.site-nav a[aria-current='page'] { background: rgba(255,255,255,.13); color: white; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.sound-toggle {
  display: inline-flex;
  min-width: 116px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(236, 246, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  color: #f2f6fb;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.sound-toggle:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .38); background: rgba(236, 246, 255, .18); }
.sound-toggle:active { transform: scale(.97); }
.sound-toggle:focus-visible,
.destination:focus-visible,
.wordmark:focus-visible,
.bio a:focus-visible,
.site-nav a:focus-visible,
.project-card:focus-visible,
.page-footer a:focus-visible { outline: 2px solid #d2eaff; outline-offset: 4px; }
.sound-bars { display: inline-flex; width: 15px; height: 15px; align-items: center; justify-content: center; gap: 2px; }
.sound-bars span { width: 2px; height: 4px; border-radius: 2px; background: currentColor; transition: height .25s ease; }
.sound-bars span:nth-child(2) { height: 9px; }
.sound-toggle[aria-pressed='true'] .sound-bars span { animation: sound-wave .75s ease-in-out infinite alternate; }
.sound-toggle[aria-pressed='true'] .sound-bars span:nth-child(2) { animation-delay: -.42s; }
.sound-toggle[aria-pressed='true'] .sound-bars span:nth-child(3) { animation-delay: -.21s; }

.background-switcher { position: fixed; z-index: 8; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); }
.background-switcher-controls { display: flex; min-height: 42px; align-items: center; gap: 7px; padding: 5px 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(9,16,27,.7); box-shadow: 0 12px 32px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.1); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.background-switcher-controls > button { display: grid; width: 29px; height: 29px; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #edf6fb; font-size: 22px; line-height: 1; transition: background .2s ease, transform .2s ease; }
.background-switcher-controls > button:hover { background: rgba(255,255,255,.13); transform: translateY(-1px); }
.background-volume { display: grid; grid-template-columns: 18px 1fr; align-items: center; gap: 7px; color: rgba(229,239,248,.67); font-size: 14px; }
.background-volume .range-control { width: 82px; }
.background-switcher-controls button:focus-visible, .background-volume .range-control:focus-visible { outline: 2px solid #d2eaff; outline-offset: 3px; }

main { display: grid; flex: 1; min-width: 0; place-items: center; padding: 28px 20px 48px; }
.profile-stage { width: min(480px, 100%); min-width: 0; animation: rise-in .85s .08s backwards; }
.profile-card {
  position: relative;
  overflow: hidden;
  padding: 44px 38px 36px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(74, 88, 105, .22), rgba(14, 23, 37, .62));
  box-shadow: 0 32px 85px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .20);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  text-align: center;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .35s cubic-bezier(.2, .75, .2, 1), box-shadow .35s ease;
}
.profile-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--light-x, 50%) var(--light-y, 0%), rgba(255, 255, 255, .13), transparent 72%);
  content: '';
  pointer-events: none;
}
.profile-card > * { position: relative; }
.avatar-frame {
  width: 112px;
  height: 112px;
  margin: 0 auto 29px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 26px;
  background: rgba(2, 5, 10, .68);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .13);
  transition: transform .4s ease, box-shadow .4s ease;
}
.profile-card:hover .avatar-frame { transform: translateY(-3px); box-shadow: 0 19px 36px rgba(0, 0, 0, .22); }
.avatar-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.eyebrow { margin: 0 0 11px; color: #d7e4ef; font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(50px, 10vw, 66px); font-weight: 690; letter-spacing: -.075em; line-height: 1; }
h1 span { color: #bcd9ee; }
.handle { margin: 12px 0 0; color: rgba(232, 241, 250, .70); font-size: 13px; letter-spacing: .01em; }
.bio { max-width: 350px; margin: 27px auto 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.bio a { color: white; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .38); text-underline-offset: 3px; transition: text-decoration-color .2s ease; }
.bio a:hover { text-decoration-color: white; }
.destinations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
.destination {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  font-size: 13px;
  font-weight: 650;
  text-align: left;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.destination:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .17); box-shadow: 0 12px 26px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .13); }
.destination svg { width: 20px; height: 20px; flex: none; fill: currentColor; }
.destination-logo { width: 22px; height: 22px; flex: none; object-fit: contain; }
.arrow { margin-left: auto; color: rgba(245, 248, 252, .72); font-size: 17px; font-weight: 400; transition: transform .25s ease, color .25s ease; }
.destination svg.arrow { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.destination:hover .arrow { transform: translate(2px, -2px); color: white; }
.page-footer { display: flex; min-height: 60px; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; padding-block: 12px; color: rgba(237, 245, 252, .60); font-size: 11px; animation: fade-in .8s .3s backwards; }
.page-footer a { transition: color .2s ease; }
.page-footer a:hover { color: white; }

.projects-main { padding-top: 48px; padding-bottom: 64px; }
.projects-stage { width: min(1040px, 100%); min-width: 0; }
.projects-heading { margin-bottom: 38px; animation: rise-in .7s backwards; }
.projects-heading h1 { font-size: clamp(40px, 7vw, 54px); letter-spacing: -.06em; }
.projects-heading > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.projects-section + .projects-section { margin-top: 46px; }
.projects-section-heading { margin-bottom: 18px; }
.projects-section-heading h2 { margin: 4px 0 0; font-size: 22px; font-weight: 650; letter-spacing: -.04em; }
.projects-section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.projects-section-heading--split > p { max-width: 380px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; text-align: right; }
.section-kicker { margin: 0; color: rgba(229,240,250,.56); font-size: 10px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.projects-grid--own { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 710px; }
.project-card { display: block; min-width: 0; padding: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.19); border-radius: 24px; background: linear-gradient(145deg, rgba(55,67,84,.45), rgba(12,20,33,.79)); box-shadow: 0 16px 48px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); transition: transform .3s ease, border-color .3s ease; animation: rise-in .7s .08s backwards; }
.project-card:nth-child(2) { animation-delay: .16s; }
.project-card:nth-child(3) { animation-delay: .24s; }
.project-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.36); }
.project-logo { display: grid; height: 220px; place-items: center; padding: 30px; border: 1px solid rgba(255,255,255,.06); border-radius: 15px; background: rgba(5,12,22,.58); }
.project-logo--light { background: #ecebe6; }
.project-logo img { display: block; max-width: 100%; height: auto; max-height: 150px; object-fit: contain; transition: transform .4s ease; }
.project-card:hover .project-logo img { transform: scale(1.04); }
.project-details { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 24px 10px 14px; }
.project-details h3 { margin: 0; font-size: 19px; font-weight: 650; letter-spacing: -.03em; }
.project-details p { margin: 7px 0 0; font-size: 12px; color: var(--muted); }
.project-open { display: grid; flex: none; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transition: background .3s ease, transform .3s ease; }
.project-open svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.project-card:hover .project-open { transform: translate(2px,-2px); background: rgba(255,255,255,.08); }
.project-card--client { cursor: default; }
.project-card--client:hover { transform: translateY(-3px); }
.project-status { flex: none; padding: 6px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(238,242,246,.65); font-size: 10px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.project-details--links { align-items: end; }
.project-links { display: flex; flex: none; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.project-links a { padding: 6px 8px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; color: rgba(240,247,252,.86); font-size: 10px; font-weight: 650; transition: background .2s ease, border-color .2s ease; }
.project-links a:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); }

.media-main { padding-top: 34px; padding-bottom: 54px; }
.media-stage { width: min(1000px, 100%); min-width: 0; }
.media-heading { margin-bottom: 24px; animation: rise-in .7s backwards; }
.media-heading h1 { font-size: clamp(40px, 7vw, 54px); letter-spacing: -.06em; }
.media-player { overflow: hidden; border: 1px solid rgba(255,255,255,.20); border-radius: 26px; background: linear-gradient(145deg, rgba(55,67,84,.46), rgba(10,17,29,.82)); box-shadow: 0 24px 65px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.09); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); animation: rise-in .7s .08s backwards; }
.media-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #04080f; }
.playlist-video { display: block; width: 100%; height: 100%; object-fit: contain; background: #04080f; }
.media-frame::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(4,8,15,.42)); content: ''; pointer-events: none; }
.media-play-overlay { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 62px; height: 62px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(8,14,24,.48); box-shadow: 0 10px 28px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.14); color: white; transform: translate(-50%,-50%); opacity: 0; transition: opacity .2s ease, transform .2s ease, background .2s ease; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.media-frame:hover .media-play-overlay, .media-player.is-paused .media-play-overlay { opacity: 1; }
.media-play-overlay:hover { background: rgba(26,44,67,.72); transform: translate(-50%,-50%) scale(1.06); }
.media-play-overlay svg { width: 27px; height: 27px; margin-left: 3px; fill: currentColor; }
.media-loading { position: absolute; z-index: 3; inset: 0; display: none; place-items: center; background: rgba(4,8,15,.23); pointer-events: none; }
.media-player.is-loading .media-loading { display: grid; }
.media-loading span { width: 26px; height: 26px; border: 2px solid rgba(255,255,255,.22); border-top-color: white; border-radius: 50%; animation: spinner .7s linear infinite; }
.media-controls { display: grid; grid-template-columns: 1fr auto; gap: 18px 28px; padding: 22px 26px 24px; }
.media-meta { display: grid; align-content: center; gap: 4px; }
.media-kicker { color: rgba(229,239,248,.57); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.media-meta strong { font-size: 15px; font-weight: 650; letter-spacing: -.02em; }
.media-timeline { display: grid; grid-column: 1 / -1; grid-template-columns: 38px 1fr 38px; align-items: center; gap: 10px; color: rgba(231,240,249,.68); font-variant-numeric: tabular-nums; font-size: 10px; }
.range-control { width: 100%; height: 18px; margin: 0; appearance: none; background: transparent; cursor: pointer; }
.range-control::-webkit-slider-runnable-track { height: 4px; border-radius: 999px; background: linear-gradient(90deg, #d2e7f8 var(--progress, 0%), rgba(255,255,255,.17) var(--progress, 0%)); }
.range-control::-webkit-slider-thumb { width: 12px; height: 12px; margin-top: -4px; appearance: none; border: 0; border-radius: 50%; background: #f4f8fb; box-shadow: 0 1px 5px rgba(0,0,0,.28); transition: transform .2s ease; }
.range-control:hover::-webkit-slider-thumb { transform: scale(1.15); }
.range-control::-moz-range-track { height: 4px; border-radius: 999px; background: rgba(255,255,255,.17); }
.range-control::-moz-range-progress { height: 4px; border-radius: 999px; background: #d2e7f8; }
.range-control::-moz-range-thumb { width: 11px; height: 11px; border: 0; border-radius: 50%; background: #f4f8fb; }
.media-actions { display: flex; align-items: center; justify-self: end; gap: 10px; }
.media-control-button { display: grid; width: 38px; height: 38px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(255,255,255,.06); color: #eaf3fa; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.media-control-button:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.14); transform: translateY(-1px); }
.media-control-button:active { transform: scale(.94); }
.media-control-button svg { width: 18px; height: 18px; fill: currentColor; }
.media-control-button--primary { width: 45px; height: 45px; border-color: rgba(207,230,247,.42); background: #d6e9f7; color: #0b1724; }
.media-control-button--primary:hover { background: white; }
.media-control-button--primary .media-play-icon { margin-left: 2px; }
.media-volume { display: flex; width: 130px; align-items: center; gap: 8px; margin-left: 8px; color: rgba(231,240,249,.72); }
.media-volume svg { width: 17px; height: 17px; flex: none; fill: currentColor; }
.range-control--volume { --progress: 70%; }
.media-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.media-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 99px; background: rgba(245,249,252,.36); transition: width .25s ease, background .25s ease; }
.media-dots button[aria-selected='true'] { width: 26px; background: #e4f2fb; }
.media-dots button:focus-visible, .media-control-button:focus-visible, .media-play-overlay:focus-visible, .range-control:focus-visible { outline: 2px solid #d2eaff; outline-offset: 3px; }

@keyframes rise-in { from { opacity: 0; transform: translateY(20px) scale(.975); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes sound-wave { from { height: 4px; } to { height: 13px; } }
@keyframes entry-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes entry-wave { from { transform: scaleY(.55); } to { transform: scaleY(1); } }
@keyframes spinner { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .topbar, .page-footer { width: calc(100% - 40px); }
  .topbar { display: grid; grid-template-columns: 1fr auto; min-height: 72px; gap: 14px; padding-block: 14px; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; justify-self: center; }
  .sound-toggle { grid-column: 2; grid-row: 1; }
  main { padding: 22px 18px 34px; }
  .profile-card { padding: 37px 27px 32px; border-radius: 25px; }
  .avatar-frame { width: 104px; height: 104px; margin-bottom: 27px; }
  .page-footer { min-height: 58px; padding-bottom: max(16px, env(safe-area-inset-bottom)); font-size: 10px; }
  .projects-main { padding-top: 28px; }
  .projects-heading { margin-bottom: 24px; }
  .projects-grid { grid-template-columns: 1fr; gap: 18px; }
  .projects-grid--own { max-width: none; }
  .projects-section + .projects-section { margin-top: 36px; }
  .projects-section-heading--split { display: block; }
  .projects-section-heading--split > p { margin-top: 11px; text-align: left; }
  .project-logo { height: 190px; }
  .media-main { padding-top: 22px; }
  .media-controls { grid-template-columns: 1fr; gap: 17px; padding: 18px; }
  .media-actions { width: 100%; justify-self: stretch; justify-content: center; }
  .media-volume { width: min(130px, 34vw); }
  .background-switcher { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); }
}
@media (min-width: 601px) and (max-width: 850px) {
  .projects-grid { gap: 12px; }
  .project-card { padding: 9px; border-radius: 20px; }
  .project-logo { height: 160px; padding: 20px; }
  .project-logo img { max-height: 120px; }
  .project-details { padding-inline: 4px; }
  .project-details--links { display: block; }
  .project-links { justify-content: flex-start; margin-top: 12px; }
}
@media (max-width: 390px) {
  .profile-card { padding-inline: 21px; }
  .destinations { gap: 8px; }
  .destination { gap: 7px; padding-inline: 11px; font-size: 12px; }
  .page-footer { gap: 10px; font-size: 9px; }
  .media-controls { padding: 15px; }
  .media-volume { width: 90px; margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .profile-card { transform: none !important; }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .profile-card, .project-card, .media-player, .entry-screen { background: rgba(15, 24, 37, .96); }
}
@media (pointer: coarse) {
  html, body, a, button { cursor: auto; }
}
