/* XAMARA portfolio — layout styles (tokens come from ../../colors_and_type.css) */

* { box-sizing: border-box; }
html, body { margin: 0; background: #000; overflow-x: hidden; }
body {
  font-family: var(--font-ui);
  color: var(--fg-1);
  -webkit-font-smoothing: antialiased;
}
.xm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* page shell */
.xm-page {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 56px 140px;
  min-height: 100vh;
}
.xm-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(34,38,48,.45) 0%, rgba(0,0,0,0) 55%),
    #000;
}
.xm-page > * { position: relative; z-index: 1; }
.xm-soundcloud-frame {
  position: fixed;
  left: -10000px;
  top: 0;
  width: 320px;
  height: 166px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* corner annotations — techwear flavour */
/* logo / header */
.xm-hero { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 60px; padding-top: 12px; }
.xm-logo-stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  left: auto;
  transform: none;
  width: 100vw;
  margin-left: 0;
  max-width: none;
}
.xm-logo-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1480px, 135vw);
  height: min(760px, 74vw);
  z-index: -1;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(255,255,255,.18), rgba(255,122,47,.16) 32%, rgba(150,170,200,.09) 54%, transparent 78%),
    conic-gradient(from 90deg at 50% 50%, transparent 0 18%, rgba(255,122,47,.16) 24%, transparent 34% 58%, rgba(255,255,255,.10) 66%, transparent 76% 100%);
  filter: blur(34px);
  opacity: .72;
  transform: translate(-50%, -50%) scale(1);
  animation: xm-backlight 18s ease-in-out infinite;
}
@keyframes xm-backlight {
  0%, 100% { transform: translate(-50%, -50%) scale(.96); opacity: .52; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: .82; }
}
.xm-logo { position: relative; z-index: 2; width: 480px; height: auto; max-width: 92%; margin: -54px 0 -42px; filter: drop-shadow(0 10px 40px rgba(150,170,200,.10)); user-select: none; }
.xm-logo-world {
  width: min(1060px, calc(100vw - 32px));
  max-width: none;
  margin: -46px auto -24px;
  filter:
    drop-shadow(0 10px 40px rgba(150,170,200,.12))
    drop-shadow(0 0 16px rgba(255,255,255,.10));
  transition: transform .2s ease, filter .2s ease;
  will-change: transform;
}
.xm-logo-world:hover {
  transform: translateY(-8px) scale(1.035);
  filter:
    drop-shadow(0 14px 24px rgba(0,0,0,.46))
    drop-shadow(0 0 18px rgba(255,255,255,.22))
    drop-shadow(0 0 48px rgba(90,150,255,.18));
}
.xm-social, .xm-domain { position: relative; z-index: 2; }

