/* Direction A — quiet/original Ghost site CSS */

:root {
  --bg: #0a0b0f;
  --bg-1: #0d1016;
  --bg-2: #15181f;
  --line: #1c2029;
  --line-2: #232832;
  --ink: #e6e8ec;
  --ink-2: #aab2bd;
  --ink-3: #6f7884;
  --ink-mute: #525a66;
  --orange: #ff8800;
  --orange-soft: #ffb35a;
  --good: #22e3a3;
  --bad: #ff5d6c;
  --warn: #f5c84b;
  --radius: 6px;
  --radius-sm: 4px;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-soft); }

/* Faint grid background */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

#root { position: relative; z-index: 1; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 9500;
  background: rgba(10,11,15,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink);
  font-weight: 700;
}
/* Logo wordmark — masked so color adapts to currentColor (works on light & dark) */
.nav-brand .logo { font-size: 18px; }
.nav-brand .nav-logo-img,
.brand-logo-img {
  display: block;
  background-color: var(--ink, #e6e8ec);
  -webkit-mask: url('ghost_logo.png') no-repeat left center / contain;
          mask: url('ghost_logo.png') no-repeat left center / contain;
}
.nav-brand .nav-logo-img {
  width: 130px;
  height: 26px;
}
/* If page sets a light background (.theme-light or prefers-color-scheme), flip logo to dark */
.theme-light .nav-logo-img,
.theme-light .brand-logo-img {
  background-color: #0a0b0f;
}
@media (prefers-color-scheme: light) {
  :root:not(.theme-dark) .nav-logo-img,
  :root:not(.theme-dark) .brand-logo-img {
    background-color: #0a0b0f;
  }
}
.nav-brand .ver {
  color: var(--ink-mute); font-size: 10px;
  border: 1px solid var(--line-2);
  padding: 2px 6px; border-radius: 3px;
  letter-spacing: 0.16em;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: var(--ink-2);
  font-size: 13px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: color 120ms, background 120ms;
}
.nav-link:hover { color: var(--ink); background: var(--bg-2); }
.nav-link.active { color: var(--orange); }
.nav-link.cta {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #0a0b0f;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 14px;
  margin-left: 8px;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.nav-link.cta:hover { background: #b85d20; border-color: #b85d20; color: #0a0b0f; }
.nav-link.cta:active { background: #8a4317; border-color: #8a4317; color: #0a0b0f; }

.nav-mobile-toggle {
  display: none;
  background: none; border: 1px solid var(--line-2);
  color: var(--ink); padding: 6px 10px; border-radius: var(--radius-sm);
  font-family: var(--mono); font-size: 12px;
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 820px) {
  .nav-mobile-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 48px;
    gap: 0;
    margin-left: 0;
    /* Cap to viewport so the CTA never falls off-screen on landscape phones */
    max-height: calc(100vh - 56px);
    max-height: calc(100dvh - 56px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Extra bottom padding so the CTA's border isn't clipped */
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .nav-links[data-open="false"] { display: none; }
  .nav-link { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .nav-link:last-child { border-bottom: none; }
  .nav-link.cta { margin: 16px 0 32px; text-align: center; }
}

/* ─── HERO ─── */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 56px;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow .accent { color: var(--orange); }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero h1 .em { color: var(--orange); }
.hero-deck {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 80ms, background 120ms, color 120ms;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #0a0b0f;
}
.btn-primary:hover { background: var(--orange-soft); color: #0a0b0f; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink-2); color: var(--ink); }

/* Footer wordmark — replaces 👻 Ghost text */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.footer-logo-mark {
  display: inline-block;
  height: 14px;
  width: 70px;
  background-color: var(--ink-mute, #aab2bd);
  -webkit-mask: url('ghost_logo.png') no-repeat left center / contain;
          mask: url('ghost_logo.png') no-repeat left center / contain;
}

/* Inline hero logo mark — used inside h1s ("Watch ☐ in action") */
.hero-logo-mark {
  display: inline-block;
  height: 0.85em;
  width: calc(0.85em * 4.9);
  background-color: var(--ink, #e6e8ec);
  -webkit-mask: url('ghost_logo.png') no-repeat center / contain;
          mask: url('ghost_logo.png') no-repeat center / contain;
  vertical-align: -0.1em;
}

/* ─── SECTION ─── */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
  border-top: 1px solid var(--line);
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow .accent { color: var(--orange); }
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 18px;
  max-width: 760px;
  text-wrap: balance;
}
.section-deck {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 640px;
  margin: 0 0 36px;
}

/* ─── DASHBOARD WIDGET (home demo) ─── */
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 820px) { .demo-wrap { grid-template-columns: 1fr; } }
.demo-card {
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 22px;
}
.demo-card h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.dash {
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, #0d1016 0%, #0a0b0f 100%);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--line);
  overflow: hidden;
}
.dash-cell {
  background: #0d1016;
  padding: 14px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.dash-label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.dash-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.dash-value.good { color: var(--good); }
.dash-value.bad { color: var(--bad); }
.dash-value.warn { color: var(--warn); }
@media (max-width: 640px) {
  .dash { grid-template-columns: 1fr 1fr; }
  .dash-cell { padding: 12px 14px; }
  .dash-value { font-size: 14px; }
}
.demo-controls {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.demo-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 120ms;
}
.demo-btn:hover, .demo-btn.active {
  border-color: var(--orange);
  color: var(--orange);
}

/* ─── STACK SCROLL ─── */
.stack-scroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) { .stack-scroll { grid-template-columns: 1fr; gap: 24px; } }
.stack-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-1);
}
.stack-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 120ms;
  align-items: start;
}
.stack-row:last-child { border-bottom: none; }
.stack-row:hover { background: var(--bg-2); }
.stack-row.active {
  background: rgba(255,136,0,0.04);
  border-left: 3px solid var(--orange);
  padding-left: 19px;
}
.stack-row .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 700;
  padding-top: 3px;
}
.stack-row .name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.stack-row .desc {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.5;
}
.stack-row.active .name { color: var(--orange); }

.stack-side {
  position: sticky; top: 100px;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 300px;
}
.stack-side .num {
  font-family: var(--mono);
  font-size: 60px;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.stack-side h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
.stack-side p {
  color: var(--ink-2);
  font-size: 14.5px;
  margin: 0 0 12px;
}

/* ─── ACCORDION ─── */
.accordion {
  display: flex; flex-direction: column;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-1);
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-item:last-child { border-bottom: none; }
.acc-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: none; border: none;
  width: 100%;
  text-align: left;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  transition: background 120ms;
}
.acc-head:hover { background: var(--bg-2); }
.acc-head .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-right: 0;
  margin-left: 0;
  padding-right: 14px;
  border-right: 1px solid var(--line-2);
  min-width: 180px;
  display: inline-block;
  text-align: left;
  flex-shrink: 0;
}
.acc-head .name {
  padding-left: 14px;
  flex: 1;
}
.acc-head .row {
  display: flex; align-items: center; gap: 0;
}
.acc-chev {
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 14px;
  transition: transform 200ms;
}
.acc-item.open .acc-chev { transform: rotate(90deg); color: var(--orange); }
.acc-item.open .acc-head { color: var(--orange); }
.acc-body {
  padding: 0 22px 22px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}
.acc-body p:first-child { margin-top: 0; }

/* ─── FEATURE GRID ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature {
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 22px;
}
.feature .ico {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}
.feature p {
  margin: 0;
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border-radius: var(--radius);
  padding: 44px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) {
  .cta-strip { grid-template-columns: 1fr; padding: 28px 24px; }
}
.cta-strip h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}
.cta-strip p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 48px 24px 32px;
  background: var(--bg-1);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--ink-2);
  font-size: 13.5px;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--orange); }

/* ─── TUTORIALS PAGE ─── */
.tut-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .tut-grid { grid-template-columns: 1fr; gap: 20px; } }
.tut-card {
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.18s, transform 0.18s;
}
.tut-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.tut-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #0a0b0f; border-bottom: 1px solid var(--line); }
.tut-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tut-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background:
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255,255,255,0.022) 22px 23px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,0.022) 22px 23px),
    var(--bg-1);
  color: var(--ink-mute);
}
.tut-play { width: 56px; height: 56px; border: 1px solid var(--line-2); border-radius: 50%; background: rgba(255,136,0,0.08); color: var(--orange); font-size: 18px; display: flex; align-items: center; justify-content: center; padding-left: 4px; }
.tut-placeholder-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; }
.tut-meta { padding: 18px 20px 22px; }
.tut-len { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.tut-title { font-size: 17px; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--ink); }
.tut-desc { margin: 0; color: var(--ink-3); font-size: 13.5px; line-height: 1.55; }

