:root {
  color-scheme: dark light;
  --bg: oklch(0.14 0.03 236);
  --bg-2: oklch(0.18 0.04 232);
  --panel: oklch(0.21 0.03 236 / 0.88);
  --panel-strong: oklch(0.24 0.04 234 / 0.95);
  --line: oklch(0.42 0.06 236 / 0.55);
  --line-soft: oklch(0.45 0.05 230 / 0.3);
  --ink: oklch(0.95 0.01 244);
  --muted: oklch(0.78 0.03 235);
  --brand: oklch(0.8 0.17 165);
  --brand-2: oklch(0.76 0.13 245);
  --accent: oklch(0.86 0.17 92);
  --danger: oklch(0.72 0.2 24);
  --shadow-soft: 0 16px 40px oklch(0.06 0.01 240 / 0.42);
  --shadow-deep: 0 24px 60px oklch(0.05 0.02 240 / 0.58);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-fast: cubic-bezier(0.25, 1, 0.5, 1);
  --mx: 50vw;
  --my: 40vh;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% -12%, oklch(0.79 0.11 165 / 0.2), transparent 32%),
    radial-gradient(circle at 92% -2%, oklch(0.75 0.11 245 / 0.2), transparent 34%),
    linear-gradient(150deg, var(--bg) 0%, var(--bg-2) 42%, oklch(0.12 0.02 244) 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(500px circle at var(--mx) var(--my), oklch(0.84 0.14 200 / 0.12), transparent 58%),
    radial-gradient(280px circle at calc(var(--mx) + 6vw) calc(var(--my) - 3vh), oklch(0.78 0.12 165 / 0.1), transparent 62%);
  transition: background-position 120ms linear;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  padding: 0.62rem 0.9rem;
  background: var(--accent);
  color: oklch(0.2 0.03 242);
  border-radius: 10px;
  z-index: 100;
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus-visible {
  top: 10px;
}

.progress-rail {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 60;
  background: oklch(1 0 0 / 0.08);
}

.progress-rail span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent));
  transition: width 120ms linear;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(68px);
  pointer-events: none;
  z-index: -3;
}

.ambient-a {
  width: min(54vw, 460px);
  height: min(54vw, 460px);
  top: 20vh;
  left: -28vw;
  background: oklch(0.72 0.16 165 / 0.28);
  animation: drift-a 20s var(--ease-out) infinite;
}

.ambient-b {
  width: min(56vw, 500px);
  height: min(56vw, 500px);
  right: -30vw;
  top: 58vh;
  background: oklch(0.68 0.14 245 / 0.3);
  animation: drift-b 24s var(--ease-out) infinite;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.12;
  background-image: radial-gradient(oklch(1 0 0 / 0.35) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

.fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.72;
}

.cursor-aura {
  position: fixed;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle, oklch(0.87 0.15 210 / 0.92) 0%, oklch(0.8 0.12 200 / 0.3) 52%, transparent 72%);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-100vw, -100vh, 0);
  transition: opacity 180ms var(--ease-fast);
}

.shell {
  width: min(1040px, calc(100vw - 1rem));
  margin: 0.65rem auto 1.8rem;
  display: grid;
  gap: 0.66rem;
  position: relative;
  z-index: 5;
}

.shell > * {
  opacity: 0;
  transform: translateY(10px);
}

.shell.is-ready > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.shell.is-ready > *:nth-child(1) {
  transition-delay: 20ms;
}

.shell.is-ready > *:nth-child(2) {
  transition-delay: 80ms;
}

.shell.is-ready > *:nth-child(3) {
  transition-delay: 140ms;
}

.shell.is-ready > *:nth-child(4) {
  transition-delay: 180ms;
}

.shell.is-ready > *:nth-child(5) {
  transition-delay: 220ms;
}

.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.5rem 0.68rem;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: oklch(0.17 0.03 236 / 0.72);
  backdrop-filter: blur(6px);
}