/* ---- spinning wireframe globe ---- */
.xm-globe {
  position: absolute; z-index: 0; top: 50%; left: 50%;
  width: 560px; height: 560px; transform: translate(-50%, -58%);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 56%, transparent 76%);
          mask-image: radial-gradient(circle at 50% 50%, #000 56%, transparent 76%);
}
.xm-globe::before {
  content: "";
  position: absolute;
  inset: 7% 1% 10% 17%;
  z-index: -1;
  background:
    radial-gradient(closest-side at 62% 43%, rgba(255,122,47,.46), rgba(255,122,47,.18) 36%, transparent 74%);
  filter: blur(34px);
  opacity: .58;
  animation: xm-globe-ember 16s ease-in-out infinite;
}
.xm-globe svg { width: 100%; height: 100%; display: block; overflow: visible; opacity: .16; }
.xm-limb, .xm-lat, .xm-mer, .xm-axis { fill: none; vector-effect: non-scaling-stroke; }
.xm-limb { stroke: #d4ddec; stroke-width: 1.3; }
.xm-lat  { stroke: #8ea3c6; stroke-width: 1; }
.xm-mer  { stroke: #8ea3c6; stroke-width: 1; transform-box: fill-box; transform-origin: center;
  animation: xm-spin 24s linear infinite; }
.xm-axis { stroke: #6f86ad; stroke-width: 1; opacity: .45; }
@keyframes xm-spin {
  0%   { transform: scaleX(1); }
  25%  { transform: scaleX(0); }
  50%  { transform: scaleX(-1); }
  75%  { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes xm-globe-ember {
  0%, 100% { opacity: .42; transform: scale(.96); }
  50% { opacity: .68; transform: scale(1.05); }
}

/* ---- Y2K sparkle glints ---- */
/* ---- domain tag ---- */
.xm-domain {
  margin-top: 42px; font-family: var(--font-mono); font-size: 14px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--chrome-400); text-decoration: none;
  padding: 8px 18px; border: 1px solid var(--hairline-2); transition: color .18s, border-color .18s, box-shadow .18s;
}
.xm-domain:hover { color: #fff; border-color: var(--chrome-500); box-shadow: 0 0 14px rgba(255,122,47,.25); }

@media (prefers-reduced-motion: reduce) {
  .xm-mer { animation: none; }
  .xm-logo-stage::before,
  .xm-head-shine::before,
  .xm-head-shine::after,
  .xm-logo-loop-track,
  .xm-player.playing .xm-bar:not(.on):not(.head) { animation: none; }
}
.xm-social { display: flex; gap: 34px; align-items: center; margin-top: 20px; }
.xm-social a {
  position: relative;
  width: 108px; height: 108px; display: flex; align-items: center; justify-content: center;
  text-decoration: none; opacity: 1; transition: opacity .18s, transform .18s, filter .18s;
  isolation: isolate;
}
.xm-social a::before,
.xm-contact-icons a::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.48), rgba(255,255,255,.24) 42%, rgba(255,255,255,.09) 66%, transparent 84%);
  filter: blur(15px);
  opacity: .66;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.xm-social-chrome {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter:
    brightness(1.48)
    contrast(1.28)
    saturate(.72)
    drop-shadow(0 0 7px rgba(255,255,255,.54))
    drop-shadow(0 0 18px rgba(255,255,255,.27))
    drop-shadow(0 0 36px rgba(255,255,255,.12));
}
.xm-social a:hover,
.xm-social a:focus-visible { text-decoration: none; }
.xm-social a:hover { opacity: 1; transform: translateY(-2px) scale(1.035); filter: drop-shadow(0 0 18px rgba(255,255,255,.30)); }
.xm-social a:hover::before,
.xm-social a:focus-visible::before,
.xm-contact-icons a:hover::before,
.xm-contact-icons a:focus-visible::before {
  opacity: 1;
  transform: scale(1.16);
}
.xm-social a::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translate(-50%, 4px);
  padding: 5px 8px;
  border: 1px solid var(--hairline-2);
  background: rgba(8,8,10,.92);
  color: var(--chrome-200);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s, transform .16s;
}
.xm-social a:hover::after,
.xm-social a:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }

/* scene spacing */
.xm-section {
  position: relative;
}
.xm-section + .xm-section {
  margin-top: 82px;
}
.xm-section::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,236,241,.18), rgba(255,122,47,.16), transparent);
  opacity: .55;
  pointer-events: none;
}
.xm-section-showcase::before,
.xm-section-catalogue::before,
.xm-contact::before,
.xm-tools::before {
  content: none;
}

