/* ──────────────────────────────────────────────────────────
   Base / Design Tokens
   ────────────────────────────────────────────────────────── */
:root {
  --bg: #07070e;
  --bg-card: #0d0d1b;
  --bg-section: rgb(10, 10, 25);

  --text: #dde0ef;
  --text-dim: #6b6b88;
  --text-muted: #3a3a55;
  --text-tag: #a89ff5;
  --white: #fff;

  --accent: #7c6ff0;
  --accent-mid: rgba(124, 111, 240, 0.25);
  --accent-glow: rgba(124, 111, 240, 0.18);
  --accent-faint: rgba(124, 111, 240, 0.07);

  --border: rgba(140, 130, 255, 0.1);
  --border-soft: rgba(140, 130, 255, 0.16);
  --border-control: rgba(140, 130, 255, 0.2);
  --border-action: rgba(140, 130, 255, 0.22);
  --border-hover: rgba(140, 130, 255, 0.35);
  --border-focus: rgba(221, 224, 239, 0.75);

  --surface-solid: rgba(13, 13, 27, 1);
  --surface-card-translucent: rgba(13, 13, 27, 0.75);
  --surface-control: rgba(13, 13, 27, 0.8);
  --surface-page-glass: rgba(7, 7, 14, 0.34);
  --surface-backdrop: rgba(0, 0, 0, 0.6);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --nav-h: 56px;
  --content-max: 1200px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: dark;
  font-size: 16px;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.stage-open {
  overflow: hidden;
}

/* The :not(:has(:fullscreen)) guard drops the dimmer while an embedded demo is
   in the browser's fullscreen mode — otherwise it tints the fullscreened iframe
   ~60% black. */
body.stage-open:not(:has(:fullscreen))::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 499;
  background: var(--surface-backdrop);
}

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

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

button {
  font: inherit;
}

/* Anchors land below the fixed navbar instead of under it. */
.snap-section {
  scroll-margin-top: var(--nav-h);
}

/* Visual separation between the full-bleed sections: a hairline divider plus an
   alternating background tone so each one reads as its own page rather than a
   continuous dark expanse. */
.work-section,
.notes-section,
.about-section {
  position: relative;
  border-top: 1px solid var(--border-soft);
}

.work-section::before,
.notes-section::before,
.about-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 111, 240, 0.45) 50%,
    transparent 100%
  );
}

/* ──────────────────────────────────────────────────────────
   Shared Utilities
   ────────────────────────────────────────────────────────── */
.tag {
  padding: 0.15rem 0.45rem;
  border: 1px solid var(--accent-mid);
  border-radius: 4px;
  background: var(--accent-faint);
  color: var(--text-tag);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.contact-link,
.panel-btn,
.slide-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-link {
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text-dim);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.contact-link:hover,
.panel-btn:hover,
.slide-arrow:hover {
  border-color: var(--accent);
  color: var(--text);
}

.section-title {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-sub {
  margin-bottom: 1rem;
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* ──────────────────────────────────────────────────────────
   Hero / Big Bang Intro
   ────────────────────────────────────────────────────────── */
.cosmos-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100dvh;
  background: var(--bg);
  pointer-events: none;
}

#app {
  position: relative;
  z-index: 1;
}

html.bang-scroll-lock,
html.bang-scroll-lock body,
html.bang-prep,
html.bang-prep body {
  overflow: hidden;
}

/* Pre-paint hero hide, applied by an inline <head> script and cleared once the
   intro animation reveals the page. Mirrors body.bang-hide #app. */
html.bang-prep #app {
  visibility: hidden;
}

html.scrollbar-hide {
  scrollbar-width: none;
}

html.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

body.bang-hide #app {
  visibility: hidden;
}

