/*
 * NFTKEK landing page.
 *
 * Standalone — no Bootstrap. The previous build loaded a 200KB Bootstrap 4
 * theme to use about a dozen utility classes, and every brand colour had to be
 * fought back with !important. This is ~15KB and owns its own layout.
 */

:root {
  /* Sampled from the logo: mark #79df18, highlight #e4ff7f, card #172816.
     Backgrounds carry a slight green cast so the logo's own dark square sits
     flush against the page instead of reading as a pasted-on tile. */
  --bg: #0a0f0a;
  --bg-raised: #101710;
  --surface: #172016;
  --surface-2: #1e2a1c;
  --border: #26331f;
  --border-bright: #35472b;

  --accent: #79df18;
  --accent-hi: #8ceb2f;
  --accent-soft: rgba(121, 223, 24, 0.12);
  --accent-line: rgba(121, 223, 24, 0.34);

  /* Up/down must not be confused with the brand lime, so gains use a clearly
     separate emerald hue and losses stay warm. */
  --green: #34d399;
  --red: #ff6b4a;

  --text: #f2f6ef;
  --text-2: #adb8a6;
  --text-3: #78836f;

  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 18.4px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.028em;
  font-weight: 700;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-2);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14.4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.muted {
  color: var(--text-2);
}

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 17.2px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #0b1a02;
  box-shadow: 0 10px 30px rgba(121, 223, 24, 0.22);
}

.btn-primary:hover {
  background: var(--accent-hi);
}

.btn-ghost {
  border-color: var(--border-bright);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 18.4px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ------------------------------------------------------------- nav */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 15, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19.5px;
  letter-spacing: -0.02em;
}

.nav-brand img {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-2);
  font-size: 16.7px;
  font-weight: 500;
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
}

/* ------------------------------------------------------------ hero */

.hero {
  position: relative;
  padding: 150px 0 90px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -340px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(circle, rgba(121, 223, 24, 0.18), transparent 62%);
  pointer-events: none;
}

.hero > * {
  position: relative;
}

/* ---------- floating collection avatars ---------- */

/*
 * Real tracked collections, arranged down the left and right gutters. The
 * centre column is left clear: these sit outside the text measure so nothing
 * ever competes with the headline for attention or legibility.
 */
.orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orbit {
  position: absolute;
  border-radius: 22%;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s ease, transform .9s ease;
  animation: drift 13s ease-in-out infinite;
}

.orbit.is-in {
  opacity: 1;
  transform: translateY(0);
}

.orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* held back so the avatars read as texture, not as content to be examined */
  opacity: .62;
  filter: saturate(.85);
}

@keyframes drift {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -14px; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit { animation: none; }
}

.hero h1 {
  font-size: clamp(2.1rem, 5.1vw, 3.85rem);
  font-weight: 800;
  margin: 24px auto 22px;
  max-width: 24ch;
}

/*
 * Two lines: the setup dimmed, the payoff in full white. The line only works
 * if "It's transacted." lands on its own, so .dim is a block.
 */
.hero h1 .dim {
  display: block;
  color: var(--text-3);
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--text-2);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

/* live stat strip */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 900px;
  margin: 0 auto 64px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--bg-raised);
  padding: 22px 18px;
}

.stat-value {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stat-value.is-loading {
  color: var(--text-3);
}

.stat-label {
  margin-top: 4px;
  color: var(--text-3);
  font-size: 13.8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-note {
  margin: -46px auto 60px;
  color: var(--text-3);
  font-size: 14.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* product shot */

.shot {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-raised);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}

.shot-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.shot-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-bright);
}

.shot-bar span {
  margin-left: 10px;
  color: var(--text-3);
  font-size: 13.8px;
}

/* --------------------------------------------------- live preview */

.live-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16.1px;
}

.live-table th,
.live-table td {
  padding: 14px 18px;
  text-align: right;
  white-space: nowrap;
}

.live-table th:first-child,
.live-table td:first-child {
  text-align: left;
}

