:root {
  --bg: #FAF9F7;
  --ink: #101014;
  --ink-soft: #4A4A55;
  --ink-mute: #5A5A64;
  --ink-faint: #6B6B76;
  --border: #EAE7E1;
  --border-soft: #EFECE6;
  --pink: #FF2E7E;
  --teal: #0FC2C0;
  --blue: #3A5BE0;
  --purple: #7B3FD4;
  --green: #86D62B;
  --orange: #FF8A1E;
}

html {
  scroll-padding-top: 84px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--pink);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@keyframes gl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.gradient-text {
  background: linear-gradient(100deg, #0FC2C0, #3A5BE0, #7B3FD4, #FF2E7E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-alt {
  background: linear-gradient(100deg, #0FC2C0, #86D62B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-row {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-name {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-accent {
  color: var(--pink);
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--pink);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.link-button {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 9px 14px;
}

.link-button:hover {
  color: var(--pink);
}

/* Mobile nav toggle (checkbox-driven, no JS) */
.nav-toggle-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  margin-left: auto;
  border-radius: 10px;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle-btn:hover {
  background: var(--border-soft);
}

.nav-toggle-input:focus-visible ~ .nav-toggle-btn {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.nav-toggle-btn span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav .nav-signin,
.nav .nav-cta {
  display: none;
}

/* Buttons */
.button {
  display: inline-block;
  border-radius: 999px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 18px;
  white-space: nowrap;
}

.button-lg {
  font-size: 16px;
  padding: 16px 26px;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--pink);
  color: #fff;
}

.button-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid #DFDBD3;
  padding: 16px 24px;
}

.button-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--pink);
  color: #fff;
}

/* Hero */
.hero {
  padding-top: 72px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #86D62B, #0FC2C0, #3A5BE0, #7B3FD4, #FF2E7E, #FF8A1E);
  display: block;
}

