:root {
  --paper: #16181B;
  --surface: #0A0A0A;
  --ink: #F5F6F7;
  --amp-blue: #9FCF3B;
  --amp-blue-dim: rgba(159,207,59,0.14);
  --amp-violet: #86B33E;
  --amp-violet-dim: rgba(134,179,62,0.14);
  --line: rgba(255,255,255,0.12);
  --muted: #9A9DA8;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

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

.hidden { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }

.font-mono { font-family: var(--font-mono); }

::selection { background: rgba(159,207,59,0.2); }

*:focus-visible {
  outline: 2px solid var(--amp-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.text-gradient {
  background: linear-gradient(135deg, #9FCF3B 0%, #86B33E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-amp-gradient { background: linear-gradient(135deg, #9FCF3B 0%, #86B33E 100%); }
.bg-amp-gradient-soft { background: linear-gradient(135deg, #F2F8E4 0%, #E8ECE0 100%); }

.shadow-soft { box-shadow: 0 2px 24px -4px rgba(10,10,15,0.08); }
.shadow-lift { box-shadow: 0 12px 40px -8px rgba(159,207,59,0.25); }

.rounded-4xl { border-radius: 2rem; }
.rounded-5xl { border-radius: 2.5rem; }

/* Waveform / equalizer signature mark */
.waveform { display: inline-flex; align-items: flex-end; gap: 3px; height: 1rem; }
.waveform span {
  width: 3px;
  height: 100%;
  border-radius: 9999px;
  background: currentColor;
  transform-origin: bottom;
  animation: eq-bar 1.1s ease-in-out infinite;
}
.waveform span:nth-child(1) { animation-delay: 0s; }
.waveform span:nth-child(2) { animation-delay: 0.2s; }
.waveform span:nth-child(3) { animation-delay: 0.4s; }
.waveform span:nth-child(4) { animation-delay: 0.1s; }

@keyframes eq-bar {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

@keyframes fade-up {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.6s ease-out both; }
.fade-up-1 { animation-delay: 0.08s; }
.fade-up-2 { animation-delay: 0.16s; }
.fade-up-3 { animation-delay: 0.24s; }

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

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  white-space: nowrap; border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s ease; cursor: pointer; border: 1px solid transparent;
}
.btn:disabled { pointer-events: none; opacity: 0.5; }
.btn-sm { height: 2.25rem; padding: 0 1rem; }
.btn-md { height: 2.75rem; padding: 0 1.5rem; }
.btn-lg { height: 3.5rem; padding: 0 2rem; font-size: 1rem; }
.btn-primary { background: var(--amp-blue); color: #0A0A0A; box-shadow: 0 2px 24px -4px rgba(0,0,0,0.3); }
.btn-primary:hover { filter: brightness(1.12); box-shadow: 0 12px 40px -8px rgba(159,207,59,0.35); }
.btn-gradient { background: linear-gradient(135deg, #9FCF3B 0%, #86B33E 100%); color: #0A0A0A; box-shadow: 0 12px 40px -8px rgba(159,207,59,0.25); }
.btn-gradient:hover { filter: brightness(1.1); }
.btn-outline { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: rgba(255,255,255,0.06); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.25rem; border-radius: 9999px;
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-family: var(--font-mono); font-weight: 500;
}
.badge-blue { background: var(--amp-blue-dim); color: var(--amp-blue); }
.badge-violet { background: var(--amp-violet-dim); color: var(--amp-violet); }
.badge-neutral { background: var(--paper); color: var(--muted); }

/* Card */
.card {
  border-radius: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px); box-shadow: 0 2px 24px -4px rgba(0,0,0,0.3);
}
a.card { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
a.card:hover { transform: translateY(-2px); border-color: rgba(159,207,59,0.4); box-shadow: 0 12px 40px -8px rgba(159,207,59,0.25); }

/* Inputs */
.field-label { font-size: 0.875rem; font-weight: 500; color: var(--ink); margin-bottom: 0.375rem; display: block; }
.field-input {
  display: flex; height: 3rem; width: 100%; border-radius: 1rem; border: 1px solid var(--line);
  background: var(--paper); padding: 0 1rem; font-size: 0.875rem; color: var(--ink);
  transition: border-color 0.2s ease;
}
.field-input::placeholder { color: var(--muted); }
.field-input:focus { outline: none; border-color: var(--amp-blue); box-shadow: 0 0 0 2px rgba(159,207,59,0.4); }
.field-input.error { border-color: #f87171; }
.field-error { margin-top: 0.25rem; font-size: 0.75rem; color: #ef4444; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Navbar */
.navbar {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: all 0.3s ease; border-bottom: 1px solid transparent; background: transparent;
}
.navbar.navbar-scrolled {
  background: rgba(10,10,10,0.85); backdrop-filter: blur(20px); border-bottom-color: var(--line);
}
.nav-link { font-size: 0.875rem; color: var(--muted); transition: color 0.2s ease; text-decoration: none; }
.nav-link:hover { color: var(--ink); }

/* Role select */
.role-option {
  border-radius: 1.5rem; border: 1px solid var(--line); padding: 1.25rem; text-align: left;
  transition: all 0.2s ease; background: transparent; cursor: pointer; display: block; width: 100%;
}
.role-option:hover { border-color: rgba(255,255,255,0.3); }
.role-option.role-selected { border-color: var(--amp-blue); background: var(--amp-blue-dim); box-shadow: 0 12px 40px -8px rgba(159,207,59,0.25); }
.role-option .role-icon { color: var(--muted); }
.role-option.role-selected .role-icon { color: var(--amp-blue); }

.mock-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--paper); color: rgba(255,255,255,0.85); font-family: var(--font-mono);
  font-size: 0.75rem; text-align: center; padding: 0.5rem 1rem; border-top: 1px solid var(--line);
}

/* Video cards */
.video-card {
  border-radius: 1.25rem; border: 1px solid var(--line); background: var(--paper); overflow: hidden;
}
.video-thumb {
  height: 7rem; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(159,207,59,0.18), rgba(134,179,62,0.18));
  color: var(--ink); position: relative;
}
.video-thumb .play-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 9999px; background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center; color: #0A0A0F;
}
.video-body { padding: 0.875rem 1rem 1rem; }

/* Expand toggle */
.expand-toggle {
  background: none; border: none; padding: 0; font-size: 0.8125rem; color: var(--amp-blue);
  cursor: pointer; font-weight: 500; display: inline-flex; align-items: center; gap: 0.25rem;
}
.expand-toggle .chev { transition: transform 0.2s ease; display: inline-block; }
.expand-toggle.open .chev { transform: rotate(180deg); }
.expand-panel { display: none; margin-top: 1rem; }
.expand-panel.open { display: block; }

/* Chat widget */
.chat-box {
  border: 1px solid var(--line); border-radius: 1.25rem; background: var(--paper);
  display: flex; flex-direction: column; margin-top: 0.75rem; overflow: hidden;
}
.chat-messages { max-height: 220px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.chat-bubble { max-width: 80%; padding: 0.5rem 0.875rem; border-radius: 1rem; font-size: 0.8125rem; line-height: 1.4; }
.chat-bubble.me { align-self: flex-end; background: var(--amp-blue); color: #0A0A0A; border-bottom-right-radius: 0.25rem; }
.chat-bubble.them { align-self: flex-start; background: var(--surface); color: var(--ink); border-bottom-left-radius: 0.25rem; }
.chat-input-row { display: flex; gap: 0.5rem; border-top: 1px solid var(--line); padding: 0.625rem; }
.chat-input-row input {
  flex: 1; border: 1px solid var(--line); border-radius: 9999px; padding: 0.5rem 0.875rem; font-size: 0.8125rem;
  font-family: var(--font-body); background: var(--surface); color: var(--ink);
}
.chat-input-row input:focus { outline: none; border-color: var(--amp-blue); }
.chat-locked {
  border: 1px dashed var(--line); border-radius: 1.25rem; padding: 1rem; margin-top: 0.75rem;
  font-size: 0.8125rem; color: var(--muted); text-align: center; background: var(--surface);
}

/* Profile pages */
.profile-hero {
  background: var(--surface); color: #FFFFFF; padding: 3rem 0; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.profile-hero::before {
  content: ""; position: absolute; top: -6rem; right: -6rem; height: 320px; width: 320px;
  border-radius: 9999px; opacity: 0.3; filter: blur(100px); background: linear-gradient(135deg, #9FCF3B, #86B33E);
}
.avatar-block {
  width: 4.5rem; height: 4.5rem; border-radius: 1.5rem; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(159,207,59,0.3), rgba(134,179,62,0.3)); flex-shrink: 0;
}
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-cell { border-radius: 1.25rem; border: 1px solid var(--line); background: var(--paper); padding: 1rem; text-align: center; }
.social-pill {
  display: inline-flex; align-items: center; gap: 0.375rem; border-radius: 9999px; border: 1px solid var(--line);
  padding: 0.5rem 1rem; font-size: 0.8125rem; text-decoration: none; color: var(--ink); transition: border-color 0.2s ease;
}
.social-pill:hover { border-color: var(--ink); }
.videos-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }

/* Clickable creator/artist name in campaign rows */
.person-link { color: var(--ink); font-weight: 500; text-decoration: none; }
.person-link:hover { color: var(--amp-blue); text-decoration: underline; }

/* ---------- Avatar ---------- */
.avatar {
  position: relative; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 9999px; overflow: hidden; font-family: var(--font-display);
  font-weight: 600; color: #FFFFFF; background: linear-gradient(135deg, #9FCF3B 0%, #86B33E 100%);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar-xs { width: 1.75rem; height: 1.75rem; font-size: 0.6875rem; }
.avatar-sm { width: 2.5rem; height: 2.5rem; font-size: 0.8125rem; }
.avatar-md { width: 3.5rem; height: 3.5rem; font-size: 1.125rem; }
.avatar-lg { width: 4.5rem; height: 4.5rem; font-size: 1.375rem; border: 3px solid rgba(255,255,255,0.5); }
.avatar-upload { position: relative; display: inline-flex; }
.avatar-upload-btn {
  position: absolute; bottom: -0.25rem; right: -0.25rem; width: 1.75rem; height: 1.75rem;
  border-radius: 9999px; background: var(--amp-violet); color: #FFFFFF; border: 2px solid var(--paper);
  display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0;
}
.avatar-upload-btn:hover { background: var(--amp-blue); color: #0A0A0A; }
.avatar-upload input[type="file"] { display: none; }

/* ---------- Badge chips (verification / achievement badges) ---------- */
.badge-chip {
  display: inline-flex; align-items: center; gap: 0.3rem; border-radius: 9999px;
  padding: 0.3rem 0.7rem; font-size: 0.75rem; font-weight: 500; font-family: var(--font-body);
  white-space: nowrap;
}
.badge-chip.verified { background: var(--amp-blue-dim); color: var(--amp-blue); }
.badge-chip.achievement { background: var(--amp-violet-dim); color: var(--amp-violet); }
.badge-chip.locked { background: var(--paper); color: var(--muted); }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ---------- Social / platform icon monogram ---------- */
.social-icon {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 1.375rem; height: 1.375rem; border-radius: 9999px; background: var(--amp-blue); color: #0A0A0A;
  font-family: var(--font-mono); font-size: 0.5625rem; font-weight: 600; letter-spacing: -0.02em;
}
.social-pill { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ---------- Badge progress (gamification) ---------- */
.progress-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0; }
.progress-row + .progress-row { border-top: 1px solid var(--line); }
.progress-row .p-icon { font-size: 1rem; width: 1.5rem; text-align: center; flex-shrink: 0; }
.progress-row .p-body { flex: 1; min-width: 0; }
.progress-row .p-label { font-size: 0.8125rem; font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.progress-row .p-track { margin-top: 0.375rem; height: 5px; border-radius: 9999px; background: var(--line); overflow: hidden; }
.progress-row .p-fill { height: 100%; border-radius: 9999px; background: linear-gradient(135deg, #9FCF3B 0%, #86B33E 100%); }
.progress-row.done .p-label { color: var(--amp-blue); }

/* ---------- Admin back office ---------- */
.admin-shell { display: grid; grid-template-columns: 15rem 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--paper); border-right: 1px solid var(--line); padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.25rem; position: sticky; top: 0; height: 100vh;
}
.admin-nav-link {
  display: flex; align-items: center; gap: 0.625rem; padding: 0.625rem 0.75rem; border-radius: 0.75rem;
  color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: all 0.15s ease;
}
.admin-nav-link:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.admin-nav-link.active { color: var(--ink); background: var(--amp-blue-dim); }
.admin-main { padding: 2rem 2.5rem 4rem; max-width: 1400px; }
.admin-mobile-topbar {
  display: flex; align-items: center; justify-content: space-between; height: 3.5rem; padding: 0 1.25rem;
  background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50;
}
.admin-hamburger-btn { display: none; }
.admin-sidebar-overlay { display: none; }
.admin-refresh-btn {
  display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid var(--line); background: transparent;
  color: var(--muted); border-radius: 9999px; padding: 0.4rem 0.9rem; font-size: 0.8125rem; cursor: pointer;
}
.admin-refresh-btn:hover { color: var(--ink); border-color: var(--ink); }
.admin-refresh-btn svg.spin { animation: amp-spin 0.8s linear infinite; }
@keyframes amp-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 860px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed; top: 0; left: 0; height: 100vh; width: 16rem; z-index: 90;
    transform: translateX(-100%); transition: transform 0.2s ease; box-shadow: 20px 0 60px rgba(0,0,0,0.5);
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-sidebar-overlay.open {
    display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 80;
  }
  .admin-mobile-topbar {
    display: flex; align-items: center; justify-content: space-between; height: 3.75rem; padding: 0 1.25rem;
    background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50;
  }
  .admin-hamburger-btn {
    display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem;
    border-radius: 0.75rem; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer;
  }
  .admin-mobile-topbar .admin-topbar-logo { display: none; }
  .admin-main { padding: 1.5rem 1.25rem 4rem; }
  .admin-main table.admin-table { font-size: 0.75rem; }
  .admin-main .admin-table th, .admin-main .admin-table td { padding: 0.625rem 0.5rem; }
}

@media (max-width: 640px) {
  .admin-main [style*="grid-template-columns:1.6fr 1fr"],
  .admin-main [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th {
  text-align: left; font-family: var(--font-mono); font-size: 0.6875rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--muted); font-weight: 500; padding: 0.75rem 1rem; border-bottom: 1px solid var(--line);
}
.admin-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr.clickable { cursor: pointer; transition: background 0.15s ease; }
.admin-table tr.clickable:hover { background: rgba(255,255,255,0.04); }

.status-pill { display: inline-flex; align-items: center; gap: 0.35rem; border-radius: 9999px; padding: 0.25rem 0.7rem; font-size: 0.75rem; font-weight: 500; }
.status-pill.approved { background: var(--amp-blue-dim); color: var(--amp-blue); }
.status-pill.needs_review { background: rgba(250,204,21,0.14); color: #FACC15; }
.status-pill.rejected { background: rgba(248,113,113,0.14); color: #F87171; }
.status-pill.active { background: var(--amp-blue-dim); color: var(--amp-blue); }

.check-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.875rem 0; }
.check-row + .check-row { border-top: 1px solid var(--line); }
.check-pill { display: inline-flex; align-items: center; gap: 0.35rem; border-radius: 9999px; padding: 0.3rem 0.75rem; font-size: 0.75rem; font-weight: 500; white-space: nowrap; }
.check-pill.pass { background: var(--amp-blue-dim); color: var(--amp-blue); }
.check-pill.fail { background: rgba(248,113,113,0.14); color: #F87171; }
.check-pill.pending { background: var(--paper); color: var(--muted); border: 1px solid var(--line); }

.stat-card { border-radius: 1.5rem; border: 1px solid var(--line); background: rgba(255,255,255,0.03); padding: 1.5rem; }
.stat-card .num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; margin-top: 0.5rem; }

.tab-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tab-btn {
  border: 1px solid var(--line); background: transparent; color: var(--muted); border-radius: 9999px;
  padding: 0.45rem 1rem; font-size: 0.8125rem; font-weight: 500; cursor: pointer; transition: all 0.15s ease;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--amp-blue); color: #0A0A0A; border-color: var(--amp-blue); }

/* ---------- Real-account page headers (dashboard, messages, profile) ---------- */
.real-header-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 560px) {
  .real-header-actions { gap: 0.5rem; }
  .real-header-actions .badge { display: none; }
  .real-header-actions .btn-sm { padding: 0 0.75rem; font-size: 0.8125rem; }
}

/* ---------- Toggle switch ---------- */
.toggle { position: relative; width: 2.5rem; height: 1.375rem; border-radius: 9999px; background: var(--line); border: none; cursor: pointer; flex-shrink: 0; }
.toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 1.125rem; height: 1.125rem; border-radius: 9999px; background: var(--muted); transition: all 0.15s ease; }
.toggle.on { background: var(--amp-blue-dim); }
.toggle.on::after { background: var(--amp-blue); transform: translateX(1.125rem); }

/* ---------- Secure delivery preview + countdown ---------- */
.protected-preview {
  position: relative; aspect-ratio: 16/10; border-radius: 1rem 1rem 0 0; overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(159,207,59,0.10) 0 12px, rgba(134,179,62,0.06) 12px 24px);
  display: flex; align-items: center; justify-content: center; user-select: none;
}
.protected-preview .lock-badge {
  position: absolute; top: 0.625rem; left: 0.625rem; display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(10,10,10,0.7); color: #fff; font-size: 0.6875rem; padding: 0.25rem 0.6rem; border-radius: 9999px;
}
.protected-preview .watermark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.15; font-size: 0.75rem; font-family: var(--font-mono); transform: rotate(-18deg); color: var(--ink); text-align: center; line-height: 2.2; pointer-events: none;}
.countdown-chip {
  display: inline-flex; align-items: center; gap: 0.375rem; font-family: var(--font-mono); font-size: 0.75rem;
  color: #FACC15; background: rgba(250,204,21,0.12); padding: 0.3rem 0.7rem; border-radius: 9999px;
}
.countdown-chip.countdown-done { color: var(--amp-blue); background: var(--amp-blue-dim); }

/* ---------- Modal ---------- */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.6);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  width: 100%; max-width: 28rem; max-height: 90vh; overflow-y: auto; border-radius: 1.75rem;
  border: 1px solid var(--line); background: var(--paper); padding: 1.75rem; box-shadow: 0 24px 80px -20px rgba(0,0,0,0.6);
}
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.modal-close {
  background: none; border: 1px solid var(--line); color: var(--muted); width: 2.25rem; height: 2.25rem;
  border-radius: 9999px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.modal-close:hover { border-color: var(--ink); color: var(--ink); }