.live-table th {
  color: var(--text-3);
  font-size: 12.6px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.live-table td {
  border-bottom: 1px solid rgba(58, 46, 37, 0.5);
  font-variant-numeric: tabular-nums;
}

.live-table tr:last-child td {
  border-bottom: none;
}

.live-name {
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}

.live-name img,
.live-name-blank {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface-2);
  flex-shrink: 0;
}

.live-name b {
  font-weight: 600;
}

.live-name small {
  display: block;
  color: var(--text-3);
  font-size: 13.2px;
  font-weight: 400;
}

.table-scroll {
  overflow-x: auto;
}

.live-empty {
  padding: 40px 18px;
  text-align: center;
  color: var(--text-3);
}

/* ------------------------------------------------------ bento grid */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  padding: 30px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.card-wide {
  grid-column: span 2;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid var(--border-bright);
  border-radius: 11px;
  background: var(--surface);
  color: var(--accent);
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 9px;
}

.card p {
  color: var(--text-2);
  font-size: 16.7px;
}

.card-stat {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.card-stat b {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.card-stat span {
  color: var(--text-3);
  font-size: 14.9px;
}

/* --------------------------------------------------------- chains */

.chains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.chain {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-raised);
}

.chain.is-new {
  border-color: var(--accent-line);
  background: linear-gradient(160deg, var(--accent-soft), var(--bg-raised) 55%);
}

.chain-top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.chain-top h3 {
  font-size: 1.3rem;
}

.badge {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b1a02;
  font-size: 12.1px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chain p {
  color: var(--text-2);
  font-size: 16.7px;
  margin-bottom: 20px;
}

.chain-meta {
  display: flex;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.chain-meta div span {
  display: block;
  color: var(--text-3);
  font-size: 12.6px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chain-meta div b {
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------------- metrics */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 18px;
}

.split > div > p {
  color: var(--text-2);
  margin-bottom: 28px;
}

.metric-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17.2px;
}

.metric-list li svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
}

/* -------------------------------------------------------- pricing */

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.plan {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
}

.plan.is-featured {
  border-color: var(--accent-line);
  background: linear-gradient(170deg, var(--accent-soft), var(--bg-raised) 50%);
  position: relative;
}

.plan-name {
  font-size: 16.1px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
}

.plan-price {
  margin: 16px 0 4px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.plan.is-featured .plan-price {
  color: var(--accent);
}

.plan-note {
  color: var(--text-3);
  font-size: 15.5px;
  margin-bottom: 26px;
}

.plan ul {
  margin-bottom: 28px;
  flex: 1;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  color: var(--text-2);
  font-size: 16.7px;
}

.plan li svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--accent);
  flex-shrink: 0;
}

.plan .btn {
  width: 100%;
}

/* ------------------------------------------------------------ faq */

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 18.4px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  display: none;
  padding-bottom: 22px;
  color: var(--text-2);
  font-size: 17.2px;
  max-width: 64ch;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* ------------------------------------------------------- cta band */

.cta {
  padding: 66px 40px;
  text-align: center;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(121, 223, 24, 0.14), transparent 60%),
    var(--bg-raised);
}

.cta h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 14px;
}

.cta p {
  color: var(--text-2);
  margin: 0 auto 30px;
  max-width: 520px;
}

/* -------------------------------------------------------- footer */

.footer {
  padding: 64px 0 34px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-3);
  font-size: 16.1px;
  margin-top: 14px;
  max-width: 30ch;
}

