/* Zzpkit — warm paper product UI */
:root {
  --cream: #F7F3EC;
  --cream-deep: #EFE8DC;
  --ink: #1C1917;
  --ink-soft: #44403C;
  --muted: #78716C;
  --teal: #0F766E;
  --teal-dark: #0D5F59;
  --teal-soft: #CCFBF1;
  --stone: #D6D3D1;
  --stone-soft: #E7E5E4;
  --white: #FFFCFA;
  --danger-soft: #FEF3C7;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.04), 0 8px 24px rgba(28, 25, 23, 0.06);
  --font-serif: "Fraunces", "Newsreader", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", ui-monospace, monospace;
  --max: 1120px;
  --sidebar: 240px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper grain */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--teal-dark); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin: 0 0 0.55em; }
h3 { font-size: 1.25rem; margin: 0 0 0.4em; }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 38em; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal-dark);
}
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--stone);
}
.btn-ghost:hover { background: var(--cream-deep); color: var(--ink); }
.btn-sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.btn-copy {
  background: var(--white);
  border: 1px solid var(--stone);
  color: var(--ink);
  flex-shrink: 0;
}
.btn-copy:hover { border-color: var(--teal); color: var(--teal); }
.btn-copy.is-copied {
  background: var(--teal-soft);
  border-color: var(--teal);
  color: var(--teal-dark);
}

/* —— Site header (marketing) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone-soft);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  gap: 1rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }

/* —— Hero —— */
.hero {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--teal);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.price-tag strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 600;
}
.trust-line {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* UI mock card */
.mock {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--stone-soft);
}
.mock-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--stone);
}
.mock-title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.mock-body { padding: 1.15rem 1.2rem 1.35rem; }
.mock-row {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.mock-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  background: var(--cream);
  border: 1px solid var(--stone-soft);
  color: var(--ink-soft);
}
.mock-chip.active {
  background: var(--teal-soft);
  border-color: #99F6E4;
  color: var(--teal-dark);
}
.mock-prompt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.55;
  background: #1C1917;
  color: #E7E5E4;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  white-space: pre-wrap;
  margin: 0 0 0.85rem;
}
.mock-prompt .hi { color: #5EEAD4; }
.mock-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* —— Sections —— */
.section { padding: 4rem 0; }
.section-alt { background: var(--cream-deep); border-block: 1px solid var(--stone-soft); }
.section-head {
  max-width: 36em;
  margin-bottom: 2.25rem;
}
.section-head p { margin-bottom: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: 0 1px 0 rgba(28,25,23,0.03);
}
.card .icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
  margin-bottom: 0.9rem;
  font-size: 1rem;
}
.card h3 { margin-bottom: 0.35em; }
.card p:last-child { margin-bottom: 0; font-size: 0.95rem; }

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.benefit-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
}
.benefit-list .check {
  width: 1.35rem; height: 1.35rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}
.benefit-list strong { display: block; color: var(--ink); font-weight: 600; }
.benefit-list span { font-size: 0.92rem; color: var(--ink-soft); }

/* Preview strip */
.preview-frame {
  border: 1px solid var(--stone);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.preview-frame .chrome {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--stone-soft);
  background: var(--cream);
  overflow-x: auto;
}
.preview-frame .chrome span {
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--stone-soft);
}
.preview-frame .chrome span.on {
  background: var(--white);
  color: var(--teal);
  box-shadow: inset 0 -2px 0 var(--teal);
}
.preview-inner { padding: 1.5rem; display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.25rem; }
.preview-side {
  background: var(--cream);
  border: 1px solid var(--stone-soft);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.85rem;
}
.preview-side ul { margin: 0.5rem 0 0; padding-left: 1.1rem; color: var(--ink-soft); }
.preview-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.55;
  background: #1C1917;
  color: #D6D3D1;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin: 0;
  white-space: pre-wrap;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--ink);
  color: #E7E5E4;
  border-radius: 16px;
  margin: 0 0 1rem;
}
.cta-band h2 { color: #FFFCFA; }
.cta-band p { color: #A8A29E; max-width: 32em; margin-inline: auto; }
.cta-band .btn-primary { margin-top: 0.5rem; }

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.65rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--teal);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 0.75rem 0 0.15rem;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--cream-deep);
  border: 1px dashed var(--stone);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--stone-soft);
  padding: 2rem 0 2.5rem;
  margin-top: 2rem;
}
.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.site-footer .logo { font-size: 1.1rem; }

/* ========================================
   APP LAYOUT
   ======================================== */
.app-body { min-height: 100vh; }

.app-top {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone);
}
.app-top .brand {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
}
.app-top .brand span { color: var(--teal); }
.app-top-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar) 1fr;
  min-height: calc(100vh - 53px);
}