/* section header */
.xm-head { position: relative; display: flex; align-items: center; justify-content: center; gap: 34px; margin: 0 0 42px; }
.xm-head .rule { height: 1px; flex: 1 1 90px; min-width: 48px; max-width: 180px; background: linear-gradient(90deg, transparent, var(--chrome-600)); }
.xm-head .rule.r { background: linear-gradient(90deg, var(--chrome-600), transparent); }
.xm-head h2 {
  margin: 0; flex: none; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 6vw, 64px); line-height: 1; text-transform: uppercase;
  letter-spacing: .03em; white-space: nowrap; padding: 0 4px;
}
.xm-head-img {
  position: relative; z-index: 1; flex: none; height: 100%; width: 100%; max-width: none; margin: 0;
  object-fit: contain; user-select: none;
  filter: drop-shadow(0 6px 26px rgba(150,170,200,.12));
}
.xm-head-shine {
  position: relative;
  display: inline-flex;
  flex: none;
  width: min(860px, 76vw);
  height: 284px;
  overflow: visible;
  isolation: isolate;
}
.xm-head-contact .xm-head-shine {
  width: min(720px, 63.5vw);
  height: 238px;
}
.xm-head-shine::before {
  content: "";
  position: absolute;
  inset: 20% 8% 14%;
  z-index: -1;
  background:
    radial-gradient(closest-side at 50% 48%, rgba(255,255,255,.16), rgba(255,122,47,.10) 38%, transparent 72%);
  filter: blur(26px);
  opacity: .64;
  animation: xm-title-backlight 14s ease-in-out infinite;
}
.xm-head-shine::after {
  content: none;
}
.xm-head.is-visible .xm-head-shine::after {
  animation: none;
}
.xm-head.is-visible .rule {
  animation: xm-rule-wake .75s ease-out both;
}
@keyframes xm-title-backlight {
  0%, 100% { opacity: .56; transform: scale(.96); }
  50% { opacity: .9; transform: scale(1.04); }
}
@keyframes xm-rule-wake {
  from { opacity: .2; transform: scaleX(.72); }
  to { opacity: 1; transform: scaleX(1); }
}

/* main showcase */
.xm-main-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 300px) minmax(220px, 1fr) 56px;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  margin: -8px 0 34px;
  padding: 18px 10px;
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
  background: linear-gradient(90deg, rgba(233,236,241,.045), rgba(255,122,47,.05), transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 24px 72px rgba(0,0,0,.20);
  overflow: hidden;
  cursor: pointer;
  transition: background .16s, border-color .16s, transform .16s, box-shadow .16s;
}
.xm-main-showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(38% 120% at 18% 50%, rgba(255,122,47,.14), transparent 62%),
    radial-gradient(32% 120% at 78% 48%, rgba(69,145,255,.10), transparent 66%);
  opacity: .55;
  pointer-events: none;
}
.xm-main-showcase:hover {
  background: linear-gradient(90deg, rgba(233,236,241,.07), rgba(255,122,47,.08), transparent);
  border-color: var(--chrome-600);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 28px 84px rgba(0,0,0,.28);
}
.xm-main-showcase.active {
  background: linear-gradient(90deg, rgba(255,122,47,.14), rgba(255,122,47,.055), transparent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(255,122,47,.06),
    0 22px 84px rgba(255,122,47,.08);
}
.xm-main-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--chrome-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome-100);
  box-shadow: 0 0 18px rgba(255,255,255,.08);
  transition: transform .16s, border-color .16s, color .16s, box-shadow .16s;
}
.xm-main-showcase.active .xm-main-play {
  border-color: var(--accent);
  color: var(--accent-bright);
  box-shadow: var(--glow-accent);
}
.xm-main-showcase:hover .xm-main-play,
.xm-main-showcase.active .xm-main-play {
  transform: scale(1.04);
}
.xm-main-title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.xm-main-title-text { min-width: 0; }
.xm-main-title-time { display: none; }
.xm-main-time {
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-300);
  font-variant-numeric: tabular-nums;
}