.footer-disclaimer {
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 11.5px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ─── DOC PAGE (User Guide) ─── */
.doc-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 920px) {
  .doc-layout { grid-template-columns: 1fr; gap: 24px; }
  /* TOC sits inline above the content, not floating, on mobile */
  .doc-toc {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    top: auto !important;
  }
  .doc-toc a { padding: 6px 6px; font-size: 12.5px; }
}
.doc-toc {
  position: sticky; top: 88px;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 18px;
}
.doc-toc h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 700;
}
.doc-toc a {
  display: grid;
  grid-template-columns: 28px 1fr;
  padding: 8px 6px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
}
.doc-toc a:hover { background: var(--bg-2); color: var(--ink); }
.doc-toc a.active { color: var(--orange); }
.doc-toc a .n {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
}
.doc-content { min-width: 0; }
.doc-content h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.doc-content h2 {
  margin: 56px 0 14px;
  font-size: clamp(22px, 2.5vw, 28px);
  scroll-margin-top: 88px;
}
.doc-content h2 .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
.doc-content h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  font-weight: 600;
}
.doc-content p, .doc-content li {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 15px;
}
.doc-content ul, .doc-content ol {
  padding-left: 22px;
}
.doc-content code {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--orange-soft);
}
.callout {
  margin: 18px 0;
  padding: 16px 20px;
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--orange);
  background: var(--bg-1);
  border-radius: var(--radius-sm);
}
.callout-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
.callout p { margin: 0; }
.callout.warn { border-left-color: var(--warn); }
.callout.warn .callout-tag { color: var(--warn); }
.callout.bad { border-left-color: var(--bad); }
.callout.bad .callout-tag { color: var(--bad); }