.bang-flash {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: radial-gradient(
    circle at 50% 46%,
    #efeaff 0%,
    #d3c9ff 48%,
    #9d8ff0 100%
  );
  opacity: 0;
  pointer-events: none;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-tagline {
  max-width: 32ch;
  margin-top: -0.5rem;
  color: var(--text-dim);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.5;
}

.hero-name {
  background: linear-gradient(
    90deg,
    #c9c3ff 0%,
    #b8b0ff 18%,
    #d4d0ff 30%,
    #f8f6ff 37%,
    #fff 40%,
    #fff 42%,
    #f0eeff 48%,
    #dbd7ff 58%,
    #eeeaff 70%,
    #fff 78%,
    #f4f2ff 85%,
    #c9c3ff 100%
  );
  background-clip: text;
  background-size: 300% auto;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  animation: glisten 8s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-contacts {
  display: flex;
  gap: 0.75rem;
}

.hero-contacts a {
  background: var(--surface-solid);
}

.contact-link {
  width: 44px;
  height: 44px;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  opacity: 0;
  animation: bounce 2s ease-in-out infinite;
  transition: opacity 1.4s ease;
}

.scroll-hint--visible {
  opacity: 1;
}

/* ──────────────────────────────────────────────────────────
   Featured Work
   ────────────────────────────────────────────────────────── */
.work-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90dvh;
  padding: 1.5rem;
  background: var(--bg-section);
}

.work-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.work-head {
  margin-bottom: .8rem;
}

.work-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 1rem;
}

.work-stage {
  position: relative;
  height: 64vh;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow:
    0 0 0 1px rgba(124, 111, 240, 0.05),
    0 0 40px var(--accent-glow),
    0 0 80px rgba(124, 111, 240, 0.05);
  transition: border-radius 0.35s var(--ease-out);
}

.work-stage.stage--expanded {
  position: fixed;
  inset: 0;
  z-index: 500;
  width: 100vw;
  height: 100dvh;
  max-height: none;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.work-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium) ease;
}

.work-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.work-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--bg-card);
}

.panel-overlay.hidden {
  display: none;
}

.panel-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(transparent, rgba(7, 7, 14, 0.7));
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.work-panel:hover .panel-controls,
.work-stage.stage--expanded .panel-controls {
  opacity: 1;
}

/* The controls bar spans the full width of the panel, so leave it transparent to
   pointer events — that keeps the bottom of the demo iframe hoverable. Only the
   buttons (e.g. the fullscreen toggle) re-enable pointer events, and only while
   the bar is visible so the hidden bar never swallows clicks. */
.work-panel:hover .panel-controls > *,
.work-stage.stage--expanded .panel-controls > * {
  pointer-events: auto;
}

.panel-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-control);
  color: var(--text-dim);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.viz-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.viz-placeholder-dot {
  width: 7px;
  height: 7px;
  margin-bottom: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}

.viz-placeholder-sub {
  font-size: 0.65rem;
  opacity: 0.6;
}

/* ──────────────────────────────────────────────────────────
   Quoridor Slideshow
   ────────────────────────────────────────────────────────── */
.slideshow,
.slideshow-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow {
  overflow: hidden;
  background: var(--bg-card);
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.slide-img.active {
  opacity: 1;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-control);
  border-radius: 50%;
  background: var(--surface-card-translucent);
  color: var(--text-dim);
  backdrop-filter: blur(4px);
  transform: translateY(-50%);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.slide-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.slide-arrow--left {
  left: 0.75rem;
}

.slide-arrow--right {
  right: 0.75rem;
}

.slide-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}

.slide-dot {
  width: 5px;
  height: 5px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.slide-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ──────────────────────────────────────────────────────────
   Featured Work — project list
   ────────────────────────────────────────────────────────── */
.work-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.work-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-dim);
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.work-item:hover {
  border-color: var(--border-hover);
  transform: translateX(2px);
}

.work-item.is-active {
  border-color: var(--accent);
  background: var(--accent-faint);
}

.work-item:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}