.brand-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.54rem;
  color: var(--ink);
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-size: clamp(0.86rem, 2.5vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  position: relative;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08rem;
  font-family: "Courier New", "IBM Plex Mono", "Fira Code", monospace;
  font-size: clamp(1.04rem, 2.9vw, 1.96rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-type {
  display: inline-flex;
  align-items: baseline;
  gap: 0.02rem;
  white-space: nowrap;
}

.brand-type-text {
  display: inline-flex;
  align-items: baseline;
}

.brand-prompt,
.brand-name {
  color: oklch(0.83 0.14 152);
  text-shadow: 0 0 8px oklch(0.71 0.12 155 / 0.2);
}

.brand-dotnet {
  color: oklch(0.83 0.15 86);
  text-shadow: 0 0 8px oklch(0.79 0.14 94 / 0.18);
}

.brand-type-cursor {
  display: inline-block;
  width: 0.62ch;
  color: oklch(0.84 0.14 92);
  transform: translateY(-0.02em);
  animation: brand-cursor-blink 920ms steps(1, end) infinite;
}

.brand-type-cursor::before {
  content: "_";
}

@keyframes brand-cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.brand-home-link::after {
  content: "✦";
  position: absolute;
  top: -0.45rem;
  right: -0.7rem;
  font-size: 0.66rem;
  opacity: 0;
  transform: translateY(4px) scale(0.85);
  transition: opacity 180ms var(--ease-fast), transform 180ms var(--ease-fast);
  pointer-events: none;
}

.brand-home-link:hover::after,
.brand-home-link:focus-visible::after {
  opacity: 0.9;
  transform: translateY(0) scale(1);
}

.brand-actions > span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.x-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.76rem;
  border-radius: 999px;
  border: 1px solid oklch(0.62 0.08 210 / 0.7);
  background: linear-gradient(135deg, oklch(0.25 0.05 230 / 0.96), oklch(0.3 0.08 210 / 0.96));
  color: oklch(0.96 0.02 240);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 160ms var(--ease-fast), box-shadow 160ms var(--ease-fast), border-color 160ms var(--ease-fast);
  font-family: "Manrope", sans-serif;
  position: static;
}

.x-follow-btn::after {
  content: none;
}

  .x-follow-btn:hover,
  .x-follow-btn:focus-visible {
    transform: translateY(-1px);
    border-color: oklch(0.78 0.13 200 / 0.9);
    box-shadow: 0 7px 14px oklch(0.08 0.02 240 / 0.3);
  }

.category-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.38rem 0.12rem 0.22rem;
  scrollbar-width: thin;
}

.site-footer {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: oklch(0.17 0.03 236 / 0.62);
  padding: 0.78rem 0.86rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: oklch(0.76 0.03 234);
  font-size: 0.85rem;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: oklch(0.78 0.11 165);
  text-decoration: none;
  font-weight: 700;
  margin-left: 0.22rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.affiliate-disclosure {
  margin: 0.34rem auto 0;
  max-width: 72ch;
  color: oklch(0.73 0.03 232);
  font-size: 0.78rem;
  line-height: 1.4;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: auto;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid oklch(0.52 0.07 232 / 0.5);
  background: oklch(0.2 0.03 236 / 0.92);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: transform 150ms var(--ease-fast), border-color 150ms var(--ease-fast), color 150ms var(--ease-fast), background 150ms var(--ease-fast);
}

.category-chip:hover {
  transform: translateY(-1px);
  border-color: oklch(0.74 0.12 165 / 0.75);
  color: var(--ink);
  background: oklch(0.24 0.04 236 / 0.95);
  box-shadow: none;
  filter: none;
}

.category-chip.is-active {
  border-color: oklch(0.8 0.15 165 / 0.95);
  color: oklch(0.94 0.02 240);
  background: linear-gradient(120deg, oklch(0.35 0.08 186 / 0.95), oklch(0.33 0.08 238 / 0.95));
}

@media (max-width: 420px) {
  .brand-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-actions {
    width: 100%;
    justify-content: space-between;
  }

  .brand-actions > span {
    display: none;
  }

  .x-follow-btn {
    min-height: 34px;
    padding: 0.4rem 0.62rem;
    font-size: 0.72rem;
  }

  .brand-wordmark {
    font-size: clamp(0.92rem, 6vw, 1.35rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-type {
    animation: none;
  }

  .brand-type-cursor {
    animation: none;
    opacity: 0.7;
  }
}

.mast,
.control-panel,
.lead-panel,
.ticker-panel,
.subscribe-panel,
.lane {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--panel);
}

.mast {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mast::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, oklch(0.78 0.12 165 / 0.12), transparent 42%),
    linear-gradient(315deg, oklch(0.75 0.11 245 / 0.1), transparent 48%);
  pointer-events: none;
}

.kicker {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent);
}

.mast h1 {
  margin: 0.3rem 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.42rem, 7.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 24ch;
}