.app-nav {
  position: sticky;
  top: 53px;
  align-self: start;
  height: calc(100vh - 53px);
  overflow-y: auto;
  padding: 1.25rem 0.85rem;
  border-right: 1px solid var(--stone);
  background: var(--cream);
}
.app-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0.65rem 0.55rem;
}
.app-nav button {
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  margin-bottom: 0.15rem;
}
.app-nav button:hover {
  background: var(--cream-deep);
  color: var(--ink);
}
.app-nav button.is-active {
  background: var(--white);
  border-color: var(--stone);
  color: var(--teal-dark);
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(28,25,23,0.03);
}

.app-mobile-tabs {
  display: none;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--stone-soft);
  background: var(--cream-deep);
  -webkit-overflow-scrolling: touch;
}
.app-mobile-tabs button {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--stone);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
}
.app-mobile-tabs button.is-active {
  background: var(--teal);
  border-color: var(--teal-dark);
  color: #fff;
}

.app-main {
  padding: 2rem 2.25rem 4rem;
  max-width: 820px;
}
.app-section { display: none; }
.app-section.is-visible { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.app-section > .intro {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--stone-soft);
}
.app-section > .intro p { margin-bottom: 0; }

.note {
  font-size: 0.9rem;
  background: var(--white);
  border: 1px solid var(--stone);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin: 1rem 0 1.5rem;
  color: var(--ink-soft);
}

.prompt-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  margin-bottom: 1.15rem;
  overflow: hidden;
}
.prompt-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.05rem 1.15rem 0.85rem;
}
.prompt-card-head h3 { margin: 0 0 0.25em; font-size: 1.1rem; }
.when {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.prompt-body {
  margin: 0 1.15rem 1.15rem;
  padding: 1rem 1.05rem;
  background: #1C1917;
  color: #E7E5E4;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-x: auto;
  max-height: 420px;
  overflow-y: auto;
}

.skeleton-box {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 1.15rem;
  margin-bottom: 1rem;
}
.skeleton-box pre {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.65;
  white-space: pre-wrap;
  color: var(--ink);
}

.upgrade-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.upgrade-list li {
  padding: 0.75rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--stone-soft);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.upgrade-list li::before {
  content: counter(step) ". ";
  counter-increment: step;
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-serif);
}
.upgrade-list { counter-reset: step; }

.setup-ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}
.setup-ol li { margin-bottom: 0.45rem; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
}
table.play {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
table.play th, table.play td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--stone-soft);
  vertical-align: top;
}
table.play th {
  background: var(--cream-deep);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
}
table.play tr:last-child td { border-bottom: 0; }
table.play td:first-child {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--teal-dark);
  white-space: nowrap;
  width: 5.5rem;
}

.fault-grid {
  display: grid;
  gap: 0.75rem;
}
.fault {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.fault h3 { font-size: 1.05rem; margin-bottom: 0.25em; }
.fault p { margin: 0; font-size: 0.92rem; }

.cheat-grid {
  display: grid;
  gap: 0.55rem;
}
.cheat-row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.cheat-row dt {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.cheat-row dd { margin: 0; color: var(--ink-soft); }

.app-disclaimer {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--stone-soft);
  padding-top: 1.25rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.toast.show { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .preview-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .app-shell { grid-template-columns: 1fr; }
  .app-nav { display: none; }
  .app-mobile-tabs { display: flex; }
  .app-main { padding: 1.35rem 1.1rem 3rem; }
  .cheat-row { grid-template-columns: 1fr; gap: 0.25rem; }
}

@media (max-width: 560px) {
  .hero { padding: 2.75rem 0 2rem; }
  .section { padding: 2.75rem 0; }
  .container { width: min(100% - 1.5rem, var(--max)); }
}

/* —— Soft access gate —— */
body.is-gated > .app-top,
body.is-gated > .app-mobile-tabs,
body.is-gated > .app-shell,
body.is-gated > .toast {
  visibility: hidden;
  pointer-events: none;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--cream);
}

.gate-card {
  width: min(100%, 420px);
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem 1.75rem;
}

.gate-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.75rem;
}

.gate-eyebrow::before {
  content: "";
  width: 1.1rem;
  height: 1px;
  background: var(--teal);
}

.gate-title {
  font-size: clamp(1.55rem, 4vw, 1.85rem);
  margin: 0 0 0.5rem;
}

.gate-lead {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0 0 1.35rem;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gate-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.gate-input {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}

.gate-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.gate-input[aria-invalid="true"] {
  border-color: #B45309;
  background: var(--danger-soft);
}

.gate-error {
  margin: 0;
  font-size: 0.85rem;
  color: #92400E;
}

.gate-submit {
  margin-top: 0.35rem;
  width: 100%;
}

.gate-hint {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.gate-hint a {
  font-weight: 500;
}

.access-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.access-link:hover {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