/* featured grid */
.xm-featured { display: grid; grid-template-columns: 1fr 1fr; column-gap: 44px; margin-bottom: 64px; }
.xm-frow {
  position: relative;
  display: flex; align-items: center; gap: 18px; padding: 16px 4px;
  border-bottom: 1px solid var(--hairline); cursor: pointer;
  transition: background .15s, padding-left .15s, transform .15s, border-color .15s;
  min-width: 0;
  overflow: hidden;
}
.xm-frow::before,
.xm-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,122,47,.95), rgba(255,122,47,.72), rgba(255,255,255,.0));
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .15s, transform .15s;
}
.xm-frow:hover {
  background: linear-gradient(90deg, rgba(233,236,241,.07), rgba(255,122,47,.025), transparent);
  padding-left: 12px;
  transform: translateX(2px);
  border-color: rgba(233,236,241,.16);
}
.xm-frow:hover::before,
.xm-row:hover::before,
.xm-frow.active::before,
.xm-row.active::before {
  opacity: 1;
  transform: translateY(0);
}
.xm-frow.active { background: linear-gradient(90deg, rgba(255,122,47,.12), rgba(69,145,255,.035), transparent); }
.xm-frow.active { padding-left: 14px; }
.xm-pb {
  width: 34px; height: 34px; flex: none; border: 1.5px solid var(--chrome-500);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--chrome-300); transition: border-color .15s, color .15s, box-shadow .15s;
}
.xm-frow:hover .xm-pb, .xm-row:hover .xm-pb {
  border-color: var(--chrome-200);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,.18);
}
.active .xm-pb { border-color: var(--accent); color: var(--accent-bright); box-shadow: 0 0 12px rgba(255,122,47,.48); }
.xm-fn { font-family: var(--font-mono); font-size: 12px; color: var(--chrome-500); width: 22px; flex: none; }
.xm-ft {
  flex: 1; font-family: var(--font-ui); font-weight: 500; font-size: 15px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--chrome-200);
  min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.active .xm-ft { color: #fff; }
.xm-frow:hover .xm-ft,
.xm-row:hover .xm-ct {
  color: #fff;
  text-shadow: 0 0 12px rgba(255,255,255,.18);
}
.xm-fd { font-family: var(--font-mono); font-size: 13px; color: var(--chrome-400); font-variant-numeric: tabular-nums; }
.active .xm-fd { color: var(--accent-bright); }

/* tools strip */
.xm-tools {
  display: block;
  padding: 50px 0 42px; margin-bottom: 0; overflow: visible;
}
.xm-tools + .xm-section-catalogue {
  margin-top: 34px;
}
.xm-logo-loop {
  position: relative;
  overflow: hidden;
  padding: 10px 0 34px;
}
.xm-logo-loop::before,
.xm-logo-loop::after {
  content: "";
  position: absolute;
  top: -12px;
  bottom: -42px;
  z-index: 4;
  width: min(120px, 16vw);
  pointer-events: none;
}
.xm-logo-loop::before {
  left: -2px;
  background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.86) 28%, transparent 100%);
}
.xm-logo-loop::after {
  right: -2px;
  background: linear-gradient(270deg, #000 0%, rgba(0,0,0,.86) 28%, transparent 100%);
}
.xm-logo-loop-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: xm-logo-loop 44s linear infinite;
  will-change: transform;
}
.xm-tool-logo {
  position: relative;
  flex: 0 0 184px;
  width: 184px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  text-decoration: none;
  border: 0;
  overflow: visible;
  isolation: isolate;
  cursor: default;
  transition: opacity .18s, transform .18s, filter .18s;
}
.xm-tool-logo::before {
  content: "";
  position: absolute;
  inset: 12px 10px;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.48), rgba(233,236,241,.24) 44%, rgba(255,255,255,.09) 66%, transparent 84%);
  filter: blur(15px);
  opacity: .66;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.xm-tool-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 145px;
  height: 93px;
  object-fit: contain;
  filter:
    brightness(1.48)
    contrast(1.28)
    saturate(.72)
    drop-shadow(0 0 7px rgba(255,255,255,.54))
    drop-shadow(0 0 18px rgba(255,255,255,.27))
    drop-shadow(0 0 36px rgba(255,255,255,.12));
}
.xm-tool-logo::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translate(-50%, 4px);
  padding: 6px 9px;
  border: 0;
  background: rgba(8,8,10,.96);
  color: var(--chrome-200);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(233,236,241,.14), 0 0 18px rgba(255,255,255,.14);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.xm-tool-logo:hover,
