/* ==========================================================================
   holdonquietly — shared stylesheet
   Liquid glass over a live aurora. Real backdrop-filter (this is a browser,
   not an OBS source). Monochrome inline SVG icons, no emoji.
   ========================================================================== */

:root {
  --glass: rgba(255,255,255,0.10);
  --glass-strong: rgba(255,255,255,0.18);
  --brd: rgba(255,255,255,0.30);
  --dim: rgba(255,255,255,0.82);
  --dim2: rgba(255,255,255,0.62);
  --radius: 16px;
  --nav-h: 54px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #fff; line-height: 1.55; background: #0b0d18;
  min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden;
}
main { flex: 1 0 auto; }

/* vivid aurora behind the glass */
body::before {
  content: ""; position: fixed; inset: -25%; z-index: -1;
  background:
    radial-gradient(40% 50% at 20% 22%, rgba(139,124,247,.78), transparent 60%),
    radial-gradient(44% 52% at 82% 16%, rgba(109,139,242,.72), transparent 60%),
    radial-gradient(50% 58% at 66% 86%, rgba(167,139,250,.62), transparent 62%),
    radial-gradient(42% 50% at 12% 84%, rgba(64,176,232,.5), transparent 60%);
  filter: saturate(140%);
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1.06); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
  html { scroll-behavior: auto; }
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--brd); border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 0 rgba(255,255,255,.08);
}