.mast-copy {
  margin: 0.56rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
  max-width: 54ch;
}

.mast-meta {
  display: grid;
  gap: 0.35rem;
  padding: 0.58rem 0.68rem;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: oklch(0.16 0.03 236 / 0.62);
}

.live-indicator,
.update-note {
  margin: 0;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 oklch(0.79 0.14 165 / 0.7);
  animation: ping 2s infinite;
}

.update-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.control-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.58rem;
}

.control-panel-passive {
  display: block;
}

.control-panel-passive .status {
  margin: 0.1rem 0;
}

.brand-signature {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background:
    linear-gradient(120deg, oklch(0.21 0.03 236 / 0.9), oklch(0.19 0.03 236 / 0.9)),
    radial-gradient(circle at 22% 32%, oklch(0.82 0.11 165 / 0.18), transparent 58%);
  padding: 0.56rem 0.72rem;
}

.brand-signature p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.brand-signature strong {
  color: var(--ink);
  letter-spacing: 0.08em;
}

button,
select,
input {
  min-height: 46px;
  width: 100%;
  border-radius: 11px;
  border: 1px solid oklch(0.46 0.05 232 / 0.58);
  background: oklch(0.25 0.03 236);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button {
  border: 0;
  color: oklch(0.2 0.03 238);
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 20px oklch(0.32 0.08 240 / 0.44);
  cursor: pointer;
  transition: transform 160ms var(--ease-fast), filter 160ms var(--ease-fast), box-shadow 180ms var(--ease-fast);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px oklch(0.32 0.08 240 / 0.5);
  filter: brightness(1.04);
}

button:active {
  transform: translateY(1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

button.is-loading {
  position: relative;
  padding-right: 2.25rem;
}

button.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.72rem;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  border: 2px solid oklch(0.18 0.03 240 / 0.35);
  border-top-color: oklch(0.24 0.03 240 / 0.86);
  animation: spin 640ms linear infinite;
}

button:focus-visible,
select:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid oklch(0.85 0.16 95 / 0.95);
  outline-offset: 2px;
}

.status {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.45;
  transition: color 220ms var(--ease-fast);
}

.status[data-state="loading"] {
  color: oklch(0.89 0.04 96);
}

.status[data-state="error"] {
  color: var(--danger);
}

.status[data-state="ready"] {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.66rem;
  min-width: 0;
  align-items: start;
}

.feature-grid > * {
  min-width: 0;
}

.lead-panel {
  background: var(--panel-strong);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  container-type: inline-size;
  transform-style: preserve-3d;
}

.lead-visual {
  position: relative;
  min-height: clamp(190px, 34vh, 300px);
  background: linear-gradient(140deg, oklch(0.33 0.05 234), oklch(0.24 0.03 236));
  overflow: hidden;
}

.lead-visual::before {
  content: "www.cmadrid.net";
  position: absolute;
  right: 0.6rem;
  bottom: 0.38rem;
  color: oklch(0.91 0.03 240 / 0.2);
  font-size: clamp(0.72rem, 2.7vw, 1.05rem);
  letter-spacing: 0.06em;
  font-family: "Syne", sans-serif;
  z-index: 1;
  pointer-events: none;
}

.lead-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, oklch(0.16 0.03 236 / 0) 0%, oklch(0.16 0.03 236 / 0.86) 92%);
  pointer-events: none;
}

.lead-visual img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 720ms var(--ease-out), filter 720ms var(--ease-out);
  will-change: transform;
}

.lead-panel:hover .lead-visual img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.04);
}

.lead-body {
  display: grid;
  gap: 0.55rem;
  padding: 0.78rem;
}