.hero-title {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 520px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-facts {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: var(--ink-faint);
}

.hero-visual {
  min-width: 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: 6% 12%;
  background: linear-gradient(130deg, #86D62B, #0FC2C0, #3A5BE0, #7B3FD4, #FF2E7E, #FF8A1E);
  filter: blur(70px);
  opacity: 0.28;
  border-radius: 50%;
}

.phone {
  position: relative;
  width: 320px;
  max-width: 100%;
  background: var(--ink);
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(16, 16, 20, 0.45);
  animation: gl-float 7s ease-in-out infinite;
}

.phone-screen {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
}

.phone-top {
  padding: 22px 20px 18px;
  background: var(--ink);
  color: #fff;
}

.phone-greeting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.phone-greeting {
  font-size: 13px;
  color: #9B9BA6;
}

.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, #0FC2C0, #7B3FD4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.phone-balance-label {
  font-size: 12.5px;
  color: #9B9BA6;
  margin-bottom: 6px;
}

.phone-balance {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.phone-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.phone-action {
  flex: 1;
  text-align: center;
  background: #26262E;
  color: #fff;
  border-radius: 12px;
  padding: 11px 0;
  font-size: 13.5px;
  font-weight: 600;
}

.phone-action-primary {
  background: #fff;
  color: var(--ink);
}

.phone-bottom {
  padding: 18px 20px 24px;
}

.phone-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.phone-tx-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-tx {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-tx-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.phone-tx-icon-green {
  background: #EAF7E4;
  color: #3F7318;
}

.phone-tx-icon-pink {
  background: #FDE8F0;
  color: #C2185B;
}

.phone-tx-icon-blue {
  background: #E7ECFD;
  color: #3A5BE0;
}

.phone-tx-info {
  flex: 1;
  min-width: 0;
}

.phone-tx-title {
  font-size: 14px;
  font-weight: 500;
}

.phone-tx-meta {
  font-size: 12px;
  color: var(--ink-faint);
}

.phone-tx-amount {
  font-size: 14px;
  font-weight: 600;
}

.phone-tx-amount-positive {
  color: #1E8A4C;
}

/* Sections */
.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-white {
  background: #fff;
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-border-top {
  border-top: 1px solid var(--border);
}

.section-border-bottom {
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 52px;
  max-width: 640px;
  text-wrap: balance;
}

.section-title-narrow {
  max-width: 600px;
}

.section-title-sm {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-title-dark {
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-mute);
  margin: 0 0 44px;
  max-width: 560px;
  line-height: 1.6;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 26px;
  transition: border-color 0.15s ease;
}

.feature-card-dashed {
  border-style: dashed;
  border-color: #D6D1C8;
}

.feature-card-teal:hover { border-color: var(--teal); }
.feature-card-blue:hover { border-color: var(--blue); }
.feature-card-pink:hover { border-color: var(--pink); }
.feature-card-purple:hover,
.feature-card-dashed:hover { border-color: var(--purple); }
.feature-card-green:hover { border-color: var(--green); }
.feature-card-orange:hover { border-color: var(--orange); }

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon-teal { background: #E4F8F8; color: #0B8E8D; }
.feature-icon-blue { background: #E8EDFD; color: #2B44B4; }
.feature-icon-pink { background: #FDE8F0; color: #C2185B; }
.feature-icon-purple { background: #F0E9FC; color: #5B29A8; }
.feature-icon-green { background: #EDF8E1; color: #4C7A18; }
.feature-icon-orange { background: #FDEEDD; color: #B05B00; }
.feature-icon-gradient {
  background: linear-gradient(120deg, #86D62B, #0FC2C0, #3A5BE0, #7B3FD4, #FF2E7E, #FF8A1E);
  color: #fff;
}

.feature-title {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 18.5px;
  margin: 0 0 9px;
  letter-spacing: -0.015em;
}

.feature-desc {
  margin: 0;
  font-size: 15.2px;
  line-height: 1.55;
  color: var(--ink-mute);
}

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step {
  min-width: 0;
}

.step-number {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-number-teal { background: var(--teal); }
.step-number-purple { background: var(--purple); }
.step-number-pink { background: var(--pink); }

.step-title {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.step-desc {
  margin: 0;
  font-size: 15.8px;
  line-height: 1.6;
  color: var(--ink-mute);
}

/* Wallet section */
.wallet-row {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: center;
}

.wallet-copy {
  min-width: 0;
  order: 2;
}

.wallet-sub {
  font-size: 17.5px;
  line-height: 1.6;
  color: #B8B8C2;
  margin: 0 0 28px;
  max-width: 520px;
  text-wrap: pretty;
}

.soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #D4D4DC;
  background: #1A1A21;
  border: 1px solid #2C2C36;
  border-radius: 999px;
  padding: 8px 15px;
  margin-bottom: 28px;
}

.soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  display: block;
}

.wallet-visual {
  min-width: 0;
  order: 1;
  display: flex;
  justify-content: center;
}

.wallet-card {
  width: 100%;
  max-width: 400px;
  background: #1A1A21;
  border: 1px solid #2C2C36;
  border-radius: 24px;
  padding: 26px;
}

.wallet-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.wallet-card-label {
  font-size: 13px;
  color: #9B9BA6;
  margin-bottom: 6px;
}

.wallet-card-balance {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.wallet-card-note {
  font-size: 13px;
  color: #9B9BA6;
  margin-top: 6px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--green);
  background: rgba(134, 214, 43, 0.14);
  padding: 6px 11px;
  border-radius: 999px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  display: block;
}

.wallet-card-details {
  border-top: 1px solid #2C2C36;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wallet-card-detail-label {
  font-size: 11.5px;
  color: #9B9BA6;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.wallet-card-detail-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
}

.wallet-card-tx {
  border-top: 1px solid #2C2C36;
  margin-top: 18px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.wallet-card-tx-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  gap: 12px;
  color: #B8B8C2;
}

.wallet-card-tx-row .tx-positive {
  color: var(--green);
  font-weight: 600;
}

.wallet-card-tx-row span:last-child:not(.tx-positive) {
  color: #fff;
  font-weight: 600;
}

/* Payouts */
.payouts-table {
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
}

.payouts-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  background: var(--bg);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  padding: 14px 22px;
  border-bottom: 1px solid var(--border-soft);
}

.payouts-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  padding: 20px 22px;
  border-bottom: 1px solid #F4F1EB;
  align-items: center;
}

.payouts-name {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.payouts-cell {
  font-size: 15px;
  color: var(--ink-mute);
}

.payouts-fee {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
}

.align-right {
  text-align: right;
}

.payouts-footnote {
  padding: 18px 22px;
  font-size: 14px;
  color: var(--ink-faint);
  background: var(--bg);
}

/* App download */
.app-row {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s ease;
}

.app-badge:hover {
  opacity: 0.8;
}

.app-badge-img {
  display: block;
  height: 44px;
  width: auto;
}

.app-badge-img-android {
  /* Google's official badge PNG ships with ~16% transparent padding on
     every side (unlike Apple's edge-to-edge SVG), so it needs to render
     taller and pull in via negative margin to match Apple's visible
     badge height at the same row position. */
  height: 65.5px;
  margin: -10.75px 0;
}

.app-facts {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.app-fact {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.app-fact-num {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.app-fact-desc {
  font-size: 15px;
  color: var(--ink-mute);
}

/* Final CTA */
.cta-panel {
  position: relative;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  padding: clamp(40px, 6vw, 76px);
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 70%;
  height: 180%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #86D62B, #0FC2C0, #3A5BE0, #7B3FD4, #FF2E7E, #FF8A1E);
  filter: blur(90px);
  opacity: 0.35;
}

.cta-content {
  position: relative;
}

.cta-title {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 18px;
  text-wrap: balance;
}

.cta-sub {
  font-size: 18px;
  color: #D4D4DC;
  margin: 0 auto 32px;
  max-width: 520px;
  line-height: 1.55;
}

/* Contact */
.contact-section {
  text-align: center;
}

.contact-section .section-title,
.contact-section .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
}

.contact-email:hover {
  color: var(--pink);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  padding: 56px 24px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-logo {
  height: 30px;
  display: block;
  margin-bottom: 14px;
}

.footer-desc {
  margin: 0;
  font-size: 15px;
  color: var(--ink-faint);
  line-height: 1.55;
  max-width: 280px;
}

.footer-heading {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.footer-links a {
  color: var(--ink-faint);
}

.footer-copyright {
  padding: 0 24px 40px;
  font-size: 13.5px;
  color: var(--ink-faint);
}

/* Legal pages */
.legal-hero {
  padding-top: 64px;
  padding-bottom: 0;
}

.legal-updated {
  font-size: 14px;
  color: var(--ink-faint);
}

.legal-content {
  max-width: 720px;
  padding-top: 24px;
  padding-bottom: 88px;
}

.error-ctas {
  margin-top: 24px;
  padding-bottom: 88px;
}

.legal-content h2 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 760px) {
  .header-row {
    flex-wrap: wrap;
  }

  .nav-toggle-btn {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  .nav-toggle-input:checked ~ .nav {
    display: flex;
  }

  .nav a {
    padding: 10px 4px;
  }

  .nav .nav-signin {
    display: block;
    margin-top: 8px;
  }

  .nav a.nav-cta {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-weight: 600;
    text-align: center;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 48px;
    gap: 40px;
  }

  .wallet-row {
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 40px;
  }

  .app-row {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-title {
    margin-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .payouts-header {
    display: none;
  }

  .payouts-row {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    row-gap: 6px;
    padding: 18px 20px;
  }

  .payouts-name {
    grid-column: 1;
  }

  .payouts-fee {
    grid-column: 2;
    grid-row: 1;
  }

  .payouts-cell {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .payouts-cell:nth-of-type(2)::before {
    content: "Runs ";
    color: var(--ink-faint);
    font-weight: 600;
  }

  .payouts-cell:nth-of-type(3)::before {
    content: "In wallet ";
    color: var(--ink-faint);
    font-weight: 600;
  }
}
