:root {
  --body: #15181d;
  --primary: #03fcd8;
  --border: #242a33;
  --dark: #12151a;
  --white: white;
  --black: black;
}

/* Prevent horizontal scrollbar: 100vw includes scrollbar width; % uses layout width */
html {
  overflow-x: hidden;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--body);
  color: #fff;
  font-family: Protomono, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  font-family: Sora, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all .4s;
}

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

code {
  background-color: var(--border);
  padding-left: 6px;
  padding-right: 6px;
}

.c-container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.c-container.c-navbar-container {
  z-index: 99;
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
  overflow: visible;
}

.c-landing-section {
  z-index: 10;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.c-landing-nav__logo {
  width: 48px;
}

.c-landing-nav__row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: auto;
  display: flex;
}

.c-landing-nav__logo-text {
  font-size: 26px;
  text-transform: uppercase;
}

.c-landing__layout {
  max-width: 1400px;
  min-height: 80vh;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: space-between;
  align-items: center;
  justify-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.c-hr {
  width: 100%;
  border-top: 1px solid var(--border);
}

.c-landing__enter-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
}

.c-landing__enter-link:hover {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.c-icon._16px {
  width: 16px;
  height: 16px;
}

.c-icon._24px {
  width: 24px;
  height: 24px;
}

.c-icon._32px {
  width: 32px;
  height: 32px;
}

.c-icon._48px {
  width: 48px;
  height: 48px;
}

.c-landing__enter-box {
  justify-content: flex-end;
  align-items: center;
}

.c-landing__socials {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.c-faded-text {
  opacity: .5;
}

.c-landing__spline {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.c-backdrop-logo {
  z-index: -1;
  opacity: .05;
  filter: blur(30px);
  mix-blend-mode: normal;
  background-image: url('../images/crow-picture.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 70%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.c-landing-background {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, var(--body), #1c2027 60%, var(--border));
}

.c-navbar {
  width: 100%;
  border: 1px solid var(--border);
  background-color: var(--dark);
  box-shadow: 0 12px 20px 0 var(--body);
  border-radius: 10px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;
}

.c-navbar__link {
  color: #fff;
}

.c-navbar__logo {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: auto;
  display: flex;
}

.c-navbar__logo.w--current {
  display: inline-flex;
}

.c-navbar__logo-icon {
  width: 32px;
}

.c-navbar__flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.c-navbar__menu-btn {
  border-radius: 100px;
  padding: 10px;
  font-size: 24px;
}

/* Keep dashboard header stable between page swaps (no flash/fade). */
.c-container.c-navbar-container .c-navbar,
.c-container.c-navbar-container .c-navbar .c-navbar__logo,
.c-container.c-navbar-container .c-navbar .nav-menu,
.c-container.c-navbar-container .c-navbar .c-navbar__get-started,
.c-container.c-navbar-container .c-navbar .c-login-wrap,
.c-container.c-navbar-container .c-navbar .c-navbar__link-icon {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.c-docs__layout {
  z-index: 9;
  width: 100%;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 1px solid var(--border);
  background-color: var(--dark);
  border-radius: 10px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 0;
  display: flex;
}

.c-docs__sidebar {
  z-index: 99;
  width: 100%;
  height: 100%;
  max-width: 420px;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 2rem;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 8rem;
  overflow: visible;
}

/* Desktop: sidebar vs main column scroll independently (wheel targets the pane under the cursor). */
@media screen and (min-width: 768px) {
  .c-docs__layout {
    align-items: stretch;
    max-height: calc(100dvh - 9.25rem);
    overflow: hidden;
  }

  .c-docs__sidebar {
    position: relative;
    top: auto;
    flex: 0 0 auto;
    width: min(380px, 38vw);
    max-width: 420px;
    height: auto;
    min-height: 0;
    align-self: stretch;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(3, 252, 216, 0.28) rgba(0, 0, 0, 0.12);
  }

  .c-docs__content {
    flex: 1 1 0;
    align-self: stretch;
    min-width: 0;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(3, 252, 216, 0.28) rgba(0, 0, 0, 0.12);
  }

  .c-docs__sidebar::-webkit-scrollbar,
  .c-docs__content::-webkit-scrollbar {
    width: 8px;
  }

  .c-docs__sidebar::-webkit-scrollbar-track,
  .c-docs__content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
  }

  .c-docs__sidebar::-webkit-scrollbar-thumb,
  .c-docs__content::-webkit-scrollbar-thumb {
    background: rgba(3, 252, 216, 0.22);
    border-radius: 4px;
  }

  .c-docs__sidebar::-webkit-scrollbar-thumb:hover,
  .c-docs__content::-webkit-scrollbar-thumb:hover {
    background: rgba(3, 252, 216, 0.35);
  }

  /* My projects: tall cards + overscroll contain could eat wheel events when hovering a card. */
  .page-my-projects .c-docs__content {
    overscroll-behavior: auto;
  }
}

.c-docs__tab-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--dark);
  background-color: var(--dark);
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 24px;
  font-weight: 700;
  display: flex;
}

.c-docs__tab-link:hover {
  background-color: var(--body);
}

.c-docs__tab-link.w--current {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: rgba(3, 252, 216, .2);
}

.c-docs__content {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  overflow-x: hidden;
  overflow-y: visible;
}

.c-faded-top {
  z-index: 10;
  width: 100%;
  height: 140px;
  background-image: linear-gradient(180deg, var(--body) 30%, rgba(21, 24, 29, 0));
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  /* Decorative only — must not capture wheel/touch; it sits above the main column (z-index 9). */
  pointer-events: none;
}

/* Site footer — title, tagline, socials */
.c-site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(3, 252, 216, 0.12);
  background: rgba(0, 0, 0, 0.28);
  padding: 2.25rem 0 2.6rem;
}

.c-site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.c-site-footer__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.c-site-footer__subtitle {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

.c-site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  margin-top: 0.45rem;
}

.c-site-footer__social {
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.25s ease;
  line-height: 0;
}

.c-site-footer__social:hover {
  color: var(--primary);
}

.c-tab__heading {
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

/* Explorer: My allocations — Protomono, centered; rule width matches title via shrink-to-fit h1 */
.c-tab__heading.c-tab__heading--allocations {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  font-family: Protomono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}

.c-tab__heading.c-tab__heading--allocations::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.55rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(3, 252, 216, 0.72), transparent);
}

.c-tab__header-box--allocations {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.c-tab__content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.c-tab__content--rich-text-box {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2rem;
}

.c-btn {
  background-color: var(--border);
}

.c-btn.next-page-button {
  margin-left: auto;
  margin-right: 0;
}

.c-text-primary {
  color: var(--primary);
}

.c-text-uppercase {
  text-transform: uppercase;
}

/* Home tab — technical narrative + figures (home/index.html) */
.c-home-tech__lede {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.c-home-tech a {
  color: rgba(3, 252, 216, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c-home-tech a:hover {
  color: rgba(3, 252, 216, 1);
}

.c-home-tech__page-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

@media screen and (min-width: 640px) {
  .c-home-tech__page-nav {
    grid-template-columns: 1fr 1fr;
  }
}

.c-home-tech__page-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background: rgba(3, 252, 216, 0.06);
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.92) !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.c-home-tech__page-nav-card:hover {
  border-color: rgba(3, 252, 216, 0.55);
  background: rgba(3, 252, 216, 0.1);
}

.c-home-tech__page-nav-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.c-home-tech__page-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(3, 252, 216, 0.92);
  line-height: 0;
}

.c-home-tech__page-nav-icon svg {
  display: block;
}

.c-home-tech__page-nav-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  min-width: 0;
}

/* ~25% smaller than default Webflow h2 (32×0.75 = 24px); .c-text-primary / uppercase */
.c-home-tech__page-nav-title {
  margin: 0;
  font-size: 24px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  text-align: left;
}

.c-home-tech__page-nav-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  text-transform: none;
}

/* Home — $CROW token card (home/index.html) */
.c-crow-token {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(3, 252, 216, 0.14);
}

.c-home-tech > .c-crow-token:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-bottom: 1.5rem;
}

.c-crow-token__heading {
  margin: 0 0 1rem;
  font-size: 2.1rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.c-crow-token__card {
  padding: 1.2rem 1.25rem 1.35rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.22);
  background: rgba(3, 252, 216, 0.05);
}

.c-crow-token__text {
  margin: 0 0 0.85rem;
  font-family: Sora, sans-serif;
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.78);
}

.c-crow-token__text:last-of-type {
  margin-bottom: 1.1rem;
}

.c-crow-token__text strong {
  color: rgba(255, 255, 255, 0.95);
}

.c-crow-token__address-block {
  margin: 0 0 0.85rem;
  padding: 0.5rem 0.6rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

.c-crow-token__address-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.c-crow-token__address-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}

.c-crow-token__address-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  flex-shrink: 0;
}

.c-crow-token__mint {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  word-break: break-all;
  color: rgba(255, 255, 255, 0.88);
  font-family: ui-monospace, monospace;
  background: transparent;
  padding: 0;
  text-align: left;
}

.c-crow-token__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  flex-shrink: 0;
  margin: 0;
  padding: 0.26rem 0.5rem;
  box-sizing: border-box;
  min-width: 6.85rem;
  border-radius: 5px;
  border: 1px solid rgba(3, 252, 216, 0.32);
  background: rgba(3, 252, 216, 0.07);
  font-family: Sora, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.c-crow-token__copy:hover {
  color: var(--primary);
  border-color: rgba(3, 252, 216, 0.55);
  background: rgba(3, 252, 216, 0.12);
}

.c-crow-token__copy-icon {
  display: inline-flex;
  line-height: 0;
  color: currentColor;
  opacity: 0.85;
  flex-shrink: 0;
}

.c-crow-token__copy-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.c-crow-token__copy-label {
  display: inline-block;
  min-width: 4.25rem;
  text-align: center;
}

.c-crow-token__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.6rem;
  width: 100%;
}

.c-crow-token__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.95rem 0.45rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none !important;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.c-crow-token__action-icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  opacity: 0.72;
  color: currentColor;
}

.c-crow-token__action:hover .c-crow-token__action-icon {
  opacity: 1;
}

.c-crow-token__action:hover {
  color: var(--primary);
  border-color: rgba(3, 252, 216, 0.45);
  background: rgba(3, 252, 216, 0.08);
}

.c-home-tech__cta {
  box-sizing: border-box;
  width: 100%;
  max-width: 36rem;
  margin: 1.75rem auto 0;
  padding: 1.75rem 1.5rem 1.85rem;
  border: 1px solid rgba(3, 252, 216, 0.18);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.c-home-tech__cta-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.c-home-tech__cta-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* Same pattern as .c-navbar__get-started — larger tap target + header arrow */
.c-home-tech__dashboard-cta {
  grid-column-gap: 0.85rem;
  grid-row-gap: 0.85rem;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--border);
  background-color: var(--body);
  border-radius: 10px;
  padding: 0.75rem 1.35rem;
  display: inline-flex;
  box-sizing: border-box;
  min-height: 3.1rem;
  transition: color 0.35s ease, border-color 0.35s ease, gap 0.35s ease;
  text-decoration: none !important;
}

.c-home-tech__dashboard-cta:hover {
  color: var(--primary);
  border-color: var(--primary);
  grid-column-gap: 1.15rem;
}

.c-home-tech__dashboard-cta .c-icon {
  flex-shrink: 0;
}

/* How it works — layout & cards (home/how-it-works.html) */
.c-hiw.c-home-tech {
  max-width: 42rem;
}

/* How it works — centered main column (body.page-how-it-works) */
.page-how-it-works .c-docs__content {
  text-align: center;
}

.page-how-it-works .c-tab__header-box {
  text-align: center;
}

.page-how-it-works .c-tab__content {
  align-items: center;
  width: 100%;
}

.page-how-it-works .c-hiw.c-home-tech {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-how-it-works .c-home-tech__lede {
  text-align: center;
}

.page-how-it-works .c-hiw__part-title,
.page-how-it-works .c-hiw__part-lead {
  text-align: center;
}

.page-how-it-works .c-hiw__card {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

.page-how-it-works .c-hiw__card-head {
  justify-content: center;
}

.page-how-it-works .c-hiw__card-lead,
.page-how-it-works .c-hiw__subhead,
.page-how-it-works .c-hiw__hint,
.page-how-it-works .c-hiw__vesting-intro {
  text-align: center;
}

.page-how-it-works .c-hiw__tier {
  text-align: center;
}

.page-how-it-works .c-hiw__pills {
  justify-content: center;
}

.page-how-it-works .c-hiw__finalize {
  text-align: center;
  border-left: none;
  border-top: 3px solid rgba(3, 252, 216, 0.45);
  padding-top: 0.85rem;
}

.page-how-it-works .c-hiw__card-title--inline {
  text-align: center;
}

.page-how-it-works .c-hiw__card .c-home-tech__note {
  text-align: left;
}

.c-hiw__part {
  margin-top: 0;
}

.c-hiw__part-title {
  margin: 2.25rem 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: none;
}

.c-hiw__part:first-of-type .c-hiw__part-title {
  margin-top: 0;
}

.c-hiw__part-lead {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.72);
}

.c-hiw__card {
  margin: 0 0 1.1rem;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.2);
  background: rgba(3, 252, 216, 0.05);
}

