:root {
  color-scheme: dark;
  --page-bg: #050505;
  --panel: rgba(5, 5, 5, 0.84);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --text: #ffffff;
  --muted: #d2cec5;
  --line: rgba(218, 174, 88, 0.34);
  --accent: #d9ad57;
  --accent-two: #ffffff;
  --accent-three: #9e742c;
  --shadow: rgba(0, 0, 0, 0.62);
  --button-text: #090909;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.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;
}

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--font-main);
  letter-spacing: 0;
}

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

body::before {
  z-index: 0;
  background: url("backgrounds/heavenly-gates.jpg") center 36% / cover no-repeat;
  filter: brightness(1.13) saturate(0.9) contrast(0.98);
}

body::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 50%, rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.25));
}

button,
input {
  font: inherit;
}

.ambient-light {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-light span {
  position: absolute;
  top: -15%;
  left: 35%;
  width: 35%;
  height: 135%;
  background: linear-gradient(180deg, rgba(255, 249, 216, 0.25), rgba(255, 237, 183, 0.08) 55%, transparent);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  transform-origin: 50% 0;
  animation: ambient-sway 22s ease-in-out infinite alternate;
}

.ambient-light span:nth-child(2) {
  left: 46%;
  width: 26%;
  animation-delay: -14s;
  animation-duration: 29s;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 0 40px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: start;
}

.topbar {
  width: min(100%, 620px);
  justify-self: end;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 18px 48px var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f5dfaa, var(--accent) 52%, #8f6826);
  box-shadow: 0 14px 34px var(--shadow);
  color: var(--button-text);
  font-size: 0.86rem;
  font-weight: 950;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 850;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-status {
  min-width: 128px;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px var(--shadow);
  font-size: 0.9rem;
  backdrop-filter: blur(18px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent), transparent 78%);
}

body.is-playing .status-dot {
  animation: pulse 1.1s ease-in-out infinite;
}

.player-layout {
  position: relative;
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 0;
  align-self: start;
  justify-self: end;
  align-items: stretch;
  transition: width 360ms ease;
}

.player-layout.is-expanded {
  width: min(100%, 1000px);
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  justify-self: center;
}

/* Mask the moving highlight to the outer edge, leaving all controls clickable. */
.player-layout::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 7;
  pointer-events: none;
  border-radius: 9px;
  padding: 2px;
  background: linear-gradient(115deg, #896527 10%, #dbb563 35%, #fff7d8 46%, #d9ad57 52%, #896527 70%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: gold-border-travel 12s ease-in-out infinite alternate;
}

@supports not (mask-composite: exclude) {
  .player-layout::after {
    background: none;
    border: 1px solid var(--accent);
  }
}

.expand-button {
  position: absolute;
  z-index: 8;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.expand-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.collapse-icon,
.player-layout.is-expanded .expand-icon {
  display: none;
}

.player-layout.is-expanded .collapse-icon {
  display: block;
}

.expand-button::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  pointer-events: none;
  opacity: 0;
  padding: 6px 8px;
  border-radius: 6px;
  background: #ffffff;
  color: #080808;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  transition: opacity 160ms ease;
}

.expand-button:hover::after {
  opacity: 1;
}

.player-stage,
.controls {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.player-stage {
  min-height: 570px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.74)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 46%);
  border-right: 0;
  border-radius: 8px 0 0 8px;
}

.player-stage::before,
.player-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.player-stage::before {
  background:
    linear-gradient(
      120deg,
      transparent 0,
      color-mix(in srgb, var(--accent), transparent 80%) 28%,
      transparent 60%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 54px
    );
  mix-blend-mode: screen;
}

.player-stage::after {
  background:
    linear-gradient(to bottom, transparent 0 68%, rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0.64;
}

.stage-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stage-lines span {
  --beam-angle: 0deg;
  position: absolute;
  top: -22%;
  left: 50%;
  width: 42%;
  height: 150%;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 252, 230, 0.56), rgba(217, 173, 87, 0.16) 48%, transparent 82%);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  filter: blur(8px);
  transform-origin: 50% 0;
  opacity: 0.28;
  animation: light-sweep 10s ease-in-out infinite;
}

.stage-lines span:nth-child(1) {
  --beam-angle: -25deg;
}

.stage-lines span:nth-child(2) {
  --beam-angle: 0deg;
  animation-delay: -3.2s;
  opacity: 0.34;
}

.stage-lines span:nth-child(3) {
  --beam-angle: 25deg;
  animation-delay: -6.4s;
}

.cover-wrap {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  aspect-ratio: 1;
  align-self: center;
  display: grid;
  place-items: center;
}