.work-item-title {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.work-item-tag {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
}

/* ──────────────────────────────────────────────────────────
   Featured Work — detail
   ────────────────────────────────────────────────────────── */
.work-detail {
  margin-top: 1.1rem;
}

.work-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.work-detail-title {
  margin-bottom: 0.4rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.work-detail-desc {
  max-width: 70ch;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

.work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.work-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--border-action);
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.work-btn:hover {
  border-color: var(--accent);
}

.work-btn--primary {
  border-color: transparent;
  background: var(--accent);
  color: var(--white);
}

.work-btn--primary:hover {
  border-color: transparent;
  background: #8b7ef3;
}

/* ──────────────────────────────────────────────────────────
   About
   ────────────────────────────────────────────────────────── */
.about-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60dvh;
  padding: 2rem 1.5rem;
  background: var(--bg-section);
  padding-bottom: 5rem;
}

.about-section .section-title {
  width: 100%;
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.about-photo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo--cat {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  filter:
    drop-shadow(0 0 8px rgba(124, 111, 240, 0.1))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-text a {
  color: var(--accent);
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.about-text a:hover {
  opacity: 0.75;
}

/* ──────────────────────────────────────────────────────────
   Notes
   ────────────────────────────────────────────────────────── */
.notes-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 60dvh;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background: var(--bg);
}

.notes-section > * {
  width: 100%;
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.notes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.notes-empty {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.85rem;
}

.note-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-decoration: none;
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.note-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(124, 111, 240, 0.1);
  transform: translateY(-2px);
}

.note-card-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.note-card-body {
  flex: 1;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.5;
}

.note-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.15rem;
}

.note-card-date {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.note-card-cta {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.note-card:hover .note-card-cta {
  opacity: 0.75;
}

/* ──────────────────────────────────────────────────────────
   Article (individual note page)
   ────────────────────────────────────────────────────────── */
.article-page {
  min-height: 100dvh;
  padding: 4rem 1.5rem 6rem;
  background: var(--bg-section);
}

.article {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.article-back {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.article-back:hover {
  color: var(--accent);
}

.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.article-title {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-meta {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.article-body {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.8;
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body a {
  color: var(--accent);
  text-decoration: none;
}

.article-body a:hover {
  text-decoration: underline;
}

.article-body code {
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  background: var(--accent-faint);
  color: var(--text-tag);
  font-family: var(--mono);
  font-size: 0.85em;
}

/* ──────────────────────────────────────────────────────────
   Top Navbar
   ────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--border);
  background: var(--surface-page-glass);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 0.6s ease;
}

.site-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

body.stage-open .site-nav {
  opacity: 0;
  pointer-events: none;
}

.site-nav-brand {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.site-nav-links a {
  position: relative;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.site-nav-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
}

.site-nav-links a:hover {
  color: var(--text);
}

.site-nav-links a.active {
  color: var(--text);
}

.site-nav-links a.active::after {
  transform: scaleX(1);
}

.site-nav-resume {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-sm);
  background: var(--accent-faint);
  color: var(--text) !important;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.site-nav-resume::after {
  display: none;
}

.site-nav-resume:hover {
  border-color: var(--accent);
  background: var(--accent-mid);
}

@media (max-width: 768px) {
  .site-nav {
    padding: 0 1rem;
  }

  .site-nav-brand {
    display: none;
  }

  .site-nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav-links a {
    font-size: 0.78rem;
  }
}

/* ──────────────────────────────────────────────────────────
   Animations
   ────────────────────────────────────────────────────────── */
@keyframes glisten {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 100% center;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.3);
  }
}

/* ──────────────────────────────────────────────────────────
   Responsive
   ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100dvh;
    padding: 3rem 0;
  }

  .work-section {
    min-height: auto;
    padding: 2.5rem 1rem;
  }

  .work-main {
    grid-template-columns: 1fr;
  }

  .work-stage {
    height: 56vw;
    min-height: 240px;
  }

  .other-section {
    min-height: auto;
    padding: 2.5rem 1rem;
  }

  .about-section {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .photo--cat {
    max-width: 150px;
  }

  .notes-section {
    min-height: auto;
    padding: 1rem 1rem;
  }

  .notes-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cosmos-canvas {
    display: none;
  }
}
