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

:root {
  --bg: #0b0b0c;
  --bg-soft: #111113;
  --fg: #e8e6e1;
  --fg-dim: #8a8780;
  --fg-faint: #4a4842;
  --line: #1f1e1c;
  --accent: #d9c7a1;
  --serif: "Fraunces", "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  cursor: none;
}

@media (hover: none) {
  html,
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' result='noise' /><feDisplacementMap in='SourceGraphic' in2='noise' scale='90' /></filter><rect width='100%' height='100%' filter='url(%23n)' /></svg>");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--fg);
  border-radius: 50%;
  transition: width 0.18s ease, height 0.18s ease, opacity 0.18s ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  opacity: 0.5;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease,
    border-color 0.2s ease;
}

.cursor-hover .cursor-dot {
  width: 0;
  height: 0;
  opacity: 0;
}

.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  opacity: 0.9;
}

.enter-screen {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.enter-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Returning visitor (same session): skip the enter screen entirely, no flash. */
html.entered .enter-screen {
  display: none;
}
html.entered .bio {
  opacity: 1;
  visibility: visible;
  transition: none;
}

.enter-inner {
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 620px;
  position: relative;
  animation: rise 1s 0.1s both ease;
}

.enter-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217, 199, 161, 0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: ambient-pulse 6s ease-in-out infinite;
}

@keyframes ambient-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.enter-hint {
  margin-top: 20px;
  color: var(--fg-faint);
  font-size: 10px;
  letter-spacing: 0.2em;
  animation: rise 1s 0.6s both ease;
  opacity: 0.6;
}

/* Terminal */
.terminal {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  text-align: left;
  animation: terminal-appear 0.8s 0.2s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes terminal-appear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--line);
}

.terminal-buttons {
  display: flex;
  gap: 7px;
}

.terminal-button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}