.cover-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff4cf, var(--accent) 44%, #74511c 76%, #ffffff);
  filter: blur(8px);
  opacity: 0.58;
}

.cover-art,
.cover-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 2px solid color-mix(in srgb, var(--accent), white 18%);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
}

.cover-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #ffffff, var(--accent) 58%, #111111),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14) 0,
      rgba(255, 255, 255, 0.14) 2px,
      transparent 2px,
      transparent 18px
    );
}

.cover-fallback span {
  color: var(--button-text);
  font-size: clamp(6rem, 20vw, 11rem);
  font-weight: 950;
}

.cover-art[src] {
  z-index: 2;
}

.song-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.eyebrow,
.compact-now-playing p,
.section-heading p {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.song-copy h1 {
  margin: 10px 0 10px;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.82);
}

.song-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.visualizer {
  position: absolute;
  z-index: 1;
  right: -60px;
  bottom: 18px;
  width: 78%;
  height: 150px;
  opacity: 0.58;
}

.controls {
  min-height: 570px;
  padding: 72px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background:
    linear-gradient(160deg, rgba(3, 3, 3, 0.94), rgba(12, 12, 12, 0.88)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 12px
    );
  border-radius: 0 8px 8px 0;
}

.player-layout.is-expanded .player-stage,
.player-layout.is-expanded .controls {
  min-height: 570px;
}

.player-layout.is-expanded .cover-wrap {
  width: min(360px, 82%);
}

.player-layout.is-expanded .song-copy h1 {
  font-size: 3.25rem;
}

.player-layout:not(.is-expanded) .player-stage {
  min-height: 330px;
  padding: 16px;
}

.player-layout:not(.is-expanded) .cover-wrap {
  width: min(210px, 84%);
}

.player-layout:not(.is-expanded) .song-copy h1 {
  margin: 6px 0;
  font-size: 1.55rem;
}

.player-layout:not(.is-expanded) .song-copy p:last-child {
  font-size: 0.84rem;
}

.player-layout:not(.is-expanded) .eyebrow {
  font-size: 0.65rem;
}

.player-layout:not(.is-expanded) .visualizer {
  right: -20px;
  bottom: 10px;
  width: 96%;
  height: 86px;
  opacity: 0.42;
}

.player-layout:not(.is-expanded) .controls {
  min-height: 330px;
  padding: 58px 18px 18px;
  justify-content: center;
  gap: 16px;
}

.player-layout:not(.is-expanded) .compact-now-playing,
.player-layout:not(.is-expanded) .playlist-section {
  display: none;
}

.player-layout:not(.is-expanded) .transport {
  grid-template-columns: 42px 56px 42px;
  gap: 8px;
  padding: 10px;
}

.player-layout:not(.is-expanded) .icon-button {
  width: 42px;
  height: 42px;
}

.player-layout:not(.is-expanded) .play-button {
  width: 56px;
  height: 56px;
}

.daily-content {
  width: min(100%, 1000px);
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.86);
  box-shadow: 0 20px 55px var(--shadow);
  backdrop-filter: blur(16px);
}

.verse-panel,
.reflection-panel {
  padding: 18px 24px;
}

.reflection-panel {
  border-left: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(217, 173, 87, 0.13), rgba(255, 255, 255, 0.06));
}

.daily-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.daily-heading p,
.daily-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.daily-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.verse-panel blockquote {
  margin: 14px 0 10px;
  color: #fff8e6;
  font-family: "Apple Chancery", "Segoe Script", "URW Chancery L", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(217, 173, 87, 0.3);
}

.verse-reference {
  margin: 0;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.reflection-panel h2 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  line-height: 1.2;
}

.reflection-panel > p:last-child {
  margin: 0;
  color: #ffffff;
  font-weight: 650;
  line-height: 1.55;
}

.compact-now-playing {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.compact-now-playing h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.compact-now-playing span {
  color: var(--muted);
}

.transport {
  display: grid;
  grid-template-columns: 48px 64px 48px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.icon-button,
.play-button,
.playlist-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.icon-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.play-button {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff0bf, var(--accent) 56%, #966b25);
  color: var(--button-text);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--accent), transparent 72%);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid currentColor;
  margin-left: 5px;
}

body.is-playing .play-icon {
  width: 22px;
  height: 27px;
  border: 0;
  margin-left: 0;
  background:
    linear-gradient(90deg, currentColor 0 8px, transparent 8px 14px, currentColor 14px 22px);
}

body.is-muted #muteButton::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: currentColor;
  transform: rotate(-38deg);
}