.c-hiw__card--compact {
  padding: 1rem 1.15rem 1.1rem;
}

.c-hiw__card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.65rem;
}

.c-hiw__badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body);
  background: rgba(3, 252, 216, 0.92);
}

.c-hiw__card-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.96);
}

.c-hiw__card-title--inline {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.c-hiw__card-lead {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.c-hiw__list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
  font-size: 0.92rem;
}

.c-hiw__list li {
  margin-bottom: 0.65rem;
}

.c-hiw__list li:last-child {
  margin-bottom: 0;
}

.c-hiw__list strong {
  color: rgba(255, 255, 255, 0.94);
}

.c-hiw__subhead {
  margin: 1.1rem 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.75);
}

.c-hiw__subhead:first-of-type {
  margin-top: 0.35rem;
}

.c-hiw__tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0 0 0.5rem;
}

@media screen and (min-width: 640px) {
  .c-hiw__tier-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-hiw__tier {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.c-hiw__tier-name {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.96);
}

.c-hiw__tier-meta {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.c-hiw__hint {
  margin: 0.5rem 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
  font-style: italic;
}

.c-hiw__vesting-intro {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.c-hiw__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
}

.c-hiw__pills li {
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(3, 252, 216, 0.35);
  background: rgba(3, 252, 216, 0.08);
}

.c-hiw__finalize {
  margin: 1rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border-left: 3px solid rgba(3, 252, 216, 0.55);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.c-hiw__card .c-home-tech__note {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px dashed rgba(3, 252, 216, 0.28);
  background: rgba(3, 252, 216, 0.06);
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.c-hiw__part.c-home-tech__section {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(3, 252, 216, 0.15);
}

.c-hiw__part.c-home-tech__section .c-hiw__part-title {
  margin-top: 0;
}

.c-hiw__cta.c-home-tech__cta {
  margin-top: 2rem;
}

.c-home-tech__steps {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
  font-size: 0.92rem;
}

.c-home-tech__steps li {
  margin-bottom: 0.85rem;
}

.c-home-tech__steps strong {
  color: rgba(255, 255, 255, 0.92);
}

.c-home-tech__section {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(3, 252, 216, 0.15);
}

.c-home-tech__section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.c-home-tech__h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.3;
}

/* Why Crowrise — flow diagram (why-crowrise.html, “What Crowrise does”) */
.c-crowrise-flow__intro {
  margin: 0.5rem 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.c-crowrise-flow {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  background: transparent;
}

.c-crowrise-flow__steps {
  list-style: none;
  margin: 0;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background: linear-gradient(165deg, rgba(3, 252, 216, 0.07) 0%, rgba(10, 13, 18, 0.94) 42%, rgba(14, 17, 22, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.c-crowrise-flow__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
}

.c-crowrise-flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(3, 252, 216, 0.55);
  background: rgba(3, 252, 216, 0.1);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(3, 252, 216, 0.98);
  line-height: 1;
}

.c-crowrise-flow__body {
  min-width: 0;
  padding-top: 0.1rem;
}

.c-crowrise-flow__step-title {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.c-crowrise-flow__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.c-crowrise-flow__text strong {
  color: rgba(3, 252, 216, 0.9);
  font-weight: 600;
}

.c-crowrise-flow__rail {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.5rem;
  grid-column: 1 / -1;
}

.c-crowrise-flow__step + .c-crowrise-flow__rail {
  margin-left: 1rem;
  justify-content: flex-start;
  padding-left: 0;
}

.c-crowrise-flow__rail-line {
  display: block;
  width: 2px;
  height: 1.15rem;
  border-radius: 1px;
  background: linear-gradient(180deg, rgba(3, 252, 216, 0.55) 0%, rgba(3, 252, 216, 0.15) 100%);
}

.c-crowrise-flow__wallet {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
  margin: 0.15rem 0 0.1rem;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.38);
  background: rgba(3, 252, 216, 0.06);
  list-style: none;
}

.c-crowrise-flow__wallet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(3, 252, 216, 0.25);
  color: rgba(3, 252, 216, 0.9);
  background: rgba(0, 0, 0, 0.2);
}

.c-crowrise-flow__wallet-icon svg {
  display: block;
}

.c-crowrise-flow__wallet-title {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.95);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.c-crowrise-flow__wallet-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.76);
}

.c-crowrise-flow__wallet-text strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.c-crowrise-flow__tier-block {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.c-crowrise-flow__tier-label {
  margin: 0 0 0.45rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.75);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.c-crowrise-flow__tier-block .c-crowrise-flow__tier-label + .c-crowrise-flow__pills {
  margin-bottom: 0.85rem;
}

.c-crowrise-flow__tier-block .c-crowrise-flow__pills + .c-crowrise-flow__tier-label {
  margin-top: 0.35rem;
}

.c-crowrise-flow__pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.c-crowrise-flow__pills > li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 6.5rem;
  flex: 1 1 auto;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(3, 252, 216, 0.22);
  background: rgba(0, 0, 0, 0.22);
}

.c-crowrise-flow__pill-name {
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.95);
}

.c-crowrise-flow__pill-meta {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.c-crowrise-flow__pill-meta strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.c-crowrise-flow__percents {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.c-crowrise-flow__percents li {
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(3, 252, 216, 0.88);
}

.c-crowrise-flow__footnote {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
}

.c-crowrise-flow__footnote a {
  color: rgba(3, 252, 216, 0.85);
}

@media screen and (min-width: 640px) {
  .c-crowrise-flow__pills > li {
    flex: 1 1 calc(33.333% - 0.45rem);
    min-width: 7rem;
  }
}

.c-home-tech__section--centered {
  text-align: center;
}

.c-home-tech__section--centered > .c-home-tech__h2 {
  text-align: center;
}

.c-home-tech__section--centered .c-crowrise-flow__intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
}

.c-home-tech__section--centered .c-crowrise-flow {
  max-width: min(38rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.c-home-tech__section--centered .c-crowrise-flow__step {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.c-home-tech__section--centered .c-crowrise-flow__body {
  max-width: 34rem;
}

.c-home-tech__section--centered .c-crowrise-flow__step + .c-crowrise-flow__rail {
  margin-left: 0;
  justify-content: center;
}

.c-home-tech__section--centered .c-crowrise-flow__wallet {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.c-home-tech__section--centered .c-crowrise-flow__tier-block {
  text-align: center;
}

.c-home-tech__section--centered .c-crowrise-flow__pills {
  justify-content: center;
}

.c-home-tech__section--centered .c-crowrise-flow__pills > li {
  align-items: center;
  text-align: center;
}

.c-home-tech__section--centered .c-crowrise-flow__percents {
  justify-content: center;
}

.c-home-tech__section--centered .c-home-tech__steps {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* The $CROW token page — on-chain stat cards + launch bundle diagram */
.c-crow-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

@media screen and (min-width: 720px) {
  .c-crow-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-crow-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(3, 252, 216, 0.22);
  background: linear-gradient(165deg, rgba(3, 252, 216, 0.06) 0%, rgba(10, 13, 18, 0.92) 55%, rgba(14, 17, 22, 0.96) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  text-align: left;
}

.c-crow-stat__label {
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.78);
}

.c-crow-stat__value {
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

.c-crow-stat__hint {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

/* Second row on $CROW page: same total width as .c-crow-stats, smaller tiles */
.c-crow-stats-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 0.65rem 0 0;
  width: 100%;
}

@media screen and (min-width: 720px) {
  .c-crow-stats-secondary {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-crow-stat--compact {
  padding: 0.55rem 0.7rem;
  gap: 0.22rem;
  min-height: 0;
}

.c-crow-stat--compact .c-crow-stat__label {
  font-size: 9px;
  letter-spacing: 0.1em;
}

.c-crow-stat--compact .c-crow-stat__value {
  font-size: 1.02rem;
  font-weight: 600;
}

.c-crow-bundle-flow .c-crow-bundle-flow__wallet--compact {
  margin-bottom: 0;
}

.c-crow-bundle-flow__bundle-node {
  list-style: none;
  margin: 0;
  padding: 1rem 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.32);
  background: rgba(0, 0, 0, 0.18);
}

.c-crow-bundle-flow__bundle-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(3, 252, 216, 0.4);
  background: rgba(3, 252, 216, 0.1);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.95);
}

.c-crow-bundle-flow__bundle-title {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.c-crow-bundle-flow__bundle-text {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.68);
}

.c-crow-bundle-flow__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

@media screen and (min-width: 640px) {
  .c-crow-bundle-flow__split {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.65rem 0.5rem;
  }
}

.c-crow-bundle-flow__split-col {
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.c-crow-bundle-flow__split-col--project {
  border-color: rgba(3, 252, 216, 0.28);
  background: rgba(3, 252, 216, 0.05);
}

.c-crow-bundle-flow__split-col--crow {
  border-color: rgba(255, 140, 90, 0.35);
  background: rgba(255, 120, 70, 0.06);
}

.c-crow-bundle-flow__pct {
  display: block;
  margin-bottom: 0.35rem;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(3, 252, 216, 0.98);
}

.c-crow-bundle-flow__split-col--crow .c-crow-bundle-flow__pct {
  color: rgba(255, 160, 110, 0.98);
}

.c-crow-bundle-flow__split-title {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.c-crow-bundle-flow__split-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.c-crow-bundle-flow__split-desc strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.c-crow-bundle-flow__split-gutter {
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: 0.25rem 0;
}

@media screen and (min-width: 640px) {
  .c-crow-bundle-flow__split-gutter {
    display: flex;
  }
}

.c-crow-bundle-flow__split-gutter-line {
  width: 2px;
  flex: 1;
  min-height: 4rem;
  border-radius: 1px;
  background: linear-gradient(180deg, rgba(3, 252, 216, 0.35) 0%, rgba(255, 140, 90, 0.35) 100%);
}

.c-home-tech__section--centered .c-crow-bundle-flow {
  max-width: min(42rem, 100%);
}

code.c-code-inline,
.c-code-inline {
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.12em 0.35em;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(3, 252, 216, 0.92);
}

.c-home-tech__kicker {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.c-home-tech__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: start;
}

@media screen and (min-width: 900px) {
  .c-home-tech__split {
    grid-template-columns: 1fr minmax(220px, 38%);
  }

  .c-home-tech__split--reverse {
    grid-template-columns: minmax(220px, 38%) 1fr;
  }

  .c-home-tech__split--reverse .c-home-tech__copy {
    order: 2;
  }

  .c-home-tech__split--reverse .c-home-tech__figure-card {
    order: 1;
  }
}

.c-home-tech__list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: 0.92rem;
}

.c-home-tech__list li {
  margin-bottom: 0.75rem;
}

.c-home-tech__list li:last-child {
  margin-bottom: 0;
}

.c-home-tech__callout {
  margin: 1.1rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background: rgba(3, 252, 216, 0.07);
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.c-home-tech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.c-home-tech__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background: rgba(3, 252, 216, 0.08);
  color: rgba(3, 252, 216, 0.9);
}

.c-home-tech__figure-card {
  margin: 0;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.22);
  background: rgba(0, 0, 0, 0.28);
}

.c-home-tech__figure-card--photo {
  padding: 0.65rem;
}

.c-home-tech__svg-wrap {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.c-home-tech__svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.c-home-tech__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.c-home-tech__caption {
  margin: 0.65rem 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
}

.c-home-tech__caption a {
  color: rgba(3, 252, 216, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c-home-tech__figures-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .c-home-tech__figures-row {
    grid-template-columns: 1fr 1fr;
  }
}

.c-home-tech__compare {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(3, 252, 216, 0.18);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.85rem;
  line-height: 1.45;
}

.c-home-tech__compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.c-home-tech__compare-row:first-child {
  border-top: none;
}

@media screen and (min-width: 640px) {
  .c-home-tech__compare-row {
    grid-template-columns: minmax(7rem, 22%) 1fr 1fr;
    gap: 0.75rem;
    align-items: start;
  }
}

.c-home-tech__compare-row--head {
  background: rgba(3, 252, 216, 0.1);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.92);
}

.c-home-tech__compare-row [role='rowheader'] {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.c-home-tech__section--outro p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.c-home-tech__section--outro p:last-child {
  margin-bottom: 0;
}

.c-home-tech__section--outro .c-home-tech__note {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px dashed rgba(3, 252, 216, 0.25);
  background: rgba(3, 252, 216, 0.05);
  color: rgba(255, 255, 255, 0.72);
}

.c-tab__header-box {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: 5px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
  padding: 8rem 2rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-tab__header-box--simple {
  padding: 0 0 1rem;
  margin-bottom: 1.5rem;
  overflow: visible;
}

.c-navbar__get-started {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--border);
  background-color: var(--body);
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  display: flex;
  box-sizing: border-box;
  min-height: calc(24px + 0.9rem + 2px);
  transition: all 0.35s ease;
}

.c-navbar__get-started:hover {
  color: var(--primary);
  border-color: var(--primary);
  grid-column-gap: 1.1rem;
}

.c-tab__content--table-box {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2rem;
}

.c-tab__content--table-box__table {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.c-tab__content--table-box__table._2 {
  grid-template-columns: 1fr 1fr;
}

.c-tab__content--table-box__table._3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.c-tab__content--table-box__table--col {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: .5rem;
}

.c-tab__content--table-box__table--col.is--header {
  background-color: var(--body);
  text-transform: uppercase;
  font-weight: 700;
}

.c-docs__container {
  padding-bottom: 2rem;
}

.c-go-to-tab-button {
  width: 100%;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: 1px solid var(--border);
  background-color: var(--body);
  border-radius: 10px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.c-go-to-tab-button:hover {
  background-color: var(--border);
}

.background-video {
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.c-tab__content--figure {
  margin-left: auto;
  margin-right: auto;
}

.div-block {
  width: 250px;
  height: 100px;
  background-color: var(--primary);
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.c-docs__links {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.c-docs__nav-group {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.c-docs__nav-group-title {
  margin: 0;
  padding: .25rem .35rem 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}

.c-docs__nav-sep {
  width: 100%;
  height: 0;
  margin: .35rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 1px 0 rgba(3, 252, 216, .05);
}

.c-token-data-list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.c-token-data-list__item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  padding: .5rem 1rem;
  display: flex;
}

.c-token-data-list__item.is--faded {
  opacity: .5;
}

.c-token-data-list__item.is--coming-soon {
  justify-content: center;
  align-items: center;
}

.c-token-data-list__item--data-tag {
  opacity: .5;
}

.c-token-data-list__item-title-flex {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .c-navbar__menu-btn.w--open {
    background-color: var(--border);
    color: var(--primary);
  }

  .c-docs__layout {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .c-docs__sidebar {
    max-width: 300px;
    padding: 1rem;
  }

  .c-docs__content {
    padding: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .c-landing__layout {
    min-height: auto;
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
  }

  .c-landing__socials {
    justify-content: center;
    align-items: center;
  }

  .c-landing__spline {
    display: none;
  }

  .nav-menu {
    border: 1px solid var(--border);
    background-color: var(--dark);
    border-radius: 10px;
    margin-top: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .c-navbar__link-icon {
    margin-left: 10px;
    margin-right: 10px;
  }

  .c-docs__layout {
    flex-flow: column;
    margin-top: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    max-height: none;
    height: auto;
    overflow: visible;
  }

  .c-docs__sidebar {
    max-width: none;
    width: 100%;
    flex: none;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    top: 0;
    min-height: 0;
    overflow-x: visible;
    overflow-y: visible;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: auto;
  }

  .c-docs__content {
    flex: none;
    min-height: 0;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: visible;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: auto;
  }

  .c-docs__tab-link {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media screen and (max-width: 479px) {
  .c-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .c-landing-section {
    justify-content: center;
    align-items: flex-start;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .c-landing-nav__row {
    justify-content: center;
    align-items: center;
  }

  .c-landing__layout {
    min-height: auto;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    text-align: center;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: stretch;
  }

  .c-landing__enter-box {
    justify-content: center;
    align-items: center;
  }

  .c-landing__socials {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    display: grid;
  }

  .c-navbar__logo {
    justify-content: center;
    align-items: center;
  }

  .nav-menu {
    margin-top: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .c-navbar__link-icon {
    margin-left: 6px;
    margin-right: 6px;
  }

  .c-docs__sidebar {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 1rem;
  }

  .c-tab__heading {
    font-size: 24px;
    line-height: 32px;
  }
}

#w-node-f66fb26a-5706-af25-4d47-097235fe4fcb-8315e8a0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_615feef2-c653-3bb4-c630-aa61e27ab74b-8315e8a0 {
  align-self: auto;
}

@media screen and (max-width: 767px) {
  #w-node-f66fb26a-5706-af25-4d47-097235fe4fcb-8315e8a0 {
    grid-column: span 1 / span 1;
  }

  #w-node-cdaf517e-1921-1ae5-12ae-8bc24278dff8-8315e8a0 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_71a0d52e-1918-0392-2419-9ec7b0c1b0ff-8315e8a0 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_615feef2-c653-3bb4-c630-aa61e27ab74b-8315e8a0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-cdaf517e-1921-1ae5-12ae-8bc24278dff8-8315e8a0, #w-node-_71a0d52e-1918-0392-2419-9ec7b0c1b0ff-8315e8a0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_615feef2-c653-3bb4-c630-aa61e27ab74b-8315e8a0 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Protomono';
  src: url('../fonts/ProtoMono-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Protomono';
  src: url('../fonts/ProtoMono-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Protomono';
  src: url('../fonts/ProtoMono-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* —— Get Started / Phantom login —— */
.c-login-wrap {
  position: relative;
  z-index: 200;
}

.c-login-btn {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--border);
  background-color: var(--body);
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  display: inline-flex;
  box-sizing: border-box;
  min-height: calc(24px + 0.9rem + 2px);
  transition: border-color 0.35s ease, color 0.35s ease;
}

.c-login-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.c-login-btn:hover .c-login-btn__phantom-wrap {
  border-color: var(--primary);
}

.c-login-btn__phantom-wrap {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}

.c-login-btn__phantom {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

/* [hidden] must win: .c-login-dropdown sets display:flex, which otherwise overrides normalize [hidden] */
.c-login-dropdown[hidden] {
  display: none !important;
}

.c-login-dropdown {
  border: 1px solid var(--border);
  background-color: var(--dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  width: min(360px, calc(100vw - 2rem));
  min-height: 300px;
  box-sizing: border-box;
  margin-top: 0.5rem;
  padding: 1rem 1.1rem;
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  flex-direction: column;
}

.c-login-dropdown__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.c-login-dropdown__body:has(#login-panel-connected:not([hidden])) {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.c-login-dropdown__body:has(#login-panel-connected:not([hidden])) #login-panel-connected {
  width: 100%;
  box-sizing: border-box;
}

.c-login-dropdown__title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.c-login-step {
  border: 1px solid var(--border);
  background-color: var(--body);
  border-radius: 8px;
  margin-bottom: 0.65rem;
  padding: 0.65rem 0.75rem;
  font-size: 13px;
  line-height: 1.45;
}

.c-login-step__head {
  grid-column-gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.45rem;
  font-weight: 600;
  display: flex;
}

.c-login-step__num {
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.c-login-step.is-done .c-login-step__num {
  color: #7dffb8;
  font-size: 0;
}

.c-login-step.is-done .c-login-step__num::after {
  content: '✓';
  font-size: 14px;
  font-weight: 800;
}

.c-login-step__btn {
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--primary);
  background-color: rgba(3, 252, 216, 0.12);
  border-radius: 6px;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.4rem 0.6rem;
  transition: background-color 0.25s ease;
}

.c-login-step__btn:hover:not(:disabled) {
  background-color: rgba(3, 252, 216, 0.22);
}

.c-login-step__btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  border-color: var(--border);
  background-color: transparent;
}

.c-login-dropdown__status {
  border-radius: 6px;
  margin-top: 0.5rem;
  padding: 0.5rem 0.6rem;
  font-family: Sora, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  background-color: rgba(0, 0, 0, 0.25);
}

.c-login-dropdown__status--error {
  color: #ff9b9b;
}

.c-login-dropdown__outro[hidden] {
  display: none !important;
}

.c-login-dropdown__outro {
  grid-column-gap: 0.75rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 12px;
  display: flex;
}

.c-login-dropdown__link {
  color: var(--primary);
  font-size: 12px;
  text-decoration: underline;
}

.c-login-connected {
  margin-bottom: 0.35rem;
}

.c-login-connected__line {
  margin: 0 0 0.5rem;
  font-size: 14px;
  line-height: 1.45;
}

.c-login-connected__hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.c-get-started {
  padding-bottom: 4rem;
}

.c-get-started__hero {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.c-get-started__hero .c-tab__heading {
  letter-spacing: -1px;
  font-size: clamp(28px, 5vw, 42px);
}

.c-get-started__lead {
  opacity: 0.75;
  margin-top: 1rem;
  font-family: Sora, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

.c-get-started__grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.c-get-started__card {
  border: 1px solid var(--border);
  background-color: var(--dark);
  border-radius: 10px;
  padding: 1.35rem 1.25rem;
}

.c-get-started__card h3 {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 14px;
}

.c-get-started__card p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}

.c-get-started__note {
  border: 1px dashed var(--border);
  max-width: 1100px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1.5rem;
  font-family: Sora, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.c-get-started__note strong {
  color: var(--primary);
}

button.c-dashboard__tab {
  font: inherit;
  text-align: left;
  width: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.c-dashboard__empty {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.5;
}

.c-tab__content--rich-text-box .c-dashboard__empty {
  margin-top: 1.5rem;
}

.c-dashboard__form-row {
  margin-bottom: 1rem;
}

.c-dashboard__form-row label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--primary);
}

.c-dashboard__form-row label.c-dashboard__label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.c-dashboard__field-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.95;
}

.c-dashboard__form-row input,
.c-dashboard__form-row textarea {
  width: 100%;
  max-width: 520px;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background-color: var(--body);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}

.c-dashboard__form-row textarea {
  min-height: 100px;
  resize: vertical;
}

.c-dashboard__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-dashboard__link-list li {
  margin-bottom: 0.75rem;
}

.c-dashboard__link-list a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.c-dashboard__link-list a:hover {
  text-decoration: underline;
}

.c-dashboard__step-tag {
  color: var(--primary);
  text-align: center;
  width: 100%;
  margin: 0 0 0.85rem;
}

.c-dashboard__req {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.c-dashboard__field-hint {
  margin: 0.35rem 0 0;
  max-width: 520px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.c-dashboard__optional-block {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: rgba(0, 0, 0, 0.15);
}

.c-dashboard__optional-head {
  margin-bottom: 1.35rem;
}

.c-dashboard__optional-title {
  margin: 0 0 0.35rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.c-dashboard__optional-lead {
  margin: 0;
  max-width: 520px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.c-dashboard__optional-fields {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.c-dashboard__optional-fields .c-dashboard__form-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.c-dashboard__optional-fields .c-dashboard__label-with-icon {
  min-height: 18px;
  line-height: 1;
}

.c-dashboard__optional-fields:disabled .c-dashboard__form-row label {
  opacity: 0.55;
}

.c-dashboard__optional-legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-dashboard__doc-preview {
  margin: 0.5rem 0 0;
  max-width: 520px;
  font-size: 12px;
  line-height: 1.4;
  font-family: ui-monospace, monospace;
  color: rgba(3, 252, 216, 0.85);
  word-break: break-all;
}

.c-dashboard__doc-preview.is-warning {
  color: #e8a598;
}

.c-dashboard__step-ii {
  margin-top: 1.75rem;
  padding: 1.1rem 1.15rem;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.12);
}

.c-dashboard__step2-fields {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.c-dashboard__step2-fields:disabled {
  opacity: 0.65;
}

.c-dashboard__step2-fields:disabled .c-dashboard__upload-btn {
  cursor: not-allowed;
  border-color: var(--border);
  background-color: rgba(255, 255, 255, 0.04);
}

.c-dashboard__step-iii {
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.12);
}

.c-dashboard__step3-fields {
  border: none;
  margin: 1rem 0 0;
  padding: 0;
  min-width: 0;
}

.c-dashboard__step3-fields:disabled {
  opacity: 0.65;
}

.c-dashboard__step3-fields:disabled .c-dashboard__upload-btn {
  cursor: not-allowed;
  border-color: var(--border);
  background-color: rgba(255, 255, 255, 0.04);
}

.c-dashboard__funding-group {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem 0.7rem;
  margin: 0 0 1rem;
}

.c-dashboard__funding-group legend {
  padding: 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

/* Launch countdown: four choices in a 2×2 grid */
.c-dashboard__option-grid--2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
  margin-top: 0.25rem;
}

.c-dashboard__option-grid--2x2 .c-dashboard__category-option {
  margin: 0;
}

.c-dashboard__option-grid--2x2 .c-dashboard__category-option:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 520px) {
  .c-dashboard__option-grid--2x2 {
    grid-template-columns: 1fr;
  }
}

.c-dashboard__funding-group--launch-countdown > .c-dashboard__field-hint {
  margin-bottom: 0.15rem;
}

.c-dashboard__field-hint--vesting-path-lead {
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.c-dashboard__select {
  width: 100%;
  max-width: 520px;
  padding: 0.68rem 2.85rem 0.68rem 0.95rem;
  border-radius: 8px;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background-color: rgba(0, 0, 0, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2303fcd8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  background-size: 14px 14px;
  color: #fff;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.c-dashboard__select::-ms-expand {
  display: none;
}

.c-dashboard__select:hover {
  border-color: rgba(3, 252, 216, 0.48);
  background-color: rgba(0, 0, 0, 0.42);
}

.c-dashboard__select:focus-visible {
  outline: none;
  border-color: rgba(3, 252, 216, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 2px rgba(3, 252, 216, 0.2);
}

.c-dashboard__select option {
  background-color: var(--dark);
  color: #fff;
  font-weight: 600;
}

.c-dashboard__finalize-wrap {
  margin-top: 0.9rem;
  text-align: center;
}

.c-dashboard__finalize-wrap .c-dashboard__doc-preview {
  margin-left: auto;
  margin-right: auto;
  max-width: min(520px, 100%);
  text-align: center;
  word-break: break-word;
  white-space: pre-line;
}

.c-dashboard__finalize-wrap .c-dashboard__upload-btn {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.c-dashboard__step-ii-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.c-dashboard__step-ii-center {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-dashboard__step-ii-center .c-dashboard__form-row label {
  text-align: center;
}

.c-dashboard__step-ii-center .c-dashboard__field-hint {
  text-align: center;
}

.c-dashboard__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.c-dashboard__upload-btn {
  border: 1px solid var(--primary);
  background-color: rgba(3, 252, 216, 0.12);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0.2rem auto 0;
  padding: 0.52rem 0.95rem;
}

.c-dashboard__upload-btn:hover {
  background-color: rgba(3, 252, 216, 0.2);
}

.c-dashboard__file-name {
  margin: 0.5rem 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 360px;
  word-break: break-all;
}

.c-dashboard__input-ticker {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.c-dashboard__category-group {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem 0.7rem;
  margin: 0 0 1rem;
}

.c-dashboard__category-group legend {
  padding: 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

.c-dashboard__category-option {
  display: block;
  margin: 0 0 0.65rem;
  text-transform: none;
  cursor: pointer;
}

.c-dashboard__category-option:last-child {
  margin-bottom: 0.15rem;
}

.c-dashboard__category-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.c-dashboard__category-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.18);
  padding: 0.75rem 0.85rem;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.c-dashboard__category-option:hover .c-dashboard__category-card {
  border-color: rgba(3, 252, 216, 0.5);
  background-color: rgba(3, 252, 216, 0.08);
}

.c-dashboard__category-option input[type="radio"]:focus-visible + .c-dashboard__category-card {
  outline: 2px solid rgba(3, 252, 216, 0.4);
  outline-offset: 1px;
}

.c-dashboard__category-option input[type="radio"]:checked + .c-dashboard__category-card {
  border-color: var(--primary);
  background-color: rgba(3, 252, 216, 0.16);
  transform: translateY(-1px);
}

.c-dashboard__category-title {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.c-dashboard__category-subtitle {
  display: block;
  font-style: normal;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.c-dashboard__image-preview-wrap {
  margin-top: 0.8rem;
  width: 132px;
  height: 132px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.c-dashboard__image-preview-wrap:hover {
  border-color: var(--primary);
}

.c-dashboard__image-preview-wrap:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(3, 252, 216, 0.25);
}

.c-dashboard__image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.c-dashboard__image-placeholder {
  color: rgba(3, 252, 216, 0.7);
  font-size: 54px;
  line-height: 1;
  font-weight: 500;
  user-select: none;
  position: absolute;
  z-index: 1;
}

.c-explorer__filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem 1.15rem;
  margin-top: 1rem;
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid rgba(3, 252, 216, 0.14);
  border-radius: 8px;
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.06) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 2px 12px rgba(0, 0, 0, 0.22);
}

.c-explorer__filters .c-dashboard__form-row {
  margin-bottom: 0;
}

.c-explorer__filters .c-dashboard__form-row label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.42rem;
  color: rgba(3, 252, 216, 0.88);
  text-shadow: 0 0 12px rgba(3, 252, 216, 0.2);
}

.c-explorer__filters .c-dashboard__select {
  max-width: none;
}

.c-explorer__grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.c-explorer__card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.18);
  padding: 1.05rem 1rem 1.1rem;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 0.9rem 1rem;
  align-items: stretch;
  min-height: 0;
}

.c-explorer__thumb {
  width: 78px;
  height: 78px;
  max-width: 78px;
  max-height: 78px;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.04);
  align-self: start;
  flex-shrink: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-explorer__main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.c-explorer__rosters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  align-items: start;
}

@media screen and (min-width: 720px) {
  .c-explorer__rosters {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.85rem;
    align-items: start;
  }
}

.c-explorer__roster {
  border: 1px solid rgba(3, 252, 216, 0.14);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  padding: 0.42rem 0.5rem 0.48rem;
}

.c-explorer__roster-title {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.88);
  margin-bottom: 0.32rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.c-explorer__roster-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-explorer__roster-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.45rem 0.65rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.c-explorer__roster-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.c-explorer__roster-k {
  flex: 0 0 5.6rem;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.c-explorer__roster-v {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  text-align: right;
  font-family: Sora, sans-serif;
}

.c-explorer__roster-v .c-explorer__roster-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0;
  text-transform: none;
}

.c-explorer__roster-empty {
  color: rgba(255, 255, 255, 0.35);
}

.c-explorer__roster-a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  flex-wrap: wrap;
  color: rgba(3, 252, 216, 0.92);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-explorer__roster-a:hover {
  color: var(--primary);
}

.c-explorer__roster-funding {
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.32rem;
}

.c-explorer__roster-funding-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.78);
  text-align: center;
}

.c-explorer__funding.c-explorer__funding--roster {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  min-height: 2.75rem;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  justify-content: center;
  padding: 0.55rem 0.5rem;
}

.c-explorer__links {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.c-explorer__link {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.14rem 0.42rem;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(3, 252, 216, 0.88);
  text-decoration: none;
}

.c-explorer__link-icon {
  opacity: 0.85;
}

.c-explorer__link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.c-explorer__title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.55rem 1rem;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.c-explorer__title-part {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.32rem;
  padding: 0.42rem 0.62rem 0.48rem;
  border-radius: 9px;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.11) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.15) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 2px 10px rgba(0, 0, 0, 0.22);
  flex: 1 1 180px;
  min-height: 52px;
  min-width: 0;
  max-width: 100%;
}

.c-explorer__title-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.92);
  text-shadow: 0 0 12px rgba(3, 252, 216, 0.25);
  text-align: left;
  align-self: flex-start;
  width: 100%;
}

.c-explorer__title-value {
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #fff;
  line-height: 1.25;
  word-break: break-word;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 1.75rem;
}

.c-explorer__title-value--ticker {
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.015em;
  color: #fff;
  text-transform: uppercase;
}

.c-explorer__subtitle {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.64);
}

.c-explorer__meta {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.c-explorer__chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.16rem 0.45rem;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.78);
}

.c-explorer__funding {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(3, 252, 216, 0.98);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.05em;
  text-align: right;
  min-width: 98px;
  min-height: 42px;
  padding: 0.35rem 0.52rem;
  border-radius: 8px;
  border: 1px solid rgba(3, 252, 216, 0.42);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.18) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.22) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-explorer__side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 232px;
  gap: 0.55rem;
}

.c-explorer__top-right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.5rem;
  align-self: flex-end;
  width: 100%;
}

.c-explorer__top-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.c-explorer__mid-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.45rem;
  flex: 1 1 auto;
  margin-top: auto;
  width: 100%;
  min-height: 0;
}

.c-explorer__posted {
  font-size: 10px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.c-explorer__elapsed {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(3, 252, 216, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.c-explorer__cta,
.c-explorer__more-info {
  border: 1px solid rgba(3, 252, 216, 0.42);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.18) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.22) 100%);
  color: rgba(3, 252, 216, 0.98);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  min-height: 42px;
  padding: 0.35rem 0.72rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
}

.c-explorer__more-info {
  text-transform: uppercase;
}

.c-explorer__cta {
  text-transform: none;
}

.c-explorer__cta:hover,
.c-explorer__more-info:hover {
  border-color: rgba(3, 252, 216, 0.6);
  color: #fff;
  filter: brightness(1.07);
}

.c-explorer__card.is-placeholder .c-explorer__thumb,
.c-explorer__card.is-placeholder .c-explorer__title,
.c-explorer__card.is-placeholder .c-explorer__title-part,
.c-explorer__card.is-placeholder .c-explorer__subtitle,
.c-explorer__card.is-placeholder .c-explorer__roster-title,
.c-explorer__card.is-placeholder .c-explorer__roster-funding-label,
.c-explorer__card.is-placeholder .c-explorer__roster-k,
.c-explorer__card.is-placeholder .c-explorer__roster-v,
.c-explorer__card.is-placeholder .c-explorer__funding,
.c-explorer__card.is-placeholder .c-explorer__posted,
.c-explorer__card.is-placeholder .c-explorer__elapsed,
.c-explorer__card.is-placeholder .c-explorer__more-info,
.c-explorer__card.is-placeholder .c-explorer__cta {
  background-color: rgba(255, 255, 255, 0.06);
  color: transparent;
  border-color: rgba(255, 255, 255, 0.08);
}

.c-explorer__card.is-placeholder .c-explorer__title {
  width: 100%;
  min-height: 44px;
  height: auto;
  gap: 0.65rem 1.35rem;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.c-explorer__card.is-placeholder .c-explorer__title-part {
  flex: 1 1 38%;
  min-width: 72px;
  min-height: 38px;
  border-radius: 8px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.c-explorer__card.is-placeholder .c-explorer__subtitle {
  width: 88%;
  height: 11px;
  border-radius: 4px;
  margin-top: 0.4rem;
}

.c-explorer__card.is-placeholder .c-explorer__roster-title {
  width: 48%;
  max-width: 120px;
  height: 9px;
  margin-bottom: 0.4rem;
  border-bottom: none;
  padding-bottom: 0;
}

.c-explorer__card.is-placeholder .c-explorer__roster-k {
  width: 52px;
  height: 10px;
  flex: 0 0 auto;
}

.c-explorer__card.is-placeholder .c-explorer__roster-v {
  width: 44px;
  height: 11px;
  flex: 0 0 auto;
}

.c-explorer__card.is-placeholder .c-explorer__roster-funding-label {
  width: 64px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}

.c-explorer__card.is-placeholder .c-explorer__funding.c-explorer__funding--roster {
  width: 100%;
  height: 36px;
  border-radius: 8px;
}

.c-explorer__card.is-placeholder .c-explorer__funding:not(.c-explorer__funding--roster) {
  width: 98px;
  height: 30px;
  border-radius: 8px;
  justify-self: end;
}

.c-explorer__card.is-placeholder .c-explorer__posted {
  width: 82px;
  height: 12px;
  border-radius: 4px;
}

.c-explorer__card.is-placeholder .c-explorer__elapsed {
  width: 72px;
  height: 13px;
  border-radius: 4px;
}

.c-explorer__card.is-placeholder .c-explorer__more-info,
.c-explorer__card.is-placeholder .c-explorer__cta {
  width: 100%;
  min-height: 34px;
  height: 34px;
}

.c-explorer__pager {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.c-explorer-pager__nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.72);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.c-explorer-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.c-explorer-pager__btn:hover:not(:disabled) {
  color: var(--primary);
  border-color: rgba(3, 252, 216, 0.28);
  background: rgba(3, 252, 216, 0.07);
}

.c-explorer-pager__btn:focus-visible {
  outline: none;
  border-color: rgba(3, 252, 216, 0.55);
  box-shadow: 0 0 0 2px rgba(3, 252, 216, 0.2);
}

.c-explorer-pager__btn:active:not(:disabled) {
  background: rgba(3, 252, 216, 0.12);
}

.c-explorer-pager__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.4);
}

.c-explorer-pager__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.c-explorer-pager__icon svg {
  display: block;
}

.c-explorer-pager__indicator {
  min-width: 6.5rem;
  margin: 0 0.35rem;
  padding: 0 0.25rem;
  text-align: center;
  font-family: Sora, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.3;
}

@media screen and (max-width: 479px) {
  .c-explorer-pager__nav {
    padding: 0.3rem 0.35rem;
    gap: 0.15rem;
  }

  .c-explorer-pager__btn {
    width: 2.15rem;
    height: 2.15rem;
  }

  .c-explorer-pager__indicator {
    min-width: 5.25rem;
    margin: 0 0.2rem;
    font-size: 0.65rem;
  }
}

.c-explorer__view[hidden] {
  display: none !important;
}

.c-explorer-allocations__shell.c-tab__content--rich-text-box {
  padding: 1.35rem 1.25rem 1.5rem;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .c-explorer-allocations__shell.c-tab__content--rich-text-box {
    padding: 1.5rem 1.5rem 1.65rem;
  }
}

.c-explorer-allocations__lede {
  margin: 0 0 1.1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.22);
  background: rgba(3, 252, 216, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.c-explorer-allocations__lede strong {
  color: rgba(3, 252, 216, 0.95);
  font-weight: 600;
}

.c-explorer-allocations__info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 0.15rem;
}

@media screen and (min-width: 720px) {
  .c-explorer-allocations__info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.15rem;
    align-items: start;
  }
}

.c-explorer-allocations__info-card {
  margin: 0;
  padding: 0.85rem 1rem 0.95rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-width: 0;
  overflow: visible;
}

.c-explorer-allocations__info-title {
  margin: 0 0 0.5rem;
  font-family: Protomono, ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.88);
}

.c-explorer-allocations__info-body {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.c-explorer-allocations__info-body strong {
  color: rgba(3, 252, 216, 0.92);
  font-weight: 600;
}

/* .w-richtext ol { overflow: hidden } clips markers — restore for this list */
.c-explorer-allocations__shell .c-explorer-allocations__steps {
  overflow: visible;
  list-style-type: decimal;
  list-style-position: outside;
  margin: 0;
  padding: 0 0 0 1.65rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.c-explorer-allocations__steps li {
  margin: 0 0 0.4rem;
  padding-left: 0.35rem;
}

.c-explorer-allocations__steps li:last-child {
  margin-bottom: 0;
}

.c-explorer-allocations__steps strong {
  color: rgba(3, 252, 216, 0.92);
  font-weight: 600;
}

.c-explorer-allocations__info-foot {
  margin: 0.65rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

.c-explorer-allocations__info-foot strong {
  color: rgba(3, 252, 216, 0.88);
  font-weight: 600;
}

.c-explorer-allocations__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin: 1.25rem 0 0.45rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.c-explorer-allocations__status {
  flex: 1 1 14rem;
  margin: 0 !important;
  min-width: 0;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.45;
}

.c-explorer-allocations__status.c-dashboard__doc-preview {
  max-width: none;
  font-family: Sora, sans-serif;
  word-break: normal;
  overflow-wrap: anywhere;
}

.c-explorer-allocations__toolbar-actions {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 639px) {
  .c-explorer-allocations__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .c-explorer-allocations__status {
    flex: none;
    width: 100%;
    text-align: center;
    order: 2;
  }

  .c-explorer-allocations__toolbar-actions {
    justify-content: center;
    width: 100%;
    order: 1;
  }
}

.c-explorer-allocations__refresh {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 11.5rem;
  min-height: 2.65rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(3, 252, 216, 0.45);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.18) 0%, rgba(0, 0, 0, 0.35) 100%);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-explorer-allocations__refresh:hover:not(:disabled) {
  border-color: rgba(3, 252, 216, 0.7);
  filter: brightness(1.06);
}

.c-explorer-allocations__refresh:disabled {
  cursor: wait;
  filter: none;
}

/* `hidden` loses to display rules in some browsers; use .is-loading only one panel shows */
.c-explorer-allocations__refresh-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.c-explorer-allocations__refresh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(3, 252, 216, 0.95);
  line-height: 0;
}

.c-explorer-allocations__refresh-icon svg {
  display: block;
}

.c-explorer-allocations__refresh-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.c-explorer-allocations__refresh.is-loading .c-explorer-allocations__refresh-label {
  display: none;
}

.c-explorer-allocations__refresh.is-loading .c-explorer-allocations__refresh-loading {
  display: inline-flex;
}

.c-explorer-allocations__refresh-spinner {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(3, 252, 216, 0.22);
  border-top-color: rgba(3, 252, 216, 0.95);
  border-radius: 50%;
  animation: c-explorer-allocations-refresh-spin 0.7s linear infinite;
}

.c-explorer-allocations__refresh-loading-text {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

@keyframes c-explorer-allocations-refresh-spin {
  to {
    transform: rotate(360deg);
  }
}

.c-explorer-allocations {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.c-explorer-allocations__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(3, 252, 216, 0.22);
  border-radius: 10px;
  background: rgba(12, 16, 22, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.c-explorer-allocations__thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.c-explorer-allocations__thumb--empty {
  background: rgba(255, 255, 255, 0.06);
}

.c-explorer-allocations__main {
  flex: 1 1 160px;
  min-width: 0;
}

.c-explorer-allocations__titles {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.c-explorer-allocations__ticker {
  color: rgba(3, 252, 216, 0.9);
  font-weight: 600;
}

.c-explorer-allocations__meta {
  margin-top: 0.25rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.c-explorer-allocations__amounts-wrap {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.c-explorer-allocations__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: flex-start;
}

.c-explorer-allocations__curve-est {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.c-explorer-allocations__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.c-explorer-allocations__label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.75);
}

.c-explorer-allocations__value {
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.c-explorer-allocations__check {
  box-sizing: border-box;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13rem;
  border: 1px solid rgba(3, 252, 216, 0.45);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.18) 0%, rgba(0, 0, 0, 0.35) 100%);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
}

.c-explorer-allocations__check:hover {
  border-color: rgba(3, 252, 216, 0.7);
  filter: brightness(1.06);
}

.c-explorer-allocations__check:disabled {
  cursor: wait;
  filter: none;
}

.c-explorer-allocations__check-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.c-explorer-allocations__check-spinner {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid rgba(3, 252, 216, 0.22);
  border-top-color: rgba(3, 252, 216, 0.95);
  border-radius: 50%;
  animation: c-explorer-allocations-refresh-spin 0.7s linear infinite;
}

.c-explorer-allocations__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  flex-shrink: 0;
}

.c-explorer-allocations__claim {
  box-sizing: border-box;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13rem;
  border: 1px solid rgba(3, 252, 216, 0.45);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.18) 0%, rgba(0, 0, 0, 0.35) 100%);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
}

.c-explorer-allocations__claim:hover {
  border-color: rgba(3, 252, 216, 0.7);
  filter: brightness(1.06);
}

.c-explorer-claim[hidden] {
  display: none !important;
}

.c-explorer-claim {
  position: fixed;
  inset: 0;
  z-index: 1335;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.c-explorer-claim__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 14, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.c-explorer-claim__card {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100vw - 2rem));
  margin: 0;
  padding: 1.15rem 1.25rem 1.15rem;
  padding-top: 0.95rem;
  border: 1px solid rgba(3, 252, 216, 0.35);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(3, 252, 216, 0.08) 0%, rgba(12, 16, 22, 0.98) 45%, rgba(18, 21, 26, 0.99) 100%);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.48);
}

.c-explorer-claim__head {
  text-align: center;
  padding: 0 2.15rem 0.85rem;
}

.c-explorer-claim__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.c-explorer-claim__project {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(3, 252, 216, 0.92);
}

.c-explorer-claim__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(3, 252, 216, 0.12);
}

.c-explorer-claim__row {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.c-explorer-claim__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.78);
  font-weight: 700;
}

.c-explorer-claim__value {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  word-break: break-all;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.c-explorer-claim__hint {
  box-sizing: border-box;
  margin: 0.35rem 0 0;
  padding: 0.55rem 0.65rem;
  min-height: 7.5rem;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(3, 252, 216, 0.1);
}

.c-explorer-claim__hint--warn {
  color: #e8a598;
}

.c-explorer-claim__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(3, 252, 216, 0.12);
  justify-content: center;
  align-items: center;
}

.c-explorer-claim__btn {
  box-sizing: border-box;
  flex: 0 0 auto;
  min-width: 10.5rem;
  border: 1px solid rgba(3, 252, 216, 0.45);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  min-height: 40px;
}

.c-explorer-claim__btn:hover:not(:disabled) {
  border-color: rgba(3, 252, 216, 0.7);
  filter: brightness(1.06);
}

.c-explorer-claim__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.c-explorer-claim__btn--ghost {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.18);
}

.c-explorer-claim__btn--ghost:hover:not(:disabled) {
  border-color: rgba(3, 252, 216, 0.45);
}

.c-explorer-allocation[hidden] {
  display: none !important;
}

.c-explorer-allocation {
  position: fixed;
  inset: 0;
  z-index: 1310;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.c-explorer-allocation__card {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100vw - 2rem));
  max-height: min(90vh, 720px);
  overflow: auto;
  margin: 0;
}

.c-explorer-allocation__head {
  margin-bottom: 0.65rem;
  padding-right: 2.25rem;
}

/* Single-line heading — do not reuse .c-explorer-detail__subtitle (fixed 108px description box). */
.c-explorer-allocation__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  letter-spacing: 0.02em;
}

.c-explorer-allocation__body {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.c-explorer-allocation__body .c-explorer-detail__stats {
  margin-top: 0.35rem;
}

.c-explorer-allocation__body .c-explorer-detail__stat {
  align-items: flex-start;
}

.c-explorer-allocation__body .c-explorer-detail__stat-value {
  text-align: right;
  max-width: 70%;
}

.c-explorer-allocation__note {
  margin: 0.75rem 0 0;
  padding: 0.55rem 0.65rem;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(3, 252, 216, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.c-explorer-allocation__sim-summary {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.2);
  background: rgba(3, 252, 216, 0.06);
}

.c-explorer-allocation__sim-summary-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.c-explorer-allocation__sim-muted {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.c-explorer-allocation__sim {
  margin: 0.55rem 0 0;
}

.c-explorer-allocation__sim-toggle {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(3, 252, 216, 0.38);
  border-radius: 10px;
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.14) 0%, rgba(0, 0, 0, 0.32) 100%);
  color: #fff;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.c-explorer-allocation__sim-toggle:hover {
  border-color: rgba(3, 252, 216, 0.62);
  filter: brightness(1.05);
}

.c-explorer-allocation__sim-toggle-label {
  flex: 1;
  min-width: 0;
}

.c-explorer-allocation__sim-chevron {
  flex-shrink: 0;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: rgba(3, 252, 216, 0.85);
  transition: transform 0.2s ease;
}

.c-explorer-allocation__sim-toggle[aria-expanded='true'] .c-explorer-allocation__sim-chevron {
  transform: rotate(-180deg);
}

.c-explorer-allocation__sim-panel {
  margin-top: 0.45rem;
  padding: 0.65rem 0.75rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.14);
  background: rgba(0, 0, 0, 0.22);
}

.c-explorer-allocation__sim-panel[hidden] {
  display: none !important;
}

.c-explorer-allocation__sim-panel-lead {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.c-explorer-allocation__sim-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.c-explorer-allocation__sim-list li {
  margin: 0.35rem 0 0;
}

.c-explorer-allocation__sim-list li:first-child {
  margin-top: 0;
}

.c-explorer-allocation__sim-list strong {
  color: rgba(3, 252, 216, 0.82);
  font-weight: 600;
}

.c-explorer-allocation__disclaimer {
  margin: 0.85rem 0 0;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
}

.c-docs__content--gate-host {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.c-explorer-allocations-gate-host {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 16rem;
}

.c-explorer-allocations-gate-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

#creator-gate-main[hidden] {
  display: none !important;
}

.c-creator-login-gate[hidden] {
  display: none !important;
}

.c-creator-login-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem 3rem;
  flex: 1;
  min-height: min(52vh, 28rem);
  box-sizing: border-box;
}

.c-creator-login-gate__card {
  width: min(420px, 100%);
  margin: 0;
  padding: 1.25rem 1.35rem 1.2rem;
  border: 1px solid rgba(3, 252, 216, 0.35);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(3, 252, 216, 0.08) 0%, rgba(12, 16, 22, 0.98) 45%, rgba(18, 21, 26, 0.99) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.c-creator-login-gate__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.c-creator-login-gate__text {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.c-creator-login-gate__hint {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
}

.c-finalize-modal[hidden] {
  display: none !important;
}

.c-finalize-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.c-finalize-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 15, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.c-finalize-modal__card {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100vw - 2rem));
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(18, 21, 26, 0.96);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.48);
  padding: 1.1rem 1.2rem 1rem;
  text-align: center;
}

.c-finalize-modal__state {
  margin-top: 0.65rem;
}

.c-finalize-modal__project-name {
  margin: 0.5rem 0 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  font-family: Sora, sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
}

.c-finalize-modal__spinner-row {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.c-finalize-modal__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(3, 252, 216, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: c-finalize-spin 0.75s linear infinite;
}

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

.c-finalize-modal__loading-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  font-family: Sora, sans-serif;
}

.c-finalize-modal__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
}

.c-finalize-modal__image {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  object-fit: cover;
  display: block;
}

.c-finalize-modal__image[hidden] {
  display: none !important;
}

.c-finalize-modal__message {
  margin: 0.9rem 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.c-finalize-modal__actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.c-finalize-modal__actions .c-dashboard__upload-btn {
  margin: 0;
  min-width: 150px;
  min-height: 40px;
}

.c-my-projects {
  min-width: 0;
  max-width: 100%;
}

.c-my-projects__intro {
  margin: 0.5rem 0 0;
  max-width: 42rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.c-my-projects__error {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.45);
  background: rgba(255, 60, 60, 0.08);
  color: #ffb4b4;
  font-size: 0.85rem;
}

.c-my-projects__empty {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.c-my-projects__empty a {
  color: var(--primary);
}

.c-my-projects__code {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.75);
}

.c-my-projects__list {
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
}

.c-my-projects__loading {
  list-style: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.c-my-projects__card {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.2rem;
  background: rgba(12, 14, 18, 0.55);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.c-my-projects__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c-my-projects__thumb {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-my-projects__thumb--placeholder {
  background: rgba(255, 255, 255, 0.06);
}

.c-my-projects__card-titles {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.c-my-projects__name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.c-my-projects__ticker {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.c-my-projects__desc-box {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.75rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.c-my-projects__desc-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 0.4rem;
}

.c-my-projects__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.c-my-projects__desc-empty {
  font-style: italic;
  color: rgba(255, 255, 255, 0.38);
}

.c-my-projects__meta {
  margin: 0.85rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  justify-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.75rem 1.1rem;
  font-size: 0.75rem;
  width: 100%;
  max-width: min(100%, 26rem);
  box-sizing: border-box;
}

.c-my-projects__meta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 0;
  width: 100%;
}

.c-my-projects__meta dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.c-my-projects__meta dd {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
}

.c-my-projects__status {
  font-family: Sora, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.c-my-projects__status--launched {
  color: rgba(86, 220, 140, 0.95);
}

.c-my-projects__status--not-live {
  color: rgba(255, 120, 120, 0.92);
}

.c-my-projects__streamflow-msg {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  max-width: 22rem;
}

.c-my-projects__streamflow-btn {
  display: inline-flex;
  margin-top: 0.1rem;
}

.c-my-projects__disperser-na {
  font-family: Sora, sans-serif;
}

.c-my-projects__wallet-not-used {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-style: italic;
}

.c-my-projects__addr-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0.15rem 0 0;
}

.c-my-projects__addr-short {
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
}

.c-my-projects__copy-btn {
  margin: 0;
  padding: 0.22rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(3, 252, 216, 0.35);
  border-radius: 5px;
  background: rgba(3, 252, 216, 0.08);
  color: var(--primary);
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.c-my-projects__copy-btn:hover {
  background: rgba(3, 252, 216, 0.16);
  border-color: rgba(3, 252, 216, 0.5);
}

.c-my-projects__streamflow-wallet-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin: 0.5rem 0 0.2rem;
  text-align: center;
}

.c-my-projects-modal__text--funding-label {
  margin: 0;
  text-align: center;
  width: 100%;
}

.c-my-projects__addr-full {
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  line-height: 1.45;
  word-break: break-all;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.c-my-projects__copy-btn--streamflow {
  flex-shrink: 0;
  min-width: 7.5rem;
  min-height: 2.35rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.c-my-projects__copy-btn--streamflow:disabled {
  opacity: 1;
  cursor: default;
  border-color: rgba(3, 252, 216, 0.45);
  color: rgba(3, 252, 216, 0.95);
}

.c-my-projects__actions {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.c-my-projects__actions-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.c-my-projects__actions-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  width: 100%;
}

.c-my-projects__force-launch {
  border-color: rgba(255, 180, 100, 0.45);
  color: rgba(255, 210, 160, 0.95);
}

.c-my-projects__actions-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.c-my-projects__actions-launch-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.c-my-projects__actions-primary .c-dashboard__upload-btn,
.c-my-projects__actions-buttons .c-dashboard__upload-btn {
  margin: 0;
}

.c-my-projects__actions-buttons .c-my-projects__claim-fees {
  min-width: 11.5rem;
  min-height: 2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.c-my-projects__launch {
  margin: 0;
}

.c-my-projects__claim-fees:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.2);
}

.c-my-projects__launched {
  font-size: 0.82rem;
  color: rgba(3, 252, 216, 0.9);
}

.c-my-projects__actions-sep {
  width: 100%;
  height: 0;
  margin: 1.1rem 0 0.75rem;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.c-my-projects__link {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: center;
  padding: 0.2rem 0;
}

.c-my-projects__link:hover {
  color: var(--primary);
}

.c-my-projects-modal[hidden] {
  display: none !important;
}

.c-my-projects-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.c-my-projects-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(10, 12, 15, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.c-my-projects-modal__card {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100vw - 2rem));
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(18, 21, 26, 0.96);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.48);
  padding: 1.15rem 1.25rem 1.1rem;
  text-align: left;
}

.c-my-projects-modal__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
}

.c-my-projects-modal__text {
  margin: 0.75rem 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.c-my-projects-modal__warning {
  margin: 0.65rem 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 200, 120, 0.88);
}

.c-my-projects-modal__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.c-my-projects-modal__actions .c-dashboard__upload-btn {
  margin: 0;
}

.c-my-projects-modal__confirm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 15.75rem;
  min-height: 2.7rem;
  box-sizing: border-box;
}

.c-my-projects-modal__confirm-text--busy {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.c-my-projects-modal__confirm-btn.is-busy .c-my-projects-modal__confirm-text--idle {
  display: none;
}

.c-my-projects-modal__confirm-btn.is-busy .c-my-projects-modal__confirm-text--busy {
  display: inline-flex;
}

.c-my-projects-modal__spinner {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: c-my-projects-modal-spin 0.65s linear infinite;
}

@keyframes c-my-projects-modal-spin {
  to {
    transform: rotate(360deg);
  }
}

.c-my-projects-modal__btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: rgba(255, 255, 255, 0.75);
}

.c-my-projects-modal__feedback {
  margin-top: 0.75rem;
  min-height: 0;
}

.c-my-projects-modal__feedback.has-message {
  min-height: 2.75rem;
}

.c-my-projects-modal__status {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

.c-my-projects-modal__status.is-error {
  color: #ffb4b4;
}

.c-my-projects-modal__status.is-ok {
  color: rgba(120, 230, 170, 0.95);
}

.c-my-projects-modal__streamflow-status-slot {
  min-height: 2.9rem;
  margin-top: 0.65rem;
  display: flex;
  align-items: flex-start;
}

.c-my-projects-modal__status--streamflow {
  width: 100%;
  margin: 0;
}

.c-my-projects-modal__label {
  display: block;
  margin: 0.85rem 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.78);
}

.c-my-projects-modal__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.35rem;
  padding: 0.45rem 0.55rem;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(3, 252, 216, 0.22);
  border-radius: 6px;
}

.c-my-projects__addr-row--modal {
  justify-content: flex-start;
}

.c-explorer-detail[hidden] {
  display: none !important;
}

.c-explorer-detail {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.c-explorer-detail__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 14, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.c-explorer-detail__card {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 2rem));
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(18, 21, 26, 0.98);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.48);
  padding: 1rem 1rem 0.95rem;
}

.c-explorer-detail__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.c-explorer-detail__close:hover {
  color: #ff5a5a;
  border-color: rgba(255, 90, 90, 0.7);
  background: rgba(255, 90, 90, 0.12);
}

.c-explorer-detail__head {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.c-explorer-detail__image {
  width: 90px;
  height: 90px;
  max-width: 90px;
  max-height: 90px;
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid var(--border);
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-explorer-detail__head-text {
  min-width: 0;
  flex: 1 1 auto;
  width: 100%;
  padding-right: 2.25rem;
}

.c-explorer-detail__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.55rem 1rem;
}

.c-explorer-detail__title .c-explorer__title-part {
  padding: 0.55rem 0.78rem 0.62rem;
  border-radius: 10px;
}

.c-explorer-detail__title .c-explorer__title-label {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.c-explorer-detail__title .c-explorer__title-value {
  font-size: 19px;
}

.c-explorer-detail__title .c-explorer__title-value--ticker {
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.015em;
  font-family: inherit;
}

.c-explorer-detail__subtitle {
  margin: 0.45rem 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(3, 252, 216, 0.2);
  border-radius: 10px;
  background: rgba(5, 9, 13, 0.52);
  min-height: 108px;
  max-height: 108px;
  padding: 0.55rem 0.68rem;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.c-explorer-detail__meta {
  margin-top: 0.8rem;
}

.c-explorer-detail__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.c-explorer-detail__stat {
  border: 1px solid rgba(3, 252, 216, 0.2);
  border-radius: 10px;
  background: rgba(5, 9, 13, 0.45);
  padding: 0.5rem 0.6rem;
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.c-explorer-detail__stat-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.9);
}

.c-explorer-detail__stat-value {
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
}

.c-explorer-detail__meta-row {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.c-explorer-detail__links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.c-explorer-detail__actions {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}

.c-explorer-detail__funding {
  min-width: 152px;
}

.c-explorer-contribute[hidden] {
  display: none !important;
}

.c-explorer-contribute {
  position: fixed;
  inset: 0;
  z-index: 1320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.c-explorer-contribute__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 14, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.c-explorer-contribute__card {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 1.5rem));
  max-height: min(92vh, 900px);
  overflow-y: auto;
  border-radius: 14px;
  padding: 1.35rem 1.55rem 1.45rem;
  border: 1px solid rgba(3, 252, 216, 0.35);
  background: linear-gradient(165deg, rgba(3, 252, 216, 0.1) 0%, rgba(12, 16, 22, 0.98) 38%, rgba(18, 21, 26, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 24px 56px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.c-explorer-contribute__hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 1px minmax(17rem, 1fr);
  gap: 0 1.5rem;
  align-items: stretch;
  margin-bottom: 0.85rem;
}

.c-explorer-contribute__hero-divider {
  width: 1px;
  margin: 0;
  padding: 0;
  align-self: stretch;
  min-height: 4.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.14) 12%,
    rgba(255, 255, 255, 0.14) 88%,
    rgba(255, 255, 255, 0) 100%
  );
}

.c-explorer-contribute__hero-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.c-explorer-contribute__hero-left .c-explorer-contribute__head {
  text-align: left;
  margin-bottom: 0;
}

.c-explorer-contribute__hero-left .c-explorer-contribute__text,
.c-explorer-contribute__hero-left .c-explorer-contribute__text--center {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.c-explorer-contribute__hero-left .c-explorer-contribute__claim-hint {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.c-explorer-contribute__hero-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-explorer-contribute__mid.c-explorer-contribute__mid--hero {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  width: 100%;
  align-items: stretch;
}

.c-explorer-contribute__mid.c-explorer-contribute__mid--hero .c-explorer-contribute__calc {
  width: 100%;
  max-width: none;
  align-items: stretch;
}

.c-explorer-contribute__mid.c-explorer-contribute__mid--hero .c-explorer-contribute__field-label {
  text-align: left;
  width: 100%;
}

.c-explorer-contribute__sol-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.45rem;
  width: 100%;
}

.c-explorer-contribute__check-btn {
  flex-shrink: 0;
  align-self: stretch;
  box-sizing: border-box;
  border: 1px solid rgba(3, 252, 216, 0.45);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  min-height: 42px;
  transition: border-color 0.2s ease, filter 0.2s ease;
}

.c-explorer-contribute__check-btn:hover {
  border-color: rgba(3, 252, 216, 0.72);
  filter: brightness(1.06);
}

.c-explorer-contribute__mid.c-explorer-contribute__mid--hero .c-explorer-contribute__estimate-slot {
  margin-top: 0.45rem;
  min-height: 3.25rem;
  justify-content: flex-start;
}

.c-explorer-contribute__mid.c-explorer-contribute__mid--hero .c-explorer-contribute__estimate {
  text-align: left;
  max-width: none;
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  .c-explorer-contribute__hero-row {
    grid-template-columns: 1fr;
    gap: 0.75rem 0;
  }

  .c-explorer-contribute__hero-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.14) 18%,
      rgba(255, 255, 255, 0.14) 82%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

.c-explorer-contribute__head {
  text-align: center;
  margin-bottom: 0.15rem;
}

.c-explorer-contribute__title {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-explorer-contribute__project {
  margin: 0.45rem 0 0;
  color: rgba(3, 252, 216, 0.95);
  font-size: 12px;
  font-weight: 600;
}

.c-explorer-contribute__text {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.c-explorer-contribute__text--center {
  text-align: center;
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.c-explorer-contribute__claim-hint {
  margin: 0.5rem auto 0;
  max-width: 34rem;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(3, 252, 216, 0.82);
}

.c-explorer-contribute__wallet-section {
  margin-top: 0.65rem;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.c-explorer-contribute__streamflow-pending {
  padding: 1rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.35);
  background: rgba(0, 0, 0, 0.22);
  margin-bottom: 0.35rem;
}

.c-explorer-contribute__streamflow-pending[hidden] {
  display: none !important;
}

.c-explorer-contribute__text--streamflow {
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.c-explorer-contribute__wallet-inner[hidden] {
  display: none !important;
}

.c-explorer-contribute__wallet-gate {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem 1.05rem;
  text-align: left;
  border-radius: 10px;
  background: linear-gradient(165deg, rgba(3, 252, 216, 0.07) 0%, rgba(10, 13, 18, 0.96) 55%, rgba(12, 15, 20, 0.98) 100%);
  border: 1px solid rgba(3, 252, 216, 0.42);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.c-explorer-contribute__wallet-gate[hidden] {
  display: none !important;
}

.c-explorer-contribute__wallet-gate__eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.88);
}

.c-explorer-contribute__wallet-gate__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
}

.c-explorer-contribute__wallet-gate__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52rem;
}

.c-explorer-contribute__wallet-gate__note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  max-width: 42rem;
}

.c-explorer-contribute__wallet-wrap {
  margin-top: 0;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background: linear-gradient(180deg, rgba(3, 252, 216, 0.08) 0%, rgba(5, 10, 14, 0.72) 100%);
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.28rem 0.55rem 0.24rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.c-explorer-contribute__wallet-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.9);
  font-weight: 700;
}

.c-explorer-contribute__wallet-row {
  margin-top: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.c-explorer-contribute__wallet {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #fff;
  font-size: 13px;
  line-height: 1.38;
  letter-spacing: 0.02em;
  word-break: break-all;
  background: transparent;
  padding: 0;
  user-select: text;
  cursor: text;
}

.c-explorer-contribute__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.c-explorer-contribute__mid .c-explorer-contribute__calc {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  width: 100%;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-explorer-contribute__mid .c-explorer-contribute__field-label {
  text-align: center;
  width: 100%;
}

.c-explorer-contribute__mid .c-explorer-contribute__input {
  max-width: 280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-explorer-contribute__mid .c-explorer-contribute__input--sol {
  max-width: none;
  width: auto;
  flex: 1 1 7rem;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
}

.c-explorer-contribute__field-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.88);
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-align: center;
}

.c-explorer-contribute__input {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background: rgba(5, 9, 13, 0.85);
  color: rgba(3, 252, 216, 0.98);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
  color-scheme: dark;
}

.c-explorer-contribute__input[type='number']::-webkit-outer-spin-button,
.c-explorer-contribute__input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.c-explorer-contribute__input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.c-explorer-contribute__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.c-explorer-contribute__input:focus-visible {
  outline: none;
  border-color: rgba(3, 252, 216, 0.55);
  box-shadow: 0 0 0 2px rgba(3, 252, 216, 0.15);
}

.c-explorer-contribute__input--tx {
  max-width: none;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 11px;
}

.c-explorer-contribute__estimate-slot {
  margin-top: 0.45rem;
  min-height: 5.75rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.c-explorer-contribute__estimate {
  margin: 0;
  width: 100%;
  max-width: 22rem;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: normal;
}

.c-explorer-contribute__estimate-num {
  color: rgba(3, 252, 216, 0.96);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(3, 252, 216, 0.18);
}

.c-explorer-contribute__estimate-warn {
  color: rgba(232, 165, 152, 0.96);
  font-weight: 600;
}

.c-explorer-contribute__verify {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.c-explorer-contribute__verify-head {
  margin-bottom: 0.45rem;
}

.c-explorer-contribute__verify-heading {
  margin: 0 0 0.28rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.92);
}

.c-explorer-contribute__verify-sub {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.76);
}

.c-explorer-contribute__verify-warn-banner {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 0.65rem;
  padding: 0.18rem 0.42rem;
  border-radius: 4px;
  border: 1px solid rgba(220, 80, 80, 0.75);
  background: rgba(180, 40, 40, 0.35);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  color: #ffb4b4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.c-explorer-contribute__verify-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem 1rem;
}

.c-explorer-contribute__verify-step-badge {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(3, 252, 216, 0.98);
  border: 1px solid rgba(3, 252, 216, 0.42);
  background: rgba(3, 252, 216, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.c-explorer-contribute__verify-step-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.c-explorer-contribute__verify-step-title {
  margin: 0 0 0.38rem;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.c-explorer-contribute__verify-step-desc {
  margin: 0 0 0.62rem;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.c-explorer-contribute__field-label--verify {
  text-align: left;
}

.c-explorer-contribute__input--tx-block {
  width: 100%;
  max-width: none;
  margin: 0 0 0.5rem;
  flex: none;
}

.c-explorer-contribute__verify-btn--block {
  width: 100%;
  max-width: none;
  margin: 0 0 0.55rem;
}

.c-explorer-contribute__tx-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
}

.c-explorer-contribute__verify-btn {
  border: 1px solid rgba(3, 252, 216, 0.45);
  background: linear-gradient(155deg, rgba(3, 252, 216, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Protomono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  min-height: 42px;
}

.c-explorer-contribute__verify-btn:hover:not(:disabled) {
  border-color: rgba(3, 252, 216, 0.7);
  filter: brightness(1.06);
}

.c-explorer-contribute__verify-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.c-explorer-contribute__verify-outcome {
  margin-top: 0;
  min-height: 3.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.c-explorer-contribute__verify-outcome.is-active {
  align-items: flex-start;
}

.c-explorer-contribute__verify-placeholder {
  margin: 0;
  width: 100%;
  font-size: 11px;
  line-height: 1.45;
  text-align: left;
  color: rgba(255, 255, 255, 0.32);
}

.c-explorer-contribute__verify-placeholder[hidden] {
  display: none;
}

.c-explorer-contribute__verify-status {
  margin: 0;
  width: 100%;
  font-size: 11px;
  line-height: 1.45;
  text-align: left;
  max-width: 100%;
}

.c-explorer-contribute__verify-status[hidden] {
  display: none;
}

.c-explorer-contribute__verify-status.is-ok {
  color: rgba(3, 252, 216, 0.95);
}

.c-explorer-contribute__verify-status.is-warn {
  color: #e8a598;
}

.c-explorer-contribute__verify-link {
  color: rgba(3, 252, 216, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c-explorer-contribute__verify-link:hover {
  color: #fff;
}

/* --- Auto-launch countdown (explorer + shared digits) --- */
.c-explorer__launch-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin: 0 0 0.65rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.35);
  background: linear-gradient(105deg, rgba(3, 252, 216, 0.12) 0%, rgba(18, 21, 26, 0.92) 55%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 8px 22px rgba(3, 252, 216, 0.08);
}

.c-explorer__launch-banner--pending {
  border-color: rgba(255, 200, 120, 0.45);
  background: linear-gradient(105deg, rgba(255, 200, 120, 0.12) 0%, rgba(18, 21, 26, 0.92) 55%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 8px 22px rgba(255, 180, 80, 0.06);
}

.c-explorer__launch-banner-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.92);
}

.c-explorer__launch-banner--pending .c-explorer__launch-banner-label {
  color: rgba(255, 210, 140, 0.95);
}

.c-explorer__launch-banner-digits,
.c-launch-countdown__digits {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.c-explorer-detail__launch {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin: 0 0 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.28);
  background: rgba(3, 252, 216, 0.06);
}

.c-explorer-detail__launch-k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.88);
}

.c-explorer-detail__launch-v {
  font-size: 1.1rem;
}

/* My projects: countdown + tokenomics */
.c-my-projects__countdown {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(3, 252, 216, 0.32);
  background: linear-gradient(180deg, rgba(3, 252, 216, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.c-my-projects__countdown-inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  max-width: 100%;
}

.c-my-projects__countdown--pending {
  border-color: rgba(255, 200, 120, 0.38);
  background: linear-gradient(180deg, rgba(255, 200, 120, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.c-my-projects__countdown--pending .c-my-projects__countdown-label {
  color: rgba(255, 210, 150, 0.92);
}

.c-my-projects__countdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 252, 216, 0.88);
}

.c-my-projects__countdown-digits {
  font-size: 0.95rem;
}

.c-my-projects__tokenomics {
  margin: 0.65rem 0 0.15rem;
  padding: 0.65rem 0.7rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
  width: 100%;
  box-sizing: border-box;
}

.c-my-projects__tokenomics-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.45rem;
}

.c-my-projects__tokenomics-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.75rem;
  margin: 0;
}

@media (max-width: 520px) {
  .c-my-projects__tokenomics-rows {
    grid-template-columns: 1fr;
  }
}

.c-my-projects__tokenomics-rows > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.c-my-projects__tokenomics-rows dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

.c-my-projects__tokenomics-rows dd {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  word-break: break-word;
}

.c-my-projects__not-live-msg {
  color: rgba(255, 200, 140, 0.92);
  font-style: italic;
  font-size: 12px;
}

.c-my-projects__actions-claim-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.c-my-projects__remove {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0.35rem 0.5rem;
  border: none;
  background: none;
  font: inherit;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 150, 150, 0.88);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  align-self: center;
}

.c-my-projects__remove:hover {
  color: rgba(255, 190, 190, 0.95);
}

/* LIVE Projects page — wide centered layout */
/* overflow-x:hidden on .c-docs__content can clip the top of large text; horizontal scroll lives on .c-live-projects__table-wrap */
.page-live-projects .c-docs__content.c-live-projects-page {
  max-width: min(100vw - 2rem, 1580px);
  margin-left: auto;
  margin-right: auto;
  /* Top inset: enough for navbar; tighter than before so the hero sits higher */
  padding-top: clamp(1.25rem, 4.5vmin, 2.75rem);
  padding-bottom: 2rem;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: visible;
  scroll-padding-top: clamp(1rem, 4vmin, 2.25rem);
  /* Avoid width jump when the vertical scrollbar appears (refresh vs cached paint). */
  scrollbar-gutter: stable;
}

@media screen and (min-width: 768px) {
  .page-live-projects .c-docs__content.c-live-projects-page {
    /* Same scroll column as other docs pages; x visible avoids clipping the hero caps */
    overflow-y: auto;
  }
}

.page-live-projects .c-live-projects-page__inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-live-projects-page__hero {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin: 0 0 0.65rem;
  padding: clamp(0.25rem, 1vmin, 0.65rem) clamp(0.75rem, 3vw, 1.5rem) 0;
  /* overflow-x:hidden here made overflow-y clip — title looked “cut in half” inside the scroll pane */
  overflow: visible;
}

/* Match .c-tab__heading + body: Protomono, tight tracking (wide letter-spacing pushed title off-screen) */
.c-live-projects-page__hero-title {
  margin: 0 auto;
  padding-top: 0.1em;
  max-width: 100%;
  font-family: Protomono, ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(22px, 4.2vw, 38px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #fff;
  box-sizing: border-box;
}

.c-live-projects-page__hero-title::after {
  content: '';
  display: block;
  width: min(220px, 70%);
  height: 2px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(3, 252, 216, 0.75), transparent);
}

.c-live-projects-page__hr {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.c-live-projects-page__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-live-projects__toolbar {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 1.25rem;
}

.c-live-projects__search {
  width: min(100%, 480px);
  padding: 0.65rem 1rem;
  font-size: 15px;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  box-sizing: border-box;
}

.c-live-projects__search::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.c-live-projects__search:focus {
  border-color: rgba(3, 252, 216, 0.45);
  box-shadow: 0 0 0 1px rgba(3, 252, 216, 0.2);
}

.c-live-projects__empty {
  margin: 1rem 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  width: 100%;
}

.page-live-projects .c-live-projects {
  width: 100%;
  max-width: 1480px;
  text-align: left;
}

.page-live-projects .c-live-projects__table-wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1480px;
  border-radius: 18px;
  border-width: 1px;
  box-shadow:
    0 0 0 1px rgba(3, 252, 216, 0.06),
    0 20px 56px rgba(0, 0, 0, 0.45);
  background: rgba(10, 12, 16, 0.72);
}

.page-live-projects .c-live-projects-page__pager {
  width: 100%;
  max-width: 1480px;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.c-live-projects__th-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  margin: 0;
  padding: 0.35rem 0.25rem;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.c-live-projects__th-btn:hover {
  color: rgba(3, 252, 216, 0.95);
  background: rgba(3, 252, 216, 0.08);
}

.c-live-projects__th-btn.is-active {
  color: rgba(3, 252, 216, 0.98);
}

.c-live-projects__sort-ind {
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.95;
}

/* LIVE Projects table */
.c-live-projects__table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(12, 14, 18, 0.55);
}

.c-live-projects__head,
.c-live-projects__row {
  display: grid;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.65rem clamp(0.75rem, 2vw, 1.35rem);
  /* Icon | Ticker | Name (wide) | MCAP | Price | Age | Volume | Liq | Holders */
  grid-template-columns:
    52px minmax(96px, 0.75fr) minmax(200px, 2.2fr) minmax(120px, 1fr) minmax(128px, 1fr) minmax(88px, 0.55fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(96px, 0.85fr);
  min-width: min(100%, 1180px);
}

.c-live-projects__head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.c-live-projects__body .c-live-projects__row {
  font-size: 14px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: start;
}

.c-live-projects__body .c-live-projects__row:last-child {
  border-bottom: none;
}

.c-live-projects__cell {
  min-width: 0;
  color: rgba(255, 255, 255, 0.9);
  font-variant-numeric: tabular-nums;
}

.c-live-projects__cell--ticker {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(3, 252, 216, 0.95);
}

.c-live-projects__cell--delta {
  font-variant-numeric: tabular-nums;
}

.c-live-projects__delta {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.c-live-projects__cell--pic {
  align-self: center;
}

.c-live-projects__cell--name {
  color: rgba(255, 255, 255, 0.94);
  white-space: normal;
  overflow: visible;
  word-break: break-word;
  hyphens: auto;
}

.c-live-projects__name-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.c-live-projects__name-primary {
  font-weight: 500;
  line-height: 1.3;
}

.c-live-projects__token-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}

.c-live-projects__token-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.c-live-projects__token-mint {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(3, 252, 216, 0.72);
  background: rgba(3, 252, 216, 0.06);
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  border: 1px solid rgba(3, 252, 216, 0.12);
}

.c-live-projects__copy-mint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  margin: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: rgba(3, 252, 216, 0.75);
  cursor: pointer;
  line-height: 0;
  transition: color 0.15s ease, background 0.15s ease;
}

.c-live-projects__copy-mint:hover {
  color: rgba(3, 252, 216, 1);
  background: rgba(3, 252, 216, 0.1);
}

.c-live-projects__copy-mint.is-copied {
  color: rgba(120, 255, 180, 0.95);
}

@keyframes live-projects-sk-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}

.c-live-projects__row--skeleton {
  pointer-events: none;
}

.c-live-projects__sk {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  animation: live-projects-sk-pulse 1.1s ease-in-out infinite;
}

.c-live-projects__sk--pic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin: 0 auto;
}

.c-live-projects__sk--short {
  width: 42%;
  max-width: 4rem;
}

.c-live-projects__sk--mid {
  width: 55%;
  max-width: 5rem;
}

.c-live-projects__sk--long {
  width: 72%;
  max-width: 12rem;
}

.c-live-projects__loading {
  padding: 2rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.c-live-projects__feed-error {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 200, 120, 0.95);
  background: rgba(255, 160, 60, 0.1);
  border: 1px solid rgba(255, 180, 100, 0.25);
  border-radius: 8px;
}

.c-live-projects__pic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.c-live-projects__pic--empty {
  background: rgba(255, 255, 255, 0.06);
}

.c-live-projects__pic--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(3, 252, 216, 0.95);
  background: linear-gradient(145deg, rgba(3, 252, 216, 0.18), rgba(18, 21, 26, 0.95));
  border: 1px solid rgba(3, 252, 216, 0.25);
  box-sizing: border-box;
}

.c-live-projects__pic--initial[hidden] {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .c-live-projects__head,
  .c-live-projects__row {
    grid-template-columns:
      48px minmax(80px, 0.65fr) minmax(140px, 1.6fr) minmax(100px, 0.9fr) minmax(108px, 0.9fr) minmax(72px, 0.5fr) minmax(100px, 0.9fr) minmax(100px, 0.9fr) minmax(88px, 0.85fr);
    gap: 0.4rem 0.65rem;
    padding: 0.55rem 0.65rem;
  }

  .c-live-projects__body .c-live-projects__row {
    font-size: 13px;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ACP (admin control panel) */
.page-acp .c-docs__content .c-acp {
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.c-acp__gate {
  margin-bottom: 1.25rem;
}

.c-acp__lede {
  margin-bottom: 1.25rem;
}

.c-acp__section {
  margin-top: 2rem;
}

.c-acp__create-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

@media screen and (min-width: 900px) {
  .c-acp__create-grid {
    grid-template-columns: 1fr 200px 1fr;
    align-items: start;
  }
}

.c-acp__fieldset {
  margin: 0;
}

.c-acp__actions {
  margin-top: 1rem;
}

.c-acp-launch-debug__lede {
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(230, 240, 255, 0.82);
}

.c-acp-launch-debug__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.65rem 1rem;
  margin-bottom: 0.65rem;
}

.c-acp-launch-debug__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: min(100%, 280px);
}

.c-acp-launch-debug__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(230, 240, 255, 0.55);
}

.c-acp-launch-debug__select {
  min-width: 12rem;
}

.c-acp__list-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.75rem;
  text-align: left;
}

.c-acp__list-head-title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.c-acp__list-head-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 540px) {
  .c-acp__list-head {
    flex-wrap: wrap;
  }

  .c-acp__list-head-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.c-acp__btn-secondary {
  font-size: 12px;
  padding: 0.35rem 0.65rem;
  margin: 0;
  white-space: nowrap;
}

/* Stable width: "Refresh list" vs spinner + "Refreshing…" */
.c-acp__refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 10.75rem;
  min-height: 2.25rem;
  box-sizing: border-box;
}

.c-acp__refresh-btn__spinner {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 2px solid rgba(3, 252, 216, 0.22);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: c-finalize-spin 0.75s linear infinite;
}

.c-acp__refresh-btn--loading {
  cursor: wait;
}

.c-acp-remove-modal__actions {
  justify-content: center;
  gap: 0.65rem;
}

.c-finalize-modal__actions .c-acp__modal-btn-cancel {
  margin: 0;
  min-width: 120px;
  min-height: 40px;
  background: transparent;
  border-color: var(--border);
  color: rgba(255, 255, 255, 0.88);
}

.c-finalize-modal__actions .c-acp__modal-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.c-finalize-modal__actions .c-acp__modal-btn-confirm {
  margin: 0;
  min-width: 120px;
  min-height: 40px;
  background: rgba(220, 60, 60, 0.18);
  border-color: rgba(220, 90, 90, 0.55);
  color: rgba(255, 190, 190, 0.98);
}

.c-finalize-modal__actions .c-acp__modal-btn-confirm:hover {
  background: rgba(220, 60, 60, 0.28);
  border-color: rgba(255, 120, 120, 0.65);
}

.c-acp__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.c-acp__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.c-acp__table th,
.c-acp__table td {
  padding: 0.5rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.c-acp__table th {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.c-acp__table tbody tr:last-child td {
  border-bottom: none;
}

.c-acp__empty-cell {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.55);
}

.c-acp__btn-danger {
  background: rgba(220, 60, 60, 0.12);
  border-color: rgba(220, 80, 80, 0.4);
  color: rgba(255, 170, 170, 0.95);
  font-size: 12px;
  padding: 0.3rem 0.55rem;
}

/* ACP launch simulator */
.c-acp-sim {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.c-acp-sim__head {
  margin-bottom: 1.25rem;
  max-width: 52rem;
}

.c-acp-sim__title {
  margin-bottom: 0.35rem;
}

.c-acp-sim__subtitle {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.c-acp-sim__subtitle code {
  font-size: 12px;
}

.c-acp-sim__layout {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 960px) {
  .c-acp-sim__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .c-acp-sim__card:first-child {
    grid-column: 1 / -1;
  }
}

.c-acp-sim__card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1.1rem 1.15rem;
}

.c-acp-sim__card-title {
  margin: 0 0 0.5rem;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.c-acp-sim__card-hint {
  margin: 0 0 0.85rem;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.c-acp-sim__card-hint code {
  font-size: 11px;
}

.c-acp-sim__table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.65rem;
}

.c-acp-sim__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.c-acp-sim__table th {
  text-align: left;
  padding: 0.45rem 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.c-acp-sim__table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.c-acp-sim__table tbody tr:last-child td {
  border-bottom: none;
}

.c-acp-sim__th-actions {
  width: 2.5rem;
  text-align: center;
}

.c-acp-sim__input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.4rem 0.5rem;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
}

.c-acp-sim__input--narrow {
  max-width: 11rem;
}

.c-acp-sim__input:focus {
  outline: none;
  border-color: rgba(3, 252, 216, 0.45);
  box-shadow: 0 0 0 2px rgba(3, 252, 216, 0.12);
}

.c-acp-sim__contrib-sol {
  max-width: 8rem;
}

.c-acp-sim__row-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.c-acp-sim__row-remove:hover {
  background: rgba(220, 80, 80, 0.15);
  border-color: rgba(220, 100, 100, 0.35);
  color: rgba(255, 200, 200, 0.95);
}

.c-acp-sim__row-actions {
  margin-bottom: 1rem;
}

.c-acp-sim__totals {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.c-acp-sim__total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 13px;
}

.c-acp-sim__total-line--emph {
  padding-top: 0.35rem;
  margin-top: 0.15rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.c-acp-sim__total-line--emph .c-acp-sim__total-value {
  color: var(--primary, #03fcd8);
}

.c-acp-sim__total-label {
  color: rgba(255, 255, 255, 0.6);
}

.c-acp-sim__total-value {
  font-variant-numeric: tabular-nums;
}

.c-acp-sim__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}

.c-acp-sim__field:last-child {
  margin-bottom: 0;
}

.c-acp-sim__field--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 0.5rem;
}

.c-acp-sim__field-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.c-acp-sim__field-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.c-acp-sim__fields {
  margin-top: 0.25rem;
}

.c-acp-sim__fieldset {
  border: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.c-acp-sim__fieldset .c-acp-sim__field-label {
  margin-bottom: 0.35rem;
}

.c-acp-sim__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.c-acp-sim__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
}

.c-acp-sim__chip input {
  margin: 0;
}

.c-acp-sim__chip input:checked + span {
  color: rgba(3, 252, 216, 0.95);
}

.c-acp-sim__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  margin-top: 0.25rem;
}

.c-acp-sim__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.c-acp-sim__summary {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(3, 252, 216, 0.22);
  background: rgba(3, 252, 216, 0.06);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.c-acp-sim__summary.is-warn {
  border-color: rgba(255, 180, 100, 0.35);
  background: rgba(255, 160, 60, 0.08);
}

.c-acp-sim__summary.is-ok {
  border-color: rgba(3, 252, 216, 0.28);
  background: rgba(3, 252, 216, 0.07);
}

.c-acp-sim__summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.5rem 1rem;
}

.c-acp-sim__summary strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.c-acp-sim__debug-block {
  margin-top: 0.25rem;
}

.c-acp-sim__debug-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}

.c-acp-sim__debug-label code {
  font-size: 10px;
}

.c-acp-sim__debug {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.45;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 14, 0.95);
  color: rgba(220, 225, 235, 0.95);
  resize: vertical;
  min-height: 12rem;
}