/* assets/styles.css */

:root {
  color-scheme: light;

  /*
    Brand + layout tokens
    - Minimal, high-contrast, black/white first.
    - Accent is the primary ink color (near-black).
  */

  --bg0: #ffffff;
  --bg1: #fbfbfc;
  --bg2: #f3f4f6;

  --card: #ffffff;
  --card2: #fbfbfc;

  --border: rgba(11, 18, 32, 0.18);
  --border2: rgba(11, 18, 32, 0.12);

  --shadow: 0 18px 50px rgba(11, 18, 32, 0.10);
  --shadow2: 0 8px 22px rgba(11, 18, 32, 0.08);

  --text: #0b1220;
  --text2: rgba(11, 18, 32, 0.86);
  --muted: rgba(11, 18, 32, 0.70);
  --muted2: rgba(11, 18, 32, 0.56);

  --accent: #0b1220;
  --danger: #b91c1c;

  --radius: 16px;
  --radius2: 12px;

  --max: 1120px;
  --pad: 18px;
  --header-h: 72px;
  --dock-space: 260px;
  --cookie-space: 0px;

  /*
    Futura PT is the brand font.
    Note: Futura PT is not bundled in this repo.
    If it is installed on the viewer's device it will be used; otherwise fall back gracefully.
  */
  --sans: "Futura PT", "Futura", "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--sans);
  color: var(--text);
  background: linear-gradient(to bottom, var(--bg0), var(--bg2));
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Subtle editorial grid to match the minimal brand without reducing readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(11, 18, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  z-index: -1;
}

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

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

.is-hidden {
  display: none !important;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 2000;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}

.skip-link:focus {
  left: 12px;
}

.icon {
  width: 18px;
  height: 18px;
}

.code {
  font-family: var(--mono);
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  border-radius: 10px;
  border: 1px solid var(--border2);
  background: var(--bg2);
}

.mono {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-line;
  color: var(--text2);
}

.muted {
  color: var(--muted);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link:hover {
  text-decoration-thickness: 2px;
}

.divider {
  height: 1px;
  background: var(--border2);
  margin: 18px 0;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  border-bottom: 1px solid var(--border2);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand__name {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav a:not(.btn) {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a:not(.btn)[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.nav a:not(.btn):hover {
  color: var(--text);
}

.nav__cta {
  display: none;
}

@media (min-width: 920px) {
  .nav {
    display: flex;
  }
  .nav__cta {
    display: inline-flex;
  }
}

/* Mobile menu */

.menu {
  position: relative;
}

.menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
}

.menu__button:hover {
  background: var(--bg2);
}

/* 3-line hamburger without requiring extra markup */
.menu__icon {
  width: 18px;
  height: 2px;
  position: relative;
  background: var(--text);
  border-radius: 999px;
}

.menu__icon::before,
.menu__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.menu__icon::before {
  top: -5px;
}

.menu__icon::after {
  top: 5px;
}

.menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(320px, calc(100vw - 24px));
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 10px;
}

.menu__panel[aria-hidden="true"] {
  display: none;
}

.menu__panel-inner {
  display: grid;
  gap: 6px;
}

.menu__link {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.menu__link:hover {
  border-color: var(--border2);
  background: var(--bg2);
}

.menu__link--cta {
  border-color: var(--text);
  background: var(--text);
  color: #ffffff;
}

.menu__link--cta:hover {
  background: var(--accent);
  color: #ffffff;
}

@media (min-width: 920px) {
  .menu {
    display: none;
  }
}


/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
}

.btn--small {
  padding: 9px 12px;
  font-size: 11px;
  border-radius: 12px;
}

.btn--primary {
  border-color: var(--text);
  background: var(--text);
  color: #ffffff;
}

.btn--ghost {
  background: transparent;
}

.btn:hover {
  background: var(--bg2);
}

.btn--primary:hover {
  background: #000000;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible,
.menu__button:focus-visible,
.menu__panel a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(11, 18, 32, 0.65);
  outline-offset: 2px;
}

/* Hero */

.hero {
  padding: 0 0 10px;
}

@media (min-width: 920px) {
  .hero {
    padding: 0 0 16px;
  }
}

.hero__banner-wrap {
  width: 100%;
}

.hero__content {
  padding-top: 18px;
}

@media (min-width: 920px) {
  .hero__content {
    padding-top: 22px;
  }
}

.kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker--muted {
  color: var(--muted2);
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 18px 0 18px;
}

.hero__banner {
  width: min(2000px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero__wordmark {
  width: min(680px, 100%);
  height: auto;
}

.page__brand {
  margin: 14px 0 10px;
}

.page__wordmark {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero__sub {
  margin: 0;
  color: var(--text2);
  max-width: 64ch;
  line-height: 1.65;
  font-size: 16px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* Sections + typography */

.section {
  padding: 44px 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.section__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.page-title {
  margin: 10px 0 0;
  font-size: 34px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

@media (min-width: 920px) {
  .page-title {
    font-size: 40px;
  }
}

.lead {
  margin: 12px 0 0;
  color: var(--text2);
  line-height: 1.7;
  max-width: 72ch;
}

/* Grid */

.grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

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

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

@media (min-width: 720px) {
  .grid {
    gap: 16px;
  }
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Stacks */

.stack {
  display: grid;
  gap: 14px;
  min-width: 0;
}

/* Tags */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--card);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text2);
}

.tag:hover {
  border-color: var(--border);
  background: var(--bg2);
  color: var(--text);
}

/* Cards */

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: var(--card);
  box-shadow: var(--shadow2);
  padding: 18px;
  min-width: 0;
}

.card--link {
  cursor: pointer;
}

.card--link:hover {
  border-color: var(--border);
}

.card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card__title {
  margin: 8px 0 0;
  font-size: 18px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.card__subtitle {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.card__desc {
  margin: 10px 0 0;
  color: var(--text2);
  line-height: 1.65;
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.card__glyph {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--bg2);
}

/* Cover art */

.cover {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  overflow: hidden;
  box-shadow: var(--shadow2);
  flex: 0 0 auto;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover--xs {
  width: 44px;
}

.cover--sm {
  width: 72px;
}

.cover--hero {
  width: 100%;
  max-width: 420px;
}

@media (min-width: 860px) {
  .cover--hero {
    max-width: 460px;
  }
}

/* Thumbnails */

.thumb {
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb--banner {
  aspect-ratio: 6 / 1;
  width: 100%;
}

.track-stream {
  display: grid;
  gap: 16px;
}

.track-stream__cover {
  display: flex;
  justify-content: center;
}

.track-stream__content {
  min-width: 0;
}

@media (min-width: 860px) {
  .track-stream {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Platforms */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

@media (min-width: 720px) {
  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .platform-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.platform {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--card);
}

.platform:hover {
  border-color: var(--border);
  background: var(--bg2);
}


.platform__logo {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.platform__logo-img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.platform__label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--card);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text2);
}

.pill__logo {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.pill__logo-img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.pill:hover {
  border-color: var(--border);
  background: var(--bg2);
  color: var(--text);
}

.pill__ext {
  opacity: 0.85;
}

/* Facts list */

.facts {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.facts__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 10px;
}

.facts__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.facts dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.facts dd {
  margin: 0;
  text-align: right;
  color: var(--text2);
}

/* Prose */

.prose {
  color: var(--text2);
  line-height: 1.8;
}

.prose p {
  margin: 0 0 12px;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Copy blocks */

.copy-block {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--bg1);
}

.copy-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border2);
}

.copy-block__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.copy-block__text {
  padding: 12px;
  margin: 0;
  color: var(--text2);
  line-height: 1.75;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: var(--card);
  cursor: pointer;
}

.copy-btn:hover {
  border-color: var(--border);
  background: var(--bg2);
}

/* Alerts */

.alert {
  margin: 16px 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.18);
  background: rgba(11, 18, 32, 0.04);
  color: var(--text);
}

.alert--error {
  border-color: rgba(185, 28, 28, 0.30);
  background: rgba(185, 28, 28, 0.06);
}

/* Forms */

.form {
  margin-top: 14px;
}

.form__row {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.form__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: #ffffff;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
}

.form__textarea {
  font-family: var(--mono);
  font-size: 14px;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--muted2);
}

.form__input:disabled,
.form__textarea:disabled,
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Footer */

.footer {
  border-top: 1px solid var(--border2);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px 0 calc(18px + var(--dock-space) + var(--cookie-space) + env(safe-area-inset-bottom));
}

@media (min-width: 920px) {
  .footer {
    padding-bottom: calc(18px + var(--dock-space) + var(--cookie-space) + env(safe-area-inset-bottom));
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 720px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: var(--card);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__social-link:hover {
  border-color: var(--border);
  background: var(--bg2);
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (min-width: 720px) {
  .footer__meta {
    justify-content: flex-end;
  }
}

.footer__link {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border2);
  background: var(--card);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

.footer__link:hover {
  border-color: var(--border);
  background: var(--bg2);
}

/* Spotify embed */

.spotify-embed {
  margin-top: 14px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: #000000;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.spotify-embed--latest {
  margin-top: 16px;
}

.spotify-embed--about {
  margin-top: 16px;
}


/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(var(--dock-space) + 8px + env(safe-area-inset-bottom));
  z-index: 1450;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner--closing {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.cookie-banner__text {
  min-width: 0;
  color: var(--text2);
  font-size: 12px;
  line-height: 1.4;
}

.cookie-banner__text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie-banner__btn {
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
}

.cookie-banner__btn:hover {
  border-color: var(--border);
  background: var(--bg2);
}

.cookie-banner__btn--primary {
  border-color: var(--text);
  background: var(--text);
  color: #ffffff;
}

.cookie-banner__btn--primary:hover {
  background: #000000;
}

@media (min-width: 920px) {
  .cookie-banner {
    left: auto;
    right: 16px;
    width: 520px;
  }
}


/* Listen dock */

.dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1400;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.dock__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.dock__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dock__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  flex: 0 0 auto;
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--text);
  background: var(--text);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;
}

.dock__cta:hover {
  background: #000000;
}

.dock__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dock__icons::-webkit-scrollbar {
  display: none;
}

.dock__embed {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: #000000;
}

.dock__embed iframe {
  display: block;
  width: 100%;
}

.dock__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--card);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dock__icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.dock__icon:hover {
  border-color: var(--border);
  background: var(--bg2);
}

@media (min-width: 920px) {
  .dock {
    left: auto;
    right: 16px;
    bottom: 16px;
    width: 360px;
  }
}