.source-pill {
  width: max-content;
  margin: 0;
  padding: 0.23rem 0.58rem;
  border-radius: 999px;
  background: oklch(0.75 0.11 165 / 0.22);
  color: oklch(0.9 0.1 160);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.impact-tag {
  width: max-content;
  margin: 0;
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  border: 1px solid oklch(0.76 0.1 165 / 0.45);
  background: oklch(0.78 0.09 165 / 0.14);
  color: oklch(0.86 0.1 165);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.22rem, 5vw, 2.1rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.lead-title a,
.highlight-link,
.timeline-link,
.mosaic-title a {
  color: inherit;
  text-decoration: none;
}

.lead-title a:hover,
.highlight-link:hover,
.timeline-link:hover,
.mosaic-title a:hover {
  color: oklch(0.88 0.11 222);
}

.lead-summary {
  margin: 0;
  font-family: "Newsreader", serif;
  color: oklch(0.88 0.03 233);
  font-size: 0.97rem;
  line-height: 1.44;
}

.editor-angle {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  border-left: 2px solid oklch(0.74 0.1 165 / 0.55);
  padding-left: 0.52rem;
}

.meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.28rem 0.55rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

.share-btn {
  width: auto;
  min-height: 30px;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  border: 1px solid oklch(0.52 0.07 232 / 0.5);
  background: oklch(0.2 0.03 236 / 0.92);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 150ms var(--ease-fast), border-color 150ms var(--ease-fast), color 150ms var(--ease-fast), background 150ms var(--ease-fast);
}

.source-link-pill:hover {
  transform: translateY(-1px);
  border-color: oklch(0.74 0.12 165 / 0.75);
  color: var(--ink);
  background: oklch(0.24 0.04 236 / 0.95);
}

.affiliate-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  border: 1px solid oklch(0.75 0.11 90 / 0.46);
  background: oklch(0.8 0.12 95 / 0.15);
  color: oklch(0.9 0.1 95);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 150ms var(--ease-fast), border-color 150ms var(--ease-fast), background 150ms var(--ease-fast), color 150ms var(--ease-fast);
}

.affiliate-pill:hover,
.affiliate-pill:focus-visible {
  transform: translateY(-1px);
  border-color: oklch(0.85 0.13 95 / 0.82);
  background: oklch(0.84 0.14 95 / 0.24);
  color: oklch(0.95 0.08 95);
}

.newsletter-cta {
  min-height: 30px;
  width: auto;
  padding: 0.25rem 0.56rem;
  border-radius: 999px;
  background: linear-gradient(120deg, oklch(0.82 0.13 165), oklch(0.8 0.1 245));
  color: oklch(0.2 0.03 238);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
}

.side-panel {
  display: grid;
  gap: 0.66rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.ticker-panel,
.subscribe-panel {
  padding: 0.72rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.ticker-panel h2,
.subscribe-panel h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
}

.ticker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.ticker-toggle {
  min-height: 34px;
  width: auto;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker {
  margin-top: 0.52rem;
  border-radius: 10px;
  background: oklch(0.23 0.03 236 / 0.94);
  border: 1px solid oklch(0.44 0.05 232 / 0.34);
  padding: 0.5rem 0.56rem;
  overflow: hidden;
  color: oklch(0.91 0.02 232);
  font-size: 0.78rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 1.8rem;
  padding-right: 1.8rem;
  animation: ticker-loop 78s linear infinite;
}

.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track,
.ticker.is-paused .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  white-space: nowrap;
}

.highlights {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.54rem;
}

.highlights li {
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed oklch(0.5 0.05 235 / 0.45);
}

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

.highlight-link {
  display: block;
  font-size: 0.9rem;
  line-height: 1.34;
  overflow-wrap: anywhere;
}

.highlights small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.subscribe-panel p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.subscribe-kicker {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: oklch(0.86 0.15 90);
}

.subscribe-row {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.subscribe-status {
  min-height: 1.1rem;
  margin: 0.42rem 0 0;
  color: oklch(0.86 0.11 167);
  font-size: 0.9rem;
  line-height: 1.45;
}

.subscribe-trust {
  margin: 0.34rem 0 0;
  color: oklch(0.81 0.05 205);
  font-size: 0.82rem;
  line-height: 1.4;
}

.subscribe-panel {
  transition: border-color 260ms var(--ease-fast), box-shadow 260ms var(--ease-fast);
}

.subscribe-panel-featured {
  position: relative;
  border-color: oklch(0.66 0.09 200 / 0.65);
  background:
    radial-gradient(circle at 12% 8%, oklch(0.82 0.14 165 / 0.2), transparent 46%),
    radial-gradient(circle at 88% 90%, oklch(0.82 0.14 95 / 0.16), transparent 40%),
    linear-gradient(145deg, oklch(0.23 0.04 232 / 0.98), oklch(0.2 0.03 236 / 0.97));
  box-shadow: 0 16px 34px oklch(0.07 0.02 240 / 0.34);
}

.subscribe-panel-featured h2 {
  font-size: clamp(1.08rem, 2.6vw, 1.3rem);
}

.subscribe-panel-featured .subscribe-row button {
  background: linear-gradient(125deg, oklch(0.84 0.15 160), oklch(0.83 0.14 95));
  color: oklch(0.19 0.03 235);
  box-shadow: 0 10px 20px oklch(0.27 0.08 170 / 0.4);
}

.subscribe-panel-featured .subscribe-row button:hover {
  box-shadow: 0 13px 24px oklch(0.26 0.08 170 / 0.48);
}

.subscribe-article-panel {
  border-color: oklch(0.62 0.08 200 / 0.55);
  background:
    radial-gradient(circle at 16% 12%, oklch(0.8 0.12 165 / 0.16), transparent 42%),
    linear-gradient(140deg, oklch(0.2 0.03 236 / 0.94), oklch(0.18 0.03 236 / 0.94));
}

.subscribe-article-panel .lane-head h2 {
  font-size: 1.08rem;
}

.subscribe-article-panel .subscribe-row button {
  background: linear-gradient(125deg, oklch(0.84 0.14 160), oklch(0.82 0.14 98));
  box-shadow: 0 9px 18px oklch(0.27 0.08 170 / 0.32);
}

.subscribe-article-panel .subscribe-row button:hover {
  box-shadow: 0 12px 20px oklch(0.27 0.08 170 / 0.42);
}

.subscribe-panel.is-success {
  border-color: oklch(0.78 0.11 165 / 0.8);
  box-shadow: 0 0 0 2px oklch(0.8 0.12 165 / 0.25);
}

.inline-subscribe {
  display: grid;
  gap: 0.65rem;
  padding: 0.78rem;
  border: 1px solid oklch(0.56 0.08 200 / 0.44);
  border-radius: 12px;
  background:
    radial-gradient(circle at 8% 20%, oklch(0.82 0.13 165 / 0.14), transparent 44%),
    linear-gradient(138deg, oklch(0.23 0.04 232 / 0.95), oklch(0.2 0.03 236 / 0.95));
}

.inline-subscribe-copy h2 {
  margin: 0.24rem 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.06rem, 2.8vw, 1.28rem);
  line-height: 1.1;
}

.inline-subscribe-copy p {
  margin: 0.34rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.inline-subscribe-form {
  margin-top: 0.08rem;
}

.inline-subscribe-form button {
  min-height: 40px;
  width: auto;
  min-width: 122px;
  padding: 0.48rem 0.74rem;
  font-size: 0.82rem;
  border-radius: 10px;
  box-shadow: 0 7px 14px oklch(0.28 0.07 240 / 0.28);
}

.inline-subscribe-form button:hover {
  box-shadow: 0 9px 16px oklch(0.28 0.07 240 / 0.34);
}

.subscribe-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: oklch(0.08 0.02 240 / 0.68);
  backdrop-filter: blur(6px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-fast);
}

.subscribe-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.subscribe-popup-card {
  width: min(480px, calc(100vw - 1rem));
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: oklch(0.19 0.03 236 / 0.98);
  padding: 0.9rem;
  box-shadow: var(--shadow-deep);
  position: relative;
}

.subscribe-popup-card h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}

.subscribe-popup-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.popup-close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 44px;
  min-height: 44px;
  border-radius: 50%;
  padding: 0;
  font-size: 1rem;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.66rem;
}

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