.xm-tool-logo:focus-visible {
  opacity: 1;
  transform: scale(1.1);
  filter:
    drop-shadow(0 0 14px rgba(255,255,255,.22))
    drop-shadow(0 0 34px rgba(255,255,255,.12));
  text-decoration: none;
  border: 0;
  z-index: 2;
  outline: none;
}
.xm-tool-logo:hover::before,
.xm-tool-logo:focus-visible::before {
  opacity: .95;
  transform: scale(1.18);
}
.xm-tool-logo:hover img,
.xm-tool-logo:focus-visible img {
  filter:
    brightness(1.64)
    contrast(1.32)
    saturate(.78)
    drop-shadow(0 0 9px rgba(255,255,255,.66))
    drop-shadow(0 0 24px rgba(255,255,255,.34))
    drop-shadow(0 0 48px rgba(255,255,255,.16));
}
.xm-tool-logo:hover::after,
.xm-tool-logo:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.xm-logo-loop-track svg {
  flex: 0 0 auto;
  opacity: .74;
  filter: drop-shadow(0 0 10px rgba(150,170,200,.08));
}
@keyframes xm-logo-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* catalogue */
.xm-cat { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
.xm-cat.one { grid-template-columns: 1fr; }
.xm-row {
  position: relative;
  display: flex; align-items: center; gap: 16px; padding: 12px 4px;
  border-bottom: 1px solid var(--hairline); cursor: pointer; transition: background .15s, padding-left .15s, transform .15s, border-color .15s;
  min-width: 0;
  overflow: hidden;
}
.xm-row:hover {
  background: linear-gradient(90deg, rgba(233,236,241,.07), rgba(69,145,255,.025), transparent);
  padding-left: 12px;
  transform: translateX(2px);
  border-color: rgba(233,236,241,.16);
}
.xm-cat .xm-row:nth-last-child(-n + 2),
.xm-cat .xm-row:nth-last-child(-n + 2):hover {
  border-bottom-color: transparent;
}
.xm-row.active { background: linear-gradient(90deg, rgba(255,122,47,.10), rgba(69,145,255,.035), transparent); }
.xm-row.active { padding-left: 14px; }
.xm-cn { font-family: var(--font-mono); font-size: 12px; color: var(--chrome-500); width: 24px; flex: none; }
.xm-cpb {
  width: 26px; height: 26px; flex: none; display: flex; align-items: center; justify-content: center;
  color: var(--chrome-400); transition: color .15s, transform .15s;
}
.xm-row:hover .xm-cpb { color: #fff; transform: scale(1.12); }
.active .xm-cpb { color: var(--accent-bright); }
.xm-ct {
  flex: 1; font-family: var(--font-ui); font-weight: 400; font-size: 14px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--chrome-300);
  min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.active .xm-ct { color: #fff; }
.xm-cd { font-family: var(--font-mono); font-size: 12px; color: var(--chrome-500); font-variant-numeric: tabular-nums; }

/* contact */
.xm-contact {
  margin-top: 86px;
  padding-bottom: 42px;
}
.xm-contact-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-top: -20px;
}
.xm-contact-icons a {
  position: relative;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome-200);
  text-decoration: none;
  opacity: 1;
  isolation: isolate;
  transition: opacity .18s, transform .18s, filter .18s;
}
.xm-contact-icons .xm-social-chrome {
  width: 88px;
  height: 88px;
}
.xm-contact-icons a:hover,
.xm-contact-icons a:focus-visible { text-decoration: none; }
.xm-contact-icons a:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 0 16px rgba(255,255,255,.28));
}
.xm-contact-icons a::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translate(-50%, 4px);
  padding: 5px 8px;
  border: 1px solid var(--hairline-2);
  background: rgba(8,8,10,.92);
  color: var(--chrome-200);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s, transform .16s;
}
.xm-contact-icons a.xm-copy-link::after {
  content: attr(data-tip) "  ⧉";
}
.xm-contact-icons a.xm-copy-link.copied::after {
  content: attr(data-tip);
}
.xm-contact-icons a:hover::after,
.xm-contact-icons a:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.xm-contact-email {
  position: relative;
  display: block;
  width: fit-content;
  margin: 34px auto 0;
  color: var(--chrome-200);
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .18s, filter .18s;
}
.xm-contact-email:hover {
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(255,122,47,.28));
}
.xm-contact-email::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translate(-50%, 4px);
  padding: 5px 8px;
  border: 1px solid var(--hairline-2);
  background: rgba(8,8,10,.92);
  color: var(--chrome-200);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s, transform .16s;
}
.xm-contact-email:hover::after,
.xm-contact-email:focus-visible::after,
.xm-contact-email.copied::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.xm-contact-mark {
  display: flex;
  justify-content: center;
  margin: 64px auto 0;
  width: 100%;
  position: relative;
  z-index: 2;
}
.xm-contact-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(608px, 62.4vw);
  max-width: calc(100vw - 56px);
  height: auto;
  filter:
    drop-shadow(0 0 14px rgba(255,255,255,.18))
    drop-shadow(0 0 42px rgba(90,150,255,.16));
  user-select: none;
  transition: transform .2s ease, filter .2s ease;
}
.xm-contact-mark img:hover {
  transform: translateY(-8px) scale(1.035);
  filter:
    drop-shadow(0 14px 24px rgba(0,0,0,.46))
    drop-shadow(0 0 18px rgba(255,255,255,.22))
    drop-shadow(0 0 48px rgba(90,150,255,.18));
}