/* ─── CONTACT FORM ─── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin-top: 24px;
}
.contact-form label {
  display: grid;
  gap: 6px;
}
.contact-form label:nth-child(3),
.contact-form label:nth-child(4),
.contact-form > div {
  grid-column: 1 / -1;
}
.contact-form span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: 14px/1.5 var(--sans);
  color: var(--ink);
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
@media (max-width: 720px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ─── INDICATOR PAGE ─── */
.indicator-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .indicator-hero { grid-template-columns: 1fr; gap: 32px; } }

.chart-mock {
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 18px;
  font-family: var(--mono);
  font-size: 11px;
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

/* ─── COURSE PAGE ─── */
.course-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 48px;
  text-align: center;
}
.course-hero .mascot-big {
  font-size: 80px;
  margin-bottom: 18px;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.course-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.course-hero .deck {
  color: var(--ink-2);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 36px;
}

.course-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--bg-1);
  margin: 40px 0;
}
@media (max-width: 720px) { .course-stats { grid-template-columns: repeat(2, 1fr); } }
.course-stat {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.course-stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .course-stat:nth-child(2) { border-right: none; }
  .course-stat:nth-child(1), .course-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.course-stat .n {
  font-family: var(--mono);
  font-size: 32px;
  color: var(--orange);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.course-stat .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.chapter-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.chap {
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.chap .num {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--orange);
  font-weight: 700;
}
.chap .name {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 6px;
}
.chap .desc {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 32px;
}
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.about-content h2 { margin-top: 48px; font-size: 24px; }
.about-content p { color: var(--ink-2); line-height: 1.75; font-size: 16px; }
.about-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 8px 22px;
  margin: 28px 0;
  font-size: 19px;
  color: var(--ink);
  font-style: italic;
}

/* ─── CONTACT / DISCLAIMER ─── */
.simple-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}
.simple-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.simple-page .deck {
  color: var(--ink-2);
  font-size: 17px;
  margin: 0 0 32px;
}
.simple-page p, .simple-page li { color: var(--ink-2); line-height: 1.7; }
.simple-page h2 { margin-top: 36px; font-size: 22px; }
.contact-card {
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact-card .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-card .value {
  font-size: 17px;
  color: var(--ink);
}
.contact-card .value a { color: var(--orange); }

/* ─── PRICING PAGE ─── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
@media (max-width: 920px) { .plan-grid { grid-template-columns: 1fr; } }
.plan-card {
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.18s, transform 0.18s;
}
.plan-card:hover { border-color: var(--ink-mute); transform: translateY(-2px); }
.plan-card.is-feature {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange) inset, 0 12px 40px -20px rgba(255,136,0,0.35);
  background: linear-gradient(180deg, rgba(255,136,0,0.04) 0%, var(--bg-1) 60%);
}
.plan-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; gap: 12px;
}
.plan-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 700;
}
.plan-card.is-feature .plan-tag { color: var(--orange); }
.plan-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--orange);
  color: #0a0b0f;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 700;
}
.plan-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 14px;
  min-height: 52px;
}
.plan-price.is-label {
  align-items: flex-end;
}
.plan-price .price-label {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
  padding-bottom: 4px;
}
.plan-price .amt {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.plan-card.is-feature .plan-price .amt { color: var(--orange); }
.plan-price .per {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.plan-blurb {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 20px;
  min-height: 4.6em;
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.plan-list li {
  font-size: 14px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 4px;
  line-height: 1.5;
}
.plan-list .tick {
  color: var(--orange);
  font-weight: 700;
  font-family: var(--mono);
  font-size: 13px;
  padding-top: 1px;
}
.plan-card .btn {
  width: 100%;
  justify-content: center;
}
.plan-foot {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}
.plan-note {
  margin-top: 28px;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
@media (max-width: 640px) { .plan-note { grid-template-columns: 1fr; gap: 8px; } }
.plan-note-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  border-right: 1px solid var(--line-2);
  padding-right: 18px;
  white-space: nowrap;
}
@media (max-width: 640px) { .plan-note-tag { border-right: none; padding-right: 0; padding-bottom: 4px; border-bottom: 1px solid var(--line-2); } }
.plan-note p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.6; }

/* ─── Chart slideshow ─── */
.chart-slideshow-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 20px;
}
.chart-slideshow {
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  padding: 14px 14px 18px;
}
.chart-slideshow-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 6px 12px;
}
.chart-slideshow-eyebrow .accent { color: var(--orange); font-weight: 700; }
.chart-slideshow-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}
.chart-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 0.9s ease, transform 5s ease;
}
.chart-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.chart-slideshow-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 14px 0 4px;
}
.chart-dot {
  width: 28px; height: 3px;
  background: var(--line-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}
.chart-dot:hover { background: var(--ink-mute); }
.chart-dot.is-active {
  background: var(--orange);
  width: 44px;
}
@media (max-width: 720px) {
  .chart-slideshow-frame { aspect-ratio: 16 / 9; }
}

/* ─────────────────────────────────────────────
   Entry Gate — frosted glass disclaimer overlay
   ───────────────────────────────────────────── */
.entry-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  padding: 28px 20px;
  background: rgba(10, 11, 15, 0.62);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  animation: entry-fade-in 0.45s ease both;
  overflow: auto;
}
@keyframes entry-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.entry-gate-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.entry-ghost {
  position: absolute;
  font-size: 120px;
  line-height: 1;
  filter: blur(0.4px) drop-shadow(0 16px 40px rgba(255, 136, 0, 0.18));
  opacity: 0.18;
  user-select: none;
  will-change: transform;
}
.entry-ghost-1 {
  top: 12%; left: 8%;
  animation: float-ghost 9s ease-in-out infinite;
}
.entry-ghost-2 {
  top: 64%; right: 10%;
  font-size: 90px;
  animation: float-ghost 11s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.entry-ghost-3 {
  bottom: 8%; left: 38%;
  font-size: 70px;
  opacity: 0.12;
  animation: float-ghost 13s ease-in-out infinite;
  animation-delay: -5s;
}
@keyframes float-ghost {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  25%      { transform: translate(18px, -22px) rotate(2deg); }
  50%      { transform: translate(-8px, -34px) rotate(-2deg); }
  75%      { transform: translate(-22px, -14px) rotate(3deg); }
}

.entry-gate-card {
  position: relative;
  max-width: 560px; width: 100%;
  padding: 40px 40px 32px;
  background: rgba(18, 20, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 136, 0, 0.06) inset;
  backdrop-filter: blur(8px);
  animation: entry-rise 0.55s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes entry-rise {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.entry-gate-mark-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.entry-gate-mark {
  display: inline-block;
  height: 26px;
  width: 130px;
  background-color: var(--ink, #f6f4ef);
  -webkit-mask: url('ghost_logo.png') no-repeat left center / contain;
          mask: url('ghost_logo.png') no-repeat left center / contain;
}
.entry-gate-ver {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 8px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
}
.entry-gate-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.entry-gate-eyebrow .accent { color: var(--orange); font-weight: 700; }
.entry-gate-title {
  font-family: var(--sans);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 18px;
}
.entry-gate-deck {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.entry-gate-points {
  list-style: none; padding: 0; margin: 0 0 22px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 14px 0;
}
.entry-gate-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 4px 0;
  line-height: 1.5;
}
.entry-gate-points .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  margin-top: 6px; flex: 0 0 6px;
}
.entry-gate-check {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
  padding: 12px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  margin-bottom: 18px;
  transition: border-color 0.18s, background 0.18s;
}
.entry-gate-check:hover { border-color: var(--ink-mute); }
.entry-gate-check.is-on {
  border-color: var(--orange);
  background: rgba(255, 136, 0, 0.06);
}
.entry-gate-check input { position: absolute; opacity: 0; pointer-events: none; }
.entry-gate-check .box {
  width: 16px; height: 16px; flex: 0 0 16px;
  border: 1px solid var(--ink-mute);
  margin-top: 2px;
  position: relative;
  transition: border-color 0.18s, background 0.18s;
}
.entry-gate-check.is-on .box {
  border-color: var(--orange);
  background: var(--orange);
}
.entry-gate-check.is-on .box::after {
  content: '';
  position: absolute;
  left: 4px; top: 0px;
  width: 5px; height: 10px;
  border: solid #0a0b0f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.entry-gate-check .lbl {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.entry-gate-check.is-on .lbl { color: var(--ink); }
.entry-gate-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.entry-gate-cta {
  flex: 0 0 auto;
}
.entry-gate-cta.is-disabled,
.entry-gate-cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.entry-gate-foot {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.4;
}
@media (max-width: 540px) {
  .entry-gate-card { padding: 28px 22px 24px; }
  .entry-gate-title { font-size: 24px; }
  .entry-gate-actions { flex-direction: column; align-items: stretch; }
}

/* 7-day trial tile — compact horizontal card under the main 3-up grid */
.trial-tile {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  border: 1px dashed var(--line-2);
  background:
    linear-gradient(120deg, rgba(255,136,0,0.04) 0%, rgba(255,136,0,0) 35%),
    var(--bg-1);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, transform 0.18s, background 0.18s;
}
.trial-tile:hover {
  border-color: var(--orange);
  border-style: solid;
  transform: translateY(-1px);
}
.trial-meta {
  display: flex; align-items: center; gap: 10px;
  padding-right: 22px;
  border-right: 1px solid var(--line-2);
  align-self: stretch;
}
.trial-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}
.trial-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,136,0,0.6);
  animation: trial-pulse 2.2s ease-out infinite;
}
@keyframes trial-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,136,0,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,136,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,136,0,0); }
}
.trial-body { min-width: 0; }
.trial-title {
  margin: 0 0 4px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trial-blurb {
  margin: 0;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}
.trial-cta {
  display: flex; align-items: center; gap: 10px;
  padding-left: 22px;
  border-left: 1px solid var(--line-2);
  align-self: stretch;
  white-space: nowrap;
}
.trial-cta-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.trial-arrow {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--orange);
  transition: transform 0.18s;
}
.trial-tile:hover .trial-arrow { transform: translateX(3px); }
@media (max-width: 820px) {
  .trial-tile {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 20px;
  }
  .trial-meta {
    padding-right: 0;
    border-right: none;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-2);
  }
  .trial-cta {
    padding-left: 0;
    border-left: none;
    padding-top: 12px;
    border-top: 1px solid var(--line-2);
    justify-content: space-between;
  }
}