.lane {
  padding: 0.72rem;
}

.lane-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.lane-head h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.02rem;
}

.lane-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.timeline {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.54rem;
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 0.24rem;
  padding: 0.56rem 0.56rem 0.56rem 0.9rem;
  border-radius: 10px;
  border: 1px solid oklch(0.44 0.05 233 / 0.34);
  background: oklch(0.19 0.02 236 / 0.64);
  transition: transform 200ms var(--ease-fast), border-color 200ms var(--ease-fast);
  transform-style: preserve-3d;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.8rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 oklch(0.78 0.14 165 / 0.45);
  animation: pulse-dot 2.4s infinite;
}

.timeline-item:hover {
  transform: translateX(3px);
  border-color: oklch(0.58 0.08 230 / 0.55);
}

.timeline-item:focus-within {
  border-color: oklch(0.73 0.12 188 / 0.8);
  box-shadow: 0 0 0 2px oklch(0.73 0.12 188 / 0.24);
}

.timeline-link {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.31;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.timeline-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.mosaic {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.mosaic-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid oklch(0.45 0.05 233 / 0.34);
  background: oklch(0.2 0.03 236 / 0.9);
  display: grid;
  align-content: start;
  transition: transform 220ms var(--ease-fast), border-color 220ms var(--ease-fast), box-shadow 220ms var(--ease-fast);
  container-type: inline-size;
  transform-style: preserve-3d;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(10px);
}

.reveal-on-scroll.in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 420ms var(--ease-out),
    transform 420ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.tilt-reactive {
  will-change: transform;
}

.mosaic-card:hover {
  transform: translateY(-3px);
  border-color: oklch(0.6 0.08 230 / 0.58);
  box-shadow: var(--shadow-soft);
}

.mosaic-media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, oklch(0.34 0.05 234), oklch(0.25 0.03 236));
}

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