/* player bar */
.xm-player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  display: flex; align-items: center; gap: 26px;
  padding: 14px 28px;
  background:
    radial-gradient(44% 140% at 14% 0%, rgba(255,122,47,.13), transparent 64%),
    rgba(8,8,10,.88);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline-2);
  box-shadow: 0 -20px 50px rgba(0,0,0,.7);
  overflow: hidden;
}
.xm-player::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), rgba(255,122,47,.32), transparent);
  opacity: .72;
  pointer-events: none;
}
.xm-player .xm-social-chrome {
  width: 32px;
  height: 32px;
  filter:
    brightness(1.42)
    contrast(1.22)
    saturate(.72)
    drop-shadow(0 0 6px rgba(255,255,255,.44))
    drop-shadow(0 0 14px rgba(255,255,255,.16));
}
.xm-player.playing {
  border-top-color: rgba(255,255,255,.22);
  box-shadow:
    0 -26px 72px rgba(0,0,0,.76),
    0 -1px 34px rgba(255,122,47,.08);
}
.xm-pp-art {
  width: 48px; height: 48px; flex: none; border: 1px solid var(--hairline-2);
  background: radial-gradient(120% 120% at 40% 20%, #23252b, #000);
  display: flex; align-items: center; justify-content: center; color: var(--chrome-300);
  position: relative;
  z-index: 1;
}
.xm-player.playing .xm-pp-art {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  box-shadow:
    0 0 20px rgba(255,255,255,.14),
    0 0 34px rgba(255,122,47,.16);
}
.xm-pp-link {
  text-decoration: none;
  transition: border-color .16s, color .16s, filter .16s, transform .16s;
}
.xm-pp-link:hover {
  color: #fff;
  border-color: var(--chrome-400);
  filter: drop-shadow(0 0 12px rgba(255,255,255,.18));
  transform: translateY(-1px);
}
.xm-pp-info { display: flex; flex-direction: column; gap: 3px; width: 200px; flex: none; }
.xm-pp-t { font-family: var(--font-ui); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xm-pp-a { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--chrome-500); }
.xm-player.playing .xm-pp-t {
  text-shadow: 0 0 16px rgba(255,255,255,.18);
}
.xm-player.playing .xm-pp-a {
  color: var(--accent-bright);
}
.xm-tp { display: flex; align-items: center; gap: 16px; }
.xm-tp button { background: none; border: 0; padding: 0; cursor: pointer; display: flex; opacity: .85; transition: opacity .15s; }
.xm-tp button:hover { opacity: 1; }
.xm-tp .xm-pp-main {
  width: 42px; height: 42px; border-radius: 50%; background: #0c0c0e; color: #fff;
  border: 1px solid var(--chrome-300);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 14px rgba(255,255,255,.16);
}
.xm-scrub { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; gap: 12px; }
.xm-time { font-family: var(--font-mono); font-size: 10px; color: var(--chrome-400); font-variant-numeric: tabular-nums; flex: none; }
.xm-time.on { color: var(--accent-bright); }
.xm-bars { flex: 1; height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1.4px; min-width: 0; overflow: hidden; cursor: pointer; touch-action: none; user-select: none; }
.xm-bar { flex: 0 0 1px; width: 1px; min-width: 1px; border-radius: 2px; background: var(--chrome-600); transition: background .12s, box-shadow .12s, opacity .12s; }
.xm-bar.on { background: var(--accent); box-shadow: 0 0 8px rgba(255,122,47,.28); }
.xm-bar.head { background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.44); }
.xm-player.playing .xm-bars {
  filter: drop-shadow(0 0 12px rgba(255,122,47,.08));
}
.xm-player.playing .xm-bar:not(.on):not(.head) {
  animation: xm-wave-idle 1.8s ease-in-out infinite alternate;
}
.xm-bars:hover .xm-bar:not(.on):not(.head) { background: var(--chrome-500); }
.xm-main-wave { height: 58px; }
.xm-vol { flex: 0 0 auto; margin-left: auto; display: flex; align-items: center; gap: 8px; }
.xm-vol input {
  -webkit-appearance: none;
  appearance: none;
  width: 190px;
  height: 24px;
  margin: 0;
  accent-color: var(--accent);
  background: transparent;
  cursor: pointer;
}
.xm-vol input::-webkit-slider-runnable-track {
  height: 7px;
  border-radius: 999px;
  border: 1px solid var(--hairline-2);
  background: linear-gradient(90deg, var(--accent) 0 var(--vol), #1b1b1f var(--vol) 100%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 0 12px rgba(255,122,47,.08);
}
.xm-vol input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #050506;
  margin-top: -6px;
  box-shadow: 0 0 0 1px var(--chrome-300), 0 0 14px rgba(255,122,47,.38);
}
.xm-vol input::-moz-range-track { height: 7px; border-radius: 999px; background: #1b1b1f; }
.xm-vol input::-moz-range-progress { height: 7px; border-radius: 999px; background: var(--accent); }
.xm-vol input::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: 2px solid #050506;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px var(--chrome-300), 0 0 14px rgba(255,122,47,.38);
}
.xm-play-tri {
  display: block;
  transform: translateX(7%);
}
.xm-cpb .xm-play-tri { transform: translateX(6%); }
.xm-pp-main .xm-play-tri { transform: translateX(8%); color: #fff; }
@keyframes xm-wave-idle {
  from { opacity: .62; }
  to { opacity: .95; }
}

@media (max-width: 820px) {
  .xm-page { padding: 48px 24px 130px; }
  .xm-section + .xm-section { margin-top: 64px; }
  .xm-section::before { top: -32px; left: 12%; right: 12%; }
  .xm-hero { margin-bottom: 44px; padding-top: 6px; }
  .xm-logo-stage { width: 100vw; }
  .xm-logo-world { width: min(92vw, 720px); margin: -18px 0 -10px; }
  .xm-domain { margin-top: 34px; font-size: 12px; }
  .xm-social { gap: 18px; }
  .xm-social a { width: 86px; height: 86px; }
  .xm-social-chrome { width: 76px; height: 76px; }
  .xm-head { gap: 16px; margin-bottom: 28px; }
  .xm-head .rule { min-width: 28px; flex-basis: 44px; }
  .xm-head-shine { width: min(560px, 72vw); height: 178px; }
  .xm-head-contact .xm-head-shine { width: min(455px, 58.5vw); height: 145px; }
  .xm-head-img { height: 100%; max-width: none; margin: 0; }
  .xm-main-showcase {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 14px;
    min-height: 96px;
    padding: 14px 12px;
  }
  .xm-main-play {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
  }
  .xm-main-title {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    padding-right: 0;
  }
  .xm-main-title-text {
    display: block;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .xm-main-title-time {
    display: inline-flex;
    flex: none;
    align-items: center;
    color: var(--accent-bright);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    padding: 2px 6px;
    border: 1px solid rgba(255,122,47,.24);
    background: rgba(255,122,47,.075);
    line-height: 1;
  }
  .xm-main-wave {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 44px;
  }
  .xm-main-time {
    display: none;
  }
  .xm-featured, .xm-cat { grid-template-columns: 1fr; }
  .xm-cat .xm-row:nth-last-child(-n + 2) { border-bottom-color: var(--hairline); }
  .xm-cat .xm-row:last-child,
  .xm-cat .xm-row:last-child:hover { border-bottom-color: transparent; }
  .xm-tools { padding-top: 38px; padding-bottom: 30px; margin-bottom: 0; }
  .xm-tools + .xm-section-catalogue { margin-top: 28px; }
  .xm-logo-loop-track { gap: 34px; animation-duration: 38s; }
  .xm-tool-logo { flex-basis: 124px; width: 124px; height: 112px; }
  .xm-tool-logo img { width: 106px; height: 68px; }
  .xm-pp-info { width: 130px; }
}

@media (max-width: 620px) {
  .xm-section + .xm-section { margin-top: 54px; }
  .xm-main-showcase {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 86px;
    margin: -4px 0 26px;
    padding: 12px 10px;
  }
  .xm-main-play {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
  }
  .xm-main-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 13px;
    letter-spacing: .12em;
  }
  .xm-main-wave {
    grid-column: 2;
    grid-row: 2;
    height: 34px;
  }
  .xm-main-title-time { font-size: 10px; padding: 2px 5px; }
  .xm-player { gap: 14px; padding: 12px 16px; }
  .xm-tools { padding-top: 28px; padding-bottom: 26px; margin-bottom: 0; }
  .xm-tools + .xm-section-catalogue { margin-top: 24px; }
  .xm-logo-loop-track { gap: 28px; animation-duration: 34s; }
  .xm-pp-info { display: none; }
  .xm-tp { gap: 12px; }
  .xm-scrub { gap: 8px; }
  .xm-bars { gap: 2px; }
  .xm-bar { flex-basis: 1.5px; width: 1.5px; min-width: 1.5px; }
  .xm-vol { gap: 5px; }
  .xm-vol input { width: 120px; }
  .xm-contact-icons {
    flex-wrap: wrap;
    gap: 18px 22px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
  .xm-contact-icons a { width: 86px; height: 86px; }
  .xm-contact-icons .xm-social-chrome { width: 76px; height: 76px; }
  .xm-contact-email { font-size: 12px; letter-spacing: .12em; }
  .xm-contact-mark { margin-top: 52px; }
  .xm-contact-mark img {
    width: min(256px, 50vw);
    max-width: calc(100vw - 48px);
  }
  .xm-head-shine { width: min(430px, 70vw); height: 150px; }
  .xm-head-contact .xm-head-shine { width: min(350px, 57vw); height: 123px; }
}

@media (max-width: 460px) {
  .xm-page { padding-left: 18px; padding-right: 18px; }
  .xm-section + .xm-section { margin-top: 48px; }
  .xm-logo-stage { width: 100vw; }
  .xm-logo-world { width: 88vw; margin-top: -8px; }
  .xm-main-showcase {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 6px 10px;
    min-height: 78px;
    padding: 10px 8px;
    margin-bottom: 22px;
  }
  .xm-main-play {
    width: 38px;
    height: 38px;
  }
  .xm-main-title {
    font-size: 12px;
    letter-spacing: .1em;
  }
  .xm-main-wave { height: 28px; }
  .xm-main-title-time { font-size: 9px; }
  .xm-head { gap: 10px; }
  .xm-head .rule { min-width: 16px; flex-basis: 24px; }
  .xm-head-shine { width: 74vw; height: 126px; }
  .xm-head-contact .xm-head-shine { width: 60vw; height: 102px; }
  .xm-domain { margin-top: 32px; font-size: 11px; letter-spacing: .2em; }
  .xm-player { gap: 10px; padding: 10px 12px; }
  .xm-tools { padding-top: 22px; padding-bottom: 24px; }
  .xm-tools + .xm-section-catalogue { margin-top: 22px; }
  .xm-logo-loop-track { gap: 24px; animation-duration: 32s; }
  .xm-pp-link { width: 42px; height: 42px; }
  .xm-tp button:not(.xm-pp-main) { display: none; }
  .xm-vol input { width: 90px; }
}