.terminal-button--red { background: #ff5f57; }
.terminal-button--yellow { background: #febc2e; }
.terminal-button--green { background: #28c840; }

.terminal-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  flex: 1;
  text-align: center;
}

.terminal-header-spacer {
  width: 54px;
}

.terminal-body {
  padding: 20px 22px;
  min-height: 180px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.terminal-body::-webkit-scrollbar {
  display: none;
}

.terminal-content {
  flex: 1;
  margin-bottom: 16px;
}

.terminal-line {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--fg);
  letter-spacing: 0.01em;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.terminal-line + .terminal-line {
  margin-top: 4px;
}

.terminal-output {
  color: var(--fg-dim);
}

.terminal-output.error {
  color: #c77a78;
}

.terminal-welcome {
  margin-bottom: 14px;
  display: block;
}

.terminal-welcome-art {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-faint);
  white-space: pre;
  display: block;
}

.terminal-line--delayed-1 {
  animation: rise 0.6s 0.5s both ease;
}

.terminal-prompt {
  color: var(--accent);
  flex-shrink: 0;
}

.terminal-text {
  color: var(--fg);
}

.terminal-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.terminal-prompt-symbol {
  font-family: var(--mono);
  font-size: 13px;
  flex-shrink: 0;
  white-space: nowrap;
}

.terminal-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  caret-color: var(--accent);
  padding: 0;
}

.terminal-input::placeholder {
  color: var(--fg-faint);
  opacity: 0.5;
}

.terminal-input::selection {
  background: var(--accent);
  color: var(--bg);
}

.terminal-input:focus {
  outline: none;
}

@keyframes typewriter-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.bio {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 32px clamp(24px, 6vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease 0.2s, visibility 1s ease 0.2s;
  overflow-y: auto;
  cursor: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.bio.visible {
  opacity: 1;
  visibility: visible;
}

.bio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.bio-console-link {
  color: var(--fg-faint);
  text-decoration: none;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.bio-console-link:hover {
  color: var(--fg);
  letter-spacing: 0.14em;
}

.bio-nav {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
}

.bio-nav-link {
  color: var(--fg-faint);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 2px 0;
}

.bio-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bio-nav-link:hover {
  color: var(--fg);
}

.bio-nav-link:hover::after {
  transform: scaleX(1);
}

.bio-hero {
  padding: clamp(24px, 4vh, 48px) 0 clamp(32px, 6vh, 64px);
  max-width: 720px;
}

.bio-kicker {
  margin-bottom: 28px;
  color: var(--fg-faint);
}

.bio-name {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
}

.bio-name .dot {
  color: var(--accent);
  font-style: normal;
  animation: dot-bleed 9s ease-in-out infinite;
}

@keyframes dot-bleed {
  0%   { color: #d9c7a1; }
  20%  { color: #c9a7a1; }
  40%  { color: #a8b5a1; }
  60%  { color: #a1b2c9; }
  80%  { color: #c1a1c9; }
  100% { color: #d9c7a1; }
}

.bio-name-text {
  display: inline;
}

.bio-name::after {
  content: "|";
  display: inline-block;
  margin-left: 4px;
  font-style: normal;
  color: var(--accent);
  font-weight: 300;
  transform: translateY(-0.05em);
  animation: tw-caret 0.6s steps(1) infinite;
}

@keyframes tw-caret {
  50% { opacity: 0; }
}

.bio-tagline {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 480px;
  font-weight: 300;
}

.bio-tagline em {
  color: var(--fg);
  font-style: italic;
}

.bio-socials {
  padding: clamp(40px, 6vh, 60px) 0;
  border-top: 1px solid var(--line);
}

.section-label {
  margin-bottom: 32px;
  color: var(--fg-faint);
}

.social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.social-list li + li {
  border-top: 1px solid var(--line);
}

.social {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: none;
  padding: 28px 8px;
  display: grid;
  grid-template-columns: 48px 1fr 1fr auto;
  align-items: baseline;
  gap: 24px;
  text-align: left;
  position: relative;
  transition: padding 0.35s ease;
}

.social::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  top: 0;
  bottom: 0;
  background: rgba(217, 199, 161, 0.04);
  transition: right 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social:hover {
  padding-left: 24px;
}

.social:hover::before {
  right: 0;
}

.social-idx {
  color: var(--fg-faint);
  position: relative;
}

.social-platform {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
}

.social-handle {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.social-action {
  color: var(--fg-faint);
  position: relative;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.social:hover .social-platform {
  color: var(--accent);
}

.social:hover .social-handle {
  color: var(--fg);
}

.social:hover .social-action {
  color: var(--fg);
  letter-spacing: 0.18em;
}

.social.copied .social-action::after {
  content: " ✓";
  color: var(--accent);
}

.presence {
  padding: clamp(32px, 5vh, 48px) 0;
  border-top: 1px solid var(--line);
}

.presence-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 8px;
  transition: opacity 0.4s ease;
}

.presence-card[data-state="loading"],
.presence-card[data-state="offline-api"] {
  opacity: 0.5;
}

.presence-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.presence-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: block;
}

.presence-avatar img:not([src]),
.presence-avatar img[src=""] {
  visibility: hidden;
}

.presence-status-dot {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fg-faint);
  border: 3px solid var(--bg);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.presence-card[data-status="online"] .presence-status-dot {
  background: #3ba55d;
  box-shadow: 0 0 10px rgba(59, 165, 93, 0.5);
}

.presence-card[data-status="idle"] .presence-status-dot {
  background: #faa61a;
}

.presence-card[data-status="dnd"] .presence-status-dot {
  background: #ed4245;
}

.presence-card[data-status="offline"] .presence-status-dot,
.presence-card[data-status="unknown"] .presence-status-dot {
  background: var(--fg-faint);
}

.presence-info {
  min-width: 0;
}

.presence-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 6px;
}

.presence-status-text {
  color: var(--fg-dim);
  margin-bottom: 6px;
}

.presence-activity {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
  margin-top: 4px;
}

.presence-activity[hidden] {
  display: none;
}

.presence-activity-label {
  color: var(--accent);
}

.presence-activity-name {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--fg);
  font-style: italic;
}

.presence-activity-details {
  color: var(--fg-dim);
  font-size: 10px;
}

.bio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--fg-faint);
  gap: 16px;
}

.mini-weather {
  color: var(--fg-faint);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.mini-weather:hover {
  color: var(--fg-dim);
}

.notfound {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px clamp(24px, 6vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
  cursor: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
}

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

.notfound-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  animation: rise 1s 0.15s both ease;
}

.notfound-code {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 16px 0 28px;
}

.notfound-code .dot {
  color: var(--accent);
  font-style: normal;
}

.notfound-msg {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
}

.notfound-msg em {
  color: var(--fg);
  font-style: italic;
}

.notfound-back {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--fg-dim);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: none;
  position: relative;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.notfound-back::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.notfound-back:hover {
  color: var(--fg);
  letter-spacing: 0.35em;
}

.notfound-back:hover::before {
  border-color: var(--fg-dim);
  transform: scale(1.04);
}

.notfound-back svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.notfound-back:hover svg {
  transform: translateX(-4px);
}

.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 20px;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.console {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px clamp(24px, 6vw, 72px);
  max-width: 1024px;
  margin: 0 auto;
  cursor: text;
}

.console-body {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  padding: 28px 0 16px;
  gap: 14px;
}

.console-scroll {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
}

.console-scroll::-webkit-scrollbar {
  display: none;
}

.console-line {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg);
  white-space: pre-wrap;
  word-break: break-word;
  text-transform: none;
  letter-spacing: 0;
}

.console-line--dim {
  color: var(--fg-dim);
}

.console-line--err {
  color: #c77a78;
}

.console-line--accent {
  color: var(--accent);
}

.console-line--echo {
  color: var(--fg);
}

.console-line-prompt {
  color: var(--fg-faint);
  margin-right: 6px;
}

.console-accent {
  color: var(--accent);
}

.console-form {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.console-prompt {
  flex-shrink: 0;
  color: var(--fg-faint);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.console-prompt-dot {
  color: var(--accent);
}

.console-prompt-sep {
  margin-left: 4px;
  color: var(--fg-faint);
}

.console-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  caret-color: var(--accent);
  padding: 0;
  cursor: text;
}

.console-input::selection {
  background: var(--accent);
  color: var(--bg);
}

.console-home {
  color: var(--fg-faint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.console-home:hover {
  color: var(--fg);
}

.page {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px clamp(24px, 6vw, 72px);
  max-width: 1024px;
  margin: 0 auto;
  cursor: none;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.page-hero {
  padding: clamp(24px, 4vh, 48px) 0 clamp(28px, 5vh, 56px);
  max-width: 720px;
}

.page-title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 18px 0 28px;
}

.page-title .dot {
  color: var(--accent);
  font-style: normal;
  animation: dot-bleed 9s ease-in-out infinite;
}

.page-lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 480px;
  font-weight: 300;
}

.page-lede em {
  color: var(--fg);
  font-style: italic;
}

.uses-section {
  padding: clamp(28px, 4vh, 44px) 0;
  border-top: 1px solid var(--line);
}

.uses-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.uses-list .uses-item + .uses-item {
  border-top: 1px solid var(--line);
}

.uses-item {
  padding: 22px 8px;
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  align-items: baseline;
  gap: 24px;
  position: relative;
  transition: padding 0.35s ease;
}

.uses-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  top: 0;
  bottom: 0;
  background: rgba(217, 199, 161, 0.04);
  transition: right 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.uses-item:hover {
  padding-left: 24px;
}

.uses-item:hover::before {
  right: 0;
}

.uses-idx {
  color: var(--fg-faint);
  position: relative;
}

.uses-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--fg);
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
}

.uses-item:hover .uses-name {
  color: var(--accent);
}

.uses-note {
  color: var(--fg-dim);
  position: relative;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
}

.colo-section {
  padding: clamp(28px, 4vh, 44px) 0;
  border-top: 1px solid var(--line);
}


.colo-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.colo-term {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--fg);
  padding-top: 22px;
}

.colo-term:first-of-type {
  padding-top: 0;
}

.colo-def {
  color: var(--fg-dim);
  margin-top: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
  line-height: 1.6;
}

.colo-def:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.colo-palette {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.colo-swatch {
  display: flex;
  align-items: center;
  gap: 16px;
}

.colo-swatch::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.colo-swatch .mono {
  color: var(--fg-dim);
}

.colo-prose {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 560px;
  font-weight: 300;
}

.colo-prose em {
  color: var(--fg);
  font-style: italic;
}