.mosaic-body {
  display: grid;
  gap: 0.46rem;
  padding: 0.66rem;
}

.mosaic-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.97rem;
  line-height: 1.24;
  text-wrap: pretty;
}

.mosaic-summary {
  margin: 0;
  color: oklch(0.86 0.02 234);
  font-size: 0.87rem;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.editor-note {
  margin-top: 0.4rem;
  padding: 0.58rem 0.66rem;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: oklch(0.2 0.03 236 / 0.72);
}

.editor-note h2 {
  margin: 0 0 0.3rem;
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
}

.editor-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.empty {
  margin: 0;
  padding: 1rem;
  color: var(--muted);
}

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

@container (min-width: 560px) {
  .lead-body {
    padding: 0.9rem;
  }

  .meta {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}

@container (min-width: 360px) {
  .mosaic-title {
    font-size: 1.02rem;
  }

  .mosaic-summary {
    font-size: 0.9rem;
  }
}

@media (min-width: 640px) {
  .shell {
    width: min(1040px, calc(100vw - 1.35rem));
    margin: 0.88rem auto 2.2rem;
    gap: 0.74rem;
  }

  .mast {
    padding: 0.95rem;
    gap: 0.9rem;
  }

  .kicker {
    font-size: 0.73rem;
  }

  .brand-strip {
    padding: 0.52rem 0.76rem;
  }

  .brand-actions > span {
    font-size: 0.78rem;
  }

  .category-strip {
    padding-inline: 0;
  }

  .control-panel {
    grid-template-columns: 1fr 1fr;
  }

  .status {
    grid-column: 1 / -1;
  }

  .subscribe-row {
    grid-template-columns: 1fr auto;
  }

  .subscribe-row button {
    width: auto;
    min-width: 140px;
  }

  .mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  .fx-canvas,
  .cursor-aura,
  .ambient {
    display: none;
  }

  .shell {
    width: min(100vw - 0.7rem, 1200px);
    margin: 0.5rem auto 1.25rem;
    gap: 0.56rem;
  }

  .brand-strip,
  .mast,
  .control-panel,
  .lead-panel,
  .ticker-panel,
  .subscribe-panel,
  .lane,
  .site-footer {
    border-radius: 10px;
  }

  .mast {
    padding: 0.72rem;
    gap: 0.66rem;
  }

  .mast h1 {
    font-size: clamp(1.2rem, 6.6vw, 1.7rem);
    max-width: 100%;
  }

  .mast-copy {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .kicker {
    letter-spacing: 0.1em;
  }

  .control-panel {
    gap: 0.45rem;
    padding: 0.5rem;
  }

  button,
  select,
  input {
    min-height: 46px;
    font-size: 16px;
  }

  .status {
    font-size: 0.76rem;
  }

  .lead-visual {
    min-height: clamp(180px, 26vh, 230px);
  }

  .lead-body,
  .mosaic-body,
  .lane,
  .ticker-panel,
  .subscribe-panel {
    padding: 0.6rem;
  }

  .feature-grid {
    gap: 0.72rem;
  }

  .side-panel {
    gap: 0.5rem;
  }

  .ticker-panel,
  .subscribe-panel {
    background: oklch(0.2 0.03 236 / 0.78);
    border-color: oklch(0.42 0.05 232 / 0.24);
  }

  .ticker-panel h2,
  .subscribe-panel h2 {
    font-size: 0.9rem;
  }

  .lead-summary,
  .mosaic-summary {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .timeline-link,
  .highlight-link {
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .ticker {
    font-size: 0.74rem;
    letter-spacing: 0.02em;
  }

  .brand-signature p,
  .editor-angle {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .x-follow-btn {
    min-height: 32px;
    padding: 0.35rem 0.58rem;
    font-size: 0.7rem;
  }

  .delight-toast {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.7rem;
    max-width: none;
    font-size: 0.79rem;
  }
}

@media (min-width: 900px) {
  .shell {
    width: min(1040px, calc(100vw - 2rem));
    margin: 1.05rem auto 2.6rem;
    gap: 0.86rem;
  }

  .mast {
    grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.8fr);
    align-items: end;
    padding: 1rem;
    border-radius: 16px;
  }

  .mast h1 {
    font-size: clamp(1.58rem, 4.2vw, 3rem);
  }

  .brand-strip {
    border-radius: 12px;
    padding: 0.56rem 0.88rem;
  }

  .category-chip {
    min-height: 42px;
    font-size: 0.74rem;
  }

  .mast-meta {
    width: min(340px, 100%);
    justify-self: end;
  }

  .control-panel {
    grid-template-columns: auto minmax(220px, 300px) 1fr;
    align-items: center;
    gap: 0.62rem;
    padding: 0.62rem;
  }

  .control-panel button,
  .control-panel select {
    width: auto;
  }

  .status {
    grid-column: auto;
    justify-self: end;
    text-align: right;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1.9fr) minmax(300px, 0.5fr);
    gap: 0.86rem;
  }

  .side-panel {
    max-width: 360px;
    width: 100%;
    justify-self: end;
    align-self: start;
  }

  .lead-visual {
    min-height: clamp(230px, 38vh, 390px);
  }

  .news-layout {
    grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
    gap: 0.86rem;
  }

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

  .lane,
  .ticker-panel,
  .subscribe-panel {
    padding: 0.82rem;
  }

  .lane-head h2 {
    font-size: 1.1rem;
  }

  .lane-head p {
    font-size: 0.8rem;
  }
}

@media (min-width: 1120px) {
  .mosaic {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .mosaic-card.hero {
    grid-column: span 7;
  }

  .mosaic-card.wide {
    grid-column: span 5;
  }

  .mosaic-card.compact {
    grid-column: span 4;
  }

  .mosaic-card.tall {
    grid-column: span 6;
  }
}

@media (min-width: 1360px) {
  .shell {
    width: min(1080px, calc(100vw - 2.4rem));
  }

  .mast {
    padding: 1.16rem;
  }

  .lead-body {
    padding: 1rem;
  }
}

@media (hover: none) {
  .lead-panel:hover .lead-visual img,
  .mosaic-card:hover,
  .timeline-item:hover,
  button:hover {
    transform: none;
    filter: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .shell > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .ticker-track {
    animation: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .fx-canvas,
  .cursor-aura {
    display: none !important;
  }

  .delight-toast {
    transform: none !important;
  }
}

@media (pointer: coarse) {
  .fx-canvas,
  .cursor-aura,
  .ambient {
    display: none !important;
  }

  .shell {
    width: min(100vw - 0.7rem, 1200px);
    margin: 0.5rem auto 1.2rem;
    gap: 0.56rem;
  }

  .mast {
    grid-template-columns: 1fr !important;
    gap: 0.66rem;
    padding: 0.72rem;
  }

  .mast-meta {
    justify-self: start !important;
    width: 100%;
  }

  .control-panel {
    grid-template-columns: 1fr !important;
  }

  .feature-grid,
  .news-layout,
  .mosaic {
    grid-template-columns: 1fr !important;
  }

  .mosaic-card.hero,
  .mosaic-card.wide,
  .mosaic-card.compact,
  .mosaic-card.tall {
    grid-column: span 1 !important;
  }

  .status {
    grid-column: auto !important;
    justify-self: start !important;
    text-align: left !important;
  }

  button,
  select,
  input {
    width: 100%;
    min-height: 46px;
    font-size: 16px;
  }

  .inline-subscribe {
    padding: 0.66rem;
  }

  .inline-subscribe-copy h2 {
    font-size: 1rem;
  }

  .inline-subscribe-copy p {
    font-size: 0.86rem;
  }
}

.article-shell {
  max-width: 980px;
}

.article-card {
  padding: 1rem;
}

.article-title {
  margin: 0.2rem 0 0.8rem;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.article-meta {
  margin-bottom: 0.9rem;
}

.article-figure {
  margin: 0 0 0.9rem;
}

.article-figure img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  display: block;
}

.article-summary {
  font-size: 1.03rem;
  color: var(--ink);
  line-height: 1.62;
  overflow-wrap: anywhere;
  max-width: 68ch;
}

.article-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.terminal-affiliate {
  margin-top: 0.82rem;
  border: 1px solid oklch(0.58 0.18 145 / 0.45);
  border-radius: 10px;
  background: #1a1a1a;
  overflow: auto;
}

.terminal-affiliate pre {
  margin: 0;
  padding: 0.72rem 0.8rem;
  color: #00ff00;
  font-family: "IBM Plex Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.related-lane {
  padding: 1rem;
}

.related-timeline {
  margin-top: 0.7rem;
}

.archive-lane {
  padding: 0.9rem;
}

.delight-toast {
  position: fixed;
  right: 0.8rem;
  bottom: 0.9rem;
  z-index: 120;
  max-width: min(84vw, 360px);
  padding: 0.62rem 0.72rem;
  border: 1px solid oklch(0.56 0.08 188 / 0.52);
  border-radius: 12px;
  background:
    linear-gradient(130deg, oklch(0.23 0.03 236 / 0.95), oklch(0.2 0.03 236 / 0.95)),
    radial-gradient(circle at 22% 20%, oklch(0.82 0.12 165 / 0.2), transparent 50%);
  box-shadow: var(--shadow-soft);
  color: oklch(0.93 0.03 236);
  font-size: 0.82rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.delight-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms var(--ease-fast), transform 220ms var(--ease-fast);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: oklch(0.97 0.01 232);
    --bg-2: oklch(0.94 0.02 222);
    --panel: oklch(0.99 0.01 232 / 0.92);
    --panel-strong: oklch(0.985 0.01 228 / 0.98);
    --line: oklch(0.74 0.03 228 / 0.65);
    --line-soft: oklch(0.8 0.02 228 / 0.55);
    --ink: oklch(0.24 0.03 240);
    --muted: oklch(0.46 0.03 232);
    --shadow-soft: 0 14px 34px oklch(0.58 0.03 232 / 0.18);
    --shadow-deep: 0 20px 44px oklch(0.57 0.03 232 / 0.22);
  }

  body {
    background:
      radial-gradient(circle at 9% -8%, oklch(0.87 0.06 165 / 0.28), transparent 36%),
      radial-gradient(circle at 92% 0%, oklch(0.84 0.06 245 / 0.26), transparent 38%),
      linear-gradient(155deg, var(--bg) 0%, var(--bg-2) 48%, oklch(0.92 0.01 236) 100%);
  }

  body::before {
    background:
      radial-gradient(520px circle at var(--mx) var(--my), oklch(0.69 0.09 205 / 0.1), transparent 58%),
      radial-gradient(320px circle at calc(var(--mx) + 5vw) calc(var(--my) - 2vh), oklch(0.73 0.09 165 / 0.08), transparent 62%);
  }

  .progress-rail {
    background: oklch(0.2 0.02 240 / 0.08);
  }

  .brand-strip,
  .mast-meta,
  .ticker,
  .timeline-item,
  .mosaic-card,
  .source-link-pill,
  .category-chip,
  .subscribe-popup-card {
    background: oklch(0.99 0.01 232 / 0.95);
  }

  .lead-visual,
  .mosaic-media {
    background: linear-gradient(140deg, oklch(0.9 0.03 228), oklch(0.82 0.03 224));
  }

  button,
  select,
  input {
    background: oklch(0.99 0.01 232);
    color: oklch(0.24 0.03 240);
    border-color: oklch(0.72 0.03 228 / 0.7);
  }

  .lead-summary,
  .mosaic-summary {
    color: oklch(0.34 0.03 236);
  }

  .editor-note {
    background: oklch(0.985 0.01 232 / 0.95);
  }

  .highlights li {
    border-bottom: 1px dashed oklch(0.7 0.03 232 / 0.52);
  }
}

@media (max-width: 820px) {
  .article-card,
  .related-lane {
    padding: 0.72rem;
  }

  .article-summary {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .article-title {
    font-size: clamp(1.16rem, 6.1vw, 1.62rem);
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 oklch(0.79 0.14 165 / 0.65);
  }
  70% {
    box-shadow: 0 0 0 10px oklch(0.79 0.14 165 / 0);
  }
  100% {
    box-shadow: 0 0 0 0 oklch(0.79 0.14 165 / 0);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 oklch(0.79 0.14 165 / 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px oklch(0.79 0.14 165 / 0);
  }
  100% {
    box-shadow: 0 0 0 0 oklch(0.79 0.14 165 / 0);
  }
}

@keyframes drift-a {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-26px) scale(1.06);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(22px) scale(0.95);
  }
}

@keyframes ticker-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