.play-button::after,
.icon-button::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  pointer-events: none;
  opacity: 0;
  padding: 6px 8px;
  border-radius: 6px;
  background: #ffffff;
  color: #080808;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.play-button:hover::after,
.icon-button:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.timeline,
.volume-row {
  display: grid;
  gap: 10px;
}

.time-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.volume-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

input[type="range"] {
  width: 100%;
  min-height: 24px;
  accent-color: var(--accent);
  cursor: pointer;
}

.playlist-section {
  display: grid;
  gap: 12px;
  min-height: 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-heading span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.playlist {
  display: grid;
  gap: 8px;
}

.playlist-button {
  width: 100%;
  min-height: 62px;
  padding: 8px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  text-align: left;
}

.playlist-button.is-active {
  border-color: color-mix(in srgb, var(--accent), white 18%);
  background: linear-gradient(90deg, rgba(217, 173, 87, 0.2), rgba(255, 255, 255, 0.055));
}

.playlist-thumb {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: linear-gradient(135deg, #ffffff, var(--accent), #111111);
}

.playlist-title,
.playlist-artist {
  display: block;
}

.playlist-title {
  font-weight: 850;
  overflow-wrap: anywhere;
}

.playlist-artist {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent), white 12%);
}

button:active {
  transform: translateY(0);
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent), transparent 48%);
  outline-offset: 2px;
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 24px, 820px);
    padding-top: 14px;
  }

  .player-layout.is-expanded {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  }

  .player-layout.is-expanded .player-stage {
    min-height: 540px;
  }

  .player-layout.is-expanded .song-copy h1 {
    font-size: 2.75rem;
  }

  .player-layout.is-expanded .cover-wrap {
    width: min(310px, 82%);
  }

  .player-layout.is-expanded .controls {
    min-height: 540px;
  }
}

@media (max-width: 680px) {
  .topbar {
    width: 100%;
  }

  .player-layout.is-expanded {
    grid-template-columns: 1fr;
  }

  .player-layout:not(.is-expanded) {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .player-layout:not(.is-expanded) .cover-wrap {
    width: min(145px, 82%);
  }

  .player-layout:not(.is-expanded) .song-copy h1 {
    font-size: 1.35rem;
  }

  .player-layout.is-expanded .player-stage {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
  }

  .player-layout.is-expanded .controls {
    border-radius: 0 0 8px 8px;
  }

  .player-layout.is-expanded .player-stage {
    min-height: 570px;
  }

  .player-layout.is-expanded .cover-wrap {
    width: min(320px, 82%);
  }

  .player-layout.is-expanded .controls {
    min-height: auto;
    padding-top: 24px;
  }

  .daily-content {
    grid-template-columns: 1fr;
  }

  .reflection-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 18px, 520px);
    gap: 14px;
  }

  .player-layout:not(.is-expanded) {
    grid-template-columns: minmax(90px, 0.65fr) minmax(190px, 1fr);
  }

  .player-layout:not(.is-expanded) .player-stage {
    padding: 12px;
  }

  .player-layout:not(.is-expanded) .controls {
    padding: 64px 10px 14px;
  }

  .player-layout:not(.is-expanded) .transport {
    gap: 4px;
    padding: 6px;
  }

  .player-layout:not(.is-expanded) .cover-wrap {
    width: min(120px, 82%);
  }

  .player-layout:not(.is-expanded) .song-copy h1 {
    font-size: 1.18rem;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .live-status {
    justify-content: flex-start;
  }

  .player-stage,
  .controls {
    padding: 18px;
  }

  .player-stage {
    min-height: 470px;
  }

  .cover-wrap {
    width: min(250px, 82%);
  }

  .song-copy h1 {
    font-size: 2.25rem;
  }

  .transport {
    grid-template-columns: 48px 62px 48px;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }
}

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

@keyframes light-sweep {
  0%,
  100% {
    transform: translateX(-50%) rotate(calc(var(--beam-angle) - 5deg));
    opacity: 0.18;
  }

  50% {
    transform: translateX(-50%) rotate(calc(var(--beam-angle) + 5deg));
    opacity: 0.38;
  }
}

@keyframes gold-border-travel {
  from { background-position: 0% 20%; }
  to { background-position: 100% 80%; }
}

@keyframes ambient-sway {
  from { transform: rotate(-16deg) translateX(-3%); opacity: 0.3; }
  to { transform: rotate(12deg) translateX(3%); opacity: 0.7; }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent), transparent 72%);
  }

  50% {
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent), transparent 88%);
  }
}