.footer h4 {
  font-size: 14.4px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer li {
  margin-bottom: 11px;
}

.footer li a {
  color: var(--text-2);
  font-size: 16.7px;
}

.footer li a:hover {
  color: var(--accent);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 15.5px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-2);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.socials svg {
  width: 17px;
  height: 17px;
}

/* --------------------------------------------------- responsive */

/* No gutters to spare below this width - the avatars would land on the text. */
@media (max-width: 1180px) {
  .orbits {
    display: none;
  }
}

@media (max-width: 980px) {
  .bento,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-wide {
    grid-column: span 2;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 76px 0;
  }
  .nav-links {
    display: none;
  }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .nav-links.is-open a {
    padding: 10px 8px;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-cta .btn {
    display: none;
  }
  .hero {
    padding-top: 118px;
  }
  .bento,
  .chains,
  .pricing,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-wide {
    grid-column: span 1;
  }
  .cta {
    padding: 46px 22px;
  }
  .chain-meta {
    gap: 20px;
  }
}

/* ---------- landing table: same language as the dashboard ---------- */

.live-name-blank {
  display: inline-block;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.live-name img {
  border: 1px solid var(--border);
}

.live-name small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
}

/* chain pills, matching the dashboard's blue Ethereum / green Robinhood */
.live-chain {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.live-chain--ethereum {
  background: rgba(120, 140, 255, 0.13);
  border-color: rgba(120, 140, 255, 0.32);
  color: #97a6ff;
}

.live-chain--robinhood {
  background: rgba(121, 223, 24, 0.13);
  border-color: rgba(121, 223, 24, 0.34);
  color: var(--accent);
}

/* buy/sell pressure, same validated pair as the dashboard */
.live-flow-cell { min-width: 178px; }

.live-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.live-flow-track {
  display: flex;
  gap: 2px;            /* the two fills never touch */
  flex: 1;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.live-flow-buy,
.live-flow-sell { display: block; height: 100%; }

.live-flow-buy { background: #199e70; border-radius: 4px 0 0 4px; }
.live-flow-sell { background: #d94f2b; border-radius: 0 4px 4px 0; }

.live-flow-label {
  flex-shrink: 0;
  min-width: 56px;
  font-size: 13.8px;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.live-flow-label--buy { color: #35c493; }
.live-flow-label--sell { color: #ef7a56; }
.live-flow-label--even,
.live-flow-empty { color: var(--text-3); }

.live-table tbody tr {
  transition: background-color 0.15s ease;
}

.live-table tbody tr:hover td {
  background-color: rgba(121, 223, 24, 0.05);
}

/* ---------------- membership plan: price unit + in-build list ---------------- */

/*
 * The ETH glyph rides smaller than the figure. At the full 3rem it competes
 * with the number for attention, and the number is the point.
 */
.plan-eth {
  font-size: 0.62em;
  font-weight: 700;
  margin-left: 2px;
  letter-spacing: 0;
  vertical-align: 0.06em;
}

/*
 * Divider for features that are not built yet.
 *
 * Deliberately not styled like the list above it: those are live and blurred
 * behind the gate, these are unbuilt. Same tick on both would read as the same
 * promise, and the difference is the whole point of separating them.
 */
.plan-soon {
  margin: 4px 0 2px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13.2px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
}

.plan-list-soon {
  margin-bottom: 28px;
}

.plan-list-soon li {
  color: var(--text-3);
  padding: 7px 0;
}

/* Muted rather than the accent, so a clock never reads as a tick at a glance. */
.plan-list-soon li svg {
  color: var(--text-3);
  opacity: .85;
}

/* ---------------- locked call to action ---------------- */

/*
 * Used for an offer that is real but not open yet.
 *
 * The button keeps its size so the pricing card does not reflow when minting
 * goes live — removing the wrapper is then a pure swap, not a layout change.
 */
.cta-locked {
  position: relative;
  display: block;
}

.cta-locked .btn {
  filter: blur(4px) saturate(0.75);
  opacity: 0.55;
  /* Not clickable, not tabbable, not readable by a screen reader — the note
     below carries the meaning instead. */
  pointer-events: none;
  user-select: none;
  width: 100%;
}

.cta-locked-note {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text);
  text-decoration: none;
  /* The blurred button beneath stays inert; this label is the live target. */
  pointer-events: auto;
  border-radius: var(--radius);
}

.cta-locked-note:hover {
  color: var(--accent-hi);
}

/* A footer entry for something not open yet: present, plainly not clickable. */
.link-soon {
  color: var(--text-3);
  cursor: default;
}

.link-soon em {
  font-style: normal;
  font-size: 0.85em;
  padding: 1px 6px;
  margin-left: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-3);
}