/* ---------------- nav ---------------- */
nav {
  position: sticky; top: 0; z-index: 30; height: var(--nav-h);
  display: flex; align-items: center; gap: 18px; padding: 0 20px;
  background: rgba(11,13,24,.55);
  backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
nav .brand {
  display: flex; align-items: center; gap: 10px; margin-right: auto;
  font-weight: 800; letter-spacing: -.01em; color: #fff; text-decoration: none; font-size: 15px;
}
nav .brand img { width: 26px; height: 26px; border-radius: 7px; background: rgba(255,255,255,.9); padding: 3px; }
nav .navlinks { display: flex; gap: 6px; align-items: center; }
nav .navlinks a {
  color: var(--dim); text-decoration: none; font-size: 13.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 9px; transition: color .15s ease, background .15s ease;
}
nav .navlinks a:hover { color: #fff; background: rgba(255,255,255,.08); }
nav .navlinks a.active { color: #fff; background: rgba(255,255,255,.14); }
@media (max-width: 680px) {
  nav { gap: 8px; padding: 0 12px; }
  nav .navlinks a { padding: 6px 8px; font-size: 12.5px; }
  nav .brand span { display: none; }
}

/* ---------------- layout ---------------- */
.wrap { width: 100%; max-width: 980px; margin: 0 auto; padding: 46px 22px 56px; }
.wrap.narrow { max-width: 820px; }
.spacer { height: 44px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; color: var(--dim2); margin-bottom: 12px; }
.h2 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; letter-spacing: -.01em; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.lead { color: var(--dim); max-width: 640px; margin-top: 8px; }
section.block { scroll-margin-top: 70px; }

/* ---------------- icons ---------------- */
.ico { display: block; margin-bottom: 12px; line-height: 0; }
.ico svg { width: 27px; height: 27px; color: rgba(255,255,255,.9); filter: drop-shadow(0 1px 2px rgba(0,0,0,.45)); }
.proj .ico { margin-bottom: 15px; }
.proj .ico svg { width: 34px; height: 34px; }
.cta svg, .btn svg { width: 18px; height: 18px; flex: none; }

/* ---------------- hero / page head ---------------- */
.hero { text-align: center; padding: 52px 30px 44px; margin-bottom: 20px; }
.mark {
  width: 132px; height: 132px; margin: 0 auto 22px; border-radius: 32px; display: grid; place-items: center;
  background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 12px 36px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.85);
}
.mark img { width: 78%; height: 78%; object-fit: contain; display: block; }
.logo { font-size: clamp(38px, 7.5vw, 66px); font-weight: 800; letter-spacing: -.015em; text-shadow: 0 2px 12px rgba(0,0,0,.32); }
.tag { color: var(--dim); font-size: clamp(15px, 2.3vw, 18px); margin: 14px auto 0; max-width: 580px; text-shadow: 0 1px 4px rgba(0,0,0,.35); }

.pagehead { padding: 34px 30px; margin-bottom: 26px; display: flex; gap: 22px; align-items: center; }
.pagehead .ph-ico { flex: none; line-height: 0; }
.pagehead .ph-ico svg { width: 52px; height: 52px; color: rgba(255,255,255,.9); filter: drop-shadow(0 2px 4px rgba(0,0,0,.45)); }
.pagehead h1 { font-size: clamp(26px, 5vw, 40px); font-weight: 800; letter-spacing: -.015em; }
.pagehead p { color: var(--dim); margin-top: 6px; max-width: 560px; font-size: 15px; }
@media (max-width: 560px) { .pagehead { flex-direction: column; align-items: flex-start; gap: 14px; } }

/* ---------------- buttons ---------------- */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero .cta-row { justify-content: center; }
.cta {
  display: inline-flex; gap: 9px; align-items: center; padding: 14px 28px; border-radius: 14px;
  text-decoration: none; font-weight: 800; font-size: .98rem; color: #fff; cursor: pointer;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px) saturate(150%); -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 6px 22px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.42);
  transition: background .2s ease, transform .2s ease;
}
.cta:hover { background: rgba(255,255,255,.3); transform: translateY(-2px); }
.cta.ghost { background: rgba(255,255,255,.06); }
.cta.ghost:hover { background: rgba(255,255,255,.14); }
.by { margin-top: 16px; color: var(--dim); font-size: 13px; text-shadow: 0 1px 3px rgba(0,0,0,.3); }
.by a { color: #fff; text-decoration: underline; }
.btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 11px;
  text-decoration: none; font-weight: 700; font-size: 13.5px; color: #fff; cursor: pointer;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  transition: background .18s ease, transform .18s ease;
}
.btn:hover { background: rgba(255,255,255,.26); transform: translateY(-1px); }
.btn.mini { background: rgba(255,255,255,.06); font-weight: 600; }
.btn.mini:hover { background: rgba(255,255,255,.14); }
.soon { font-size: 12.5px; font-weight: 700; color: var(--dim2); letter-spacing: .04em; }

/* ---------------- cards ---------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.card { padding: 20px; transition: transform .16s ease, background .16s ease; }
.card:hover { transform: translateY(-3px); background: var(--glass-strong); }
.card h3 { font-size: 16px; margin: 0 0 6px; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,.35); }
.card p { font-size: 13.5px; color: var(--dim); }

.lineup { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.proj { padding: 24px; display: flex; flex-direction: column; }
.proj h3 { font-size: 19px; font-weight: 800; margin-bottom: 4px; letter-spacing: -.01em; }
.proj .kind { font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--dim2); font-weight: 700; margin-bottom: 12px; }
.proj p { font-size: 14px; color: var(--dim); flex: 1 0 auto; }
.proj .act { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* clickable whole-card link */
a.proj { text-decoration: none; color: inherit; transition: transform .16s ease, background .16s ease; }
a.proj:hover { transform: translateY(-3px); background: var(--glass-strong); }
.proj .go { margin-top: 18px; font-size: 13.5px; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.proj .go svg { width: 15px; height: 15px; }

/* ---------------- join / address panel ---------------- */
.join { padding: 22px 24px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.join .lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--dim2); font-weight: 700; }
.addr {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.18);
  padding: 9px 14px; border-radius: 10px; user-select: all;
}
.join .grow { flex: 1 1 auto; }

/* ---------------- codex ---------------- */
.codex { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.entry { padding: 20px; }
.entry h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.entry h3 svg { width: 19px; height: 19px; color: rgba(255,255,255,.9); flex: none; }
.entry ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.entry li { font-size: 13.5px; color: var(--dim); padding-left: 14px; position: relative; }
.entry li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px;
  border-radius: 50%; background: rgba(255,255,255,.5);
}

/* ---------------- steps ---------------- */
.steps { display: flex; flex-direction: column; gap: 12px; counter-reset: s; }
.step { padding: 18px 20px; display: flex; gap: 15px; align-items: flex-start; }
.step::before {
  counter-increment: s; content: counter(s);
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
  font-size: 13px; font-weight: 800;
}
.step h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 3px; }
.step p { font-size: 13.5px; color: var(--dim); }
.step code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12.5px;
  background: rgba(0,0,0,.3); padding: 2px 7px; border-radius: 6px; border: 1px solid rgba(255,255,255,.14);
}

/* ---------------- footer ---------------- */
footer { flex: none; text-align: center; padding: 30px 22px 26px; color: var(--dim); font-size: 13px; text-shadow: 0 1px 3px rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.08); }
footer a { color: #fff; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .hb { width: 13px; height: 13px; vertical-align: -2px; opacity: .85; margin: 0 1px; color: rgba(255,255,255,.9); }
footer .fnav { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
footer .fnav a { color: var(--dim); font-size: 13px; font-weight: 600; }
footer .fnav a:hover { color: #fff; }