.username-form { max-width: 720px; }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg-2);
  color: var(--ink-2);
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
}
.pill.good { color: var(--good); border-color: rgba(34,227,163,0.3); }
.pill.bad { color: var(--bad); border-color: rgba(255,93,108,0.3); }
.pill.warn { color: var(--warn); border-color: rgba(245,200,75,0.3); }


/* ─────────────────────────────────────────────
   Store-lock overlay (pricing page)
   ───────────────────────────────────────────── */
.store-lock {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-items: center;
  padding: 28px;
  animation: storeLockFadeIn 320ms ease-out both;
}
@keyframes storeLockFadeIn { from { opacity: 0; } to { opacity: 1; } }
.store-lock-bg {
  position: absolute; inset: 0;
  background: rgba(8,9,12,0.32);
  backdrop-filter: blur(28px) saturate(120%) brightness(0.85);
  -webkit-backdrop-filter: blur(28px) saturate(120%) brightness(0.85);
}
.store-lock-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,136,0,0.10), transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(155,92,246,0.08), transparent 60%);
  pointer-events: none;
}
.store-lock-card {
  position: relative;
  max-width: 560px; width: 100%;
  background: linear-gradient(180deg, rgba(20,22,28,0.92), rgba(12,13,17,0.92));
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 36px 36px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  text-align: center;
  animation: storeLockRise 480ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes storeLockRise {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.store-lock-ghost {
  width: 280px; height: 64px;
  margin: 8px auto 28px;
  background-color: var(--ink, #f6f4ef);
  -webkit-mask: url('ghost_logo.png') no-repeat center / contain;
          mask: url('ghost_logo.png') no-repeat center / contain;
  animation: ghostFloat 4.2s ease-in-out infinite;
  filter: drop-shadow(0 18px 40px rgba(255,136,0,0.22));
}
.store-lock-ghost.is-static {
  animation: none;
}
@keyframes ghostFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1.5deg); }
}
.store-lock-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; color: var(--orange);
  margin-bottom: 14px; font-weight: 700;
  text-transform: uppercase;
}
  letter-spacing: 0.22em; color: var(--orange);
  margin-bottom: 14px; font-weight: 700;
}
.store-lock-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255,136,0,0.6);
  animation: storeLockPulse 1.8s ease-in-out infinite;
}
@keyframes storeLockPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.store-lock-title {
  font-family: var(--sans);
  font-size: 30px; line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.store-lock-deck {
  margin: 0 0 20px; color: var(--ink-2);
  font-size: 14.5px; line-height: 1.6;
}
.store-lock-points {
  list-style: none; padding: 16px 0; margin: 0 0 22px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  text-align: left;
}
.store-lock-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--ink-3);
  padding: 5px 0; line-height: 1.5;
}
.store-lock-points .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); margin-top: 6px; flex: 0 0 6px;
}
.store-lock-actions {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.store-lock-foot {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--ink-mute);
  text-transform: uppercase;
}
.store-lock-foot .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-mute);
}
@media (max-width: 540px) {
  .store-lock-card { padding: 28px 22px 24px; }
  .store-lock-title { font-size: 24px; }
  .store-lock-actions { flex-direction: column; }
}


/* Floating ghosts behind store-lock card */
.store-lock-floaters {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.store-lock-floaters .floater {
  position: absolute;
  top: 0; left: 0;
  display: grid; place-items: center;
  line-height: 1;
  opacity: 0.55;
  filter: drop-shadow(0 6px 18px rgba(255,136,0,0.22));
  will-change: transform;
  user-select: none;
}
@keyframes floaterBob {
  0%, 100% { filter: drop-shadow(0 6px 18px rgba(255,136,0,0.18)); }
  50%      { filter: drop-shadow(0 14px 28px rgba(155,92,246,0.22)); }
}
