/* ============ 1.vu — Something is surfacing ============ */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --abyss: #02060e;
  --ink: #eaf6ff;
  --dim: #8fb4c4;
  --glow: #7defff;
  --glow-deep: #0e6a78;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Sora", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--abyss);
  color: var(--ink);
}

body {
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: rgba(125, 239, 255, 0.25); color: #ffffff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--abyss); }
::-webkit-scrollbar-thumb {
  background: #123240;
  border-radius: 5px;
  border: 2px solid var(--abyss);
}
::-webkit-scrollbar-thumb:hover { background: var(--glow-deep); }

:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- fixed scene ---------- */

#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

#vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 50% 45%, transparent 55%, rgba(1, 3, 8, 0.55) 100%);
}

/* ---------- top bar ---------- */

.topbar {
  position: fixed;
  z-index: 10;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 3.5rem);
  mix-blend-mode: screen;
}

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark:hover { color: var(--glow); }

.coords {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------- panels ---------- */

main { position: relative; z-index: 2; }

.panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(1.25rem, 6vw, 4rem);
}

.statement {
  max-width: 34rem;
  opacity: 0;
  transform: translateY(2.5rem);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.statement.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.statement h2 {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 1.25rem;
}

.statement p {
  color: var(--dim);
  max-width: 30rem;
  margin-inline: auto;
}

/* ---------- hero ---------- */

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(5.5rem, 22vw, 17rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-shadow: 0 0 80px rgba(125, 239, 255, 0.18);
  animation: heroIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both 0.2s;
}
.hero-title em {
  font-style: italic;
  font-weight: 200;
  color: var(--glow);
}

.hero-sub {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.15rem, 1rem + 1vw, 1.6rem);
  color: var(--dim);
  animation: heroIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both 0.55s;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(2rem); filter: blur(10px); }
  to   { opacity: 1; transform: none;             filter: blur(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--dim);
  animation: heroIn 1.6s ease both 1.2s;
  transition: opacity 0.5s ease;
}
.scroll-hint.gone { opacity: 0; }

.scroll-line {
  width: 1px;
  height: 3rem;
  overflow: hidden;
  position: relative;
  background: rgba(143, 180, 196, 0.2);
}
.scroll-line::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--glow));
  animation: drip 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes drip {
  to { top: 100%; }
}

/* ---------- final panel ---------- */

.status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 0 0 rgba(125, 239, 255, 0.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 12px rgba(125, 239, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 239, 255, 0); }
}

.cta {
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 239, 255, 0.35);
  padding-bottom: 0.2em;
  transition: color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease;
}
.cta:hover {
  color: var(--glow);
  border-color: var(--glow);
  text-shadow: 0 0 32px rgba(125, 239, 255, 0.45);
}

/* ---------- footer ---------- */

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3.5rem) calc(1.5rem + env(safe-area-inset-bottom));
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------- fallback ---------- */

#fallback[hidden] { display: none; }

#fallback {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 120%, #06283a 0%, var(--abyss) 60%);
}
#fallback p { max-width: 24rem; color: var(--dim); line-height: 2; }
#fallback strong { color: var(--ink); }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-title, .hero-sub, .scroll-hint { animation-duration: 0.01s; animation-delay: 0s; }
  .scroll-line::after { animation: none; top: 0; opacity: 0.6; }
  .statement {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .pulse-dot { animation: none; box-shadow: none; }
}

@media (max-width: 560px) {
  .coords { display: none; }
  .footer { flex-direction: column; gap: 0.4rem; }
}

/* ============ OneLink — creator & app UI ============ */

/* ---------- top nav ---------- */

.topnav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.topnav a {
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.topnav a:hover { color: var(--glow); }

/* ---------- hero (compact for creator) ---------- */

.hero-title--compact {
  font-size: clamp(3.2rem, 12vw, 7.5rem);
}
.hero .hero-sub { margin-top: 0.6rem; }

.hero .scroll-hint { bottom: calc(1.6rem + env(safe-area-inset-bottom)); }

/* ---------- creator card ---------- */

.creator {
  position: relative;
  z-index: 2;
  width: min(100%, 40rem);
  margin-top: 2.4rem;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  border-radius: 18px;
  background: rgba(4, 12, 22, 0.66);
  border: 1px solid rgba(125, 239, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(125, 239, 255, 0.08);
  animation: heroIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both 0.85s;
}

.creator-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.7rem;
}

.creator-row {
  display: flex;
  gap: 0.6rem;
}

#creator-url {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(125, 239, 255, 0.18);
  background: rgba(2, 6, 14, 0.7);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#creator-url::placeholder { color: rgba(143, 180, 196, 0.5); }
#creator-url:focus {
  outline: none;
  border-color: var(--glow);
  box-shadow: 0 0 0 3px rgba(125, 239, 255, 0.15);
}

.creator-go {
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  border: 1px solid rgba(125, 239, 255, 0.4);
  background: linear-gradient(180deg, rgba(125, 239, 255, 0.18), rgba(125, 239, 255, 0.08));
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}
.creator-go:hover { border-color: var(--glow); box-shadow: 0 0 24px rgba(125, 239, 255, 0.25); }
.creator-go:active { transform: translateY(1px); }
.creator-go:disabled { opacity: 0.55; cursor: wait; }

.hp-field {
  position: absolute;
  left: -4000px;
  top: -4000px;
  opacity: 0;
  pointer-events: none;
}

.creator-terms {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 0.9rem;
  font-size: 0.66rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(143, 180, 196, 0.78);
  cursor: pointer;
  text-align: left;
}
.creator-terms input {
  margin-top: 0.1rem;
  accent-color: var(--glow);
  width: 0.85rem;
  height: 0.85rem;
  flex: none;
  cursor: pointer;
}
.creator-terms a,
.creator-terms a:visited {
  color: #9fdcef;
  text-decoration: underline;
  text-decoration-color: rgba(125, 239, 255, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.creator-terms a:hover { color: var(--glow); text-decoration-color: var(--glow); }
.creator-terms:focus-within { outline: 1px solid rgba(125, 239, 255, 0.4); outline-offset: 4px; }

/* visited links keep their themed colour — no browser-default purple anywhere */
.inline-link:visited      { color: var(--glow); }
.footer a:visited        { color: var(--dim); }
.topnav a:visited        { color: var(--dim); }
.cta:visited             { color: var(--ink); }
.result-link:visited     { color: var(--glow); }
.ad-house:visited .ad-house-cta { color: var(--glow); }
.sub-lead a:visited      { color: #9fdcef; }
.param-note a:visited    { color: #9fdcef; }

.legal-p {
  color: var(--dim);
  margin-bottom: 1rem;
  max-width: 40rem;
}
.legal-p strong { color: var(--ink); }

.creator-advanced {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--dim);
}
.creator-advanced summary {
  cursor: pointer;
  letter-spacing: 0.08em;
  user-select: none;
  width: fit-content;
}
.creator-advanced summary:hover { color: var(--ink); }
.creator-advanced-hint { color: rgba(143, 180, 196, 0.65); }
.creator-advanced-hint strong { color: var(--glow); font-weight: 500; }
.creator-advanced[open] summary { margin-bottom: 0.6rem; }

#creator-slug {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(125, 239, 255, 0.18);
  background: rgba(2, 6, 14, 0.7);
  color: var(--ink);
  font-family: var(--mono, monospace);
  font-size: 0.9rem;
}
#creator-slug:focus {
  outline: none;
  border-color: var(--glow);
  box-shadow: 0 0 0 3px rgba(125, 239, 255, 0.15);
}

.creator-msg {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--dim);
  min-height: 1.2em;
}
.creator-msg--error { color: #ffb3a6; }

/* ---------- creator result ---------- */

.creator-result {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(125, 239, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.result-link {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 2.6vw, 2.4rem);
  color: var(--glow);
  text-decoration: none;
  letter-spacing: 0.01em;
  word-break: break-all;
  text-shadow: 0 0 40px rgba(125, 239, 255, 0.35);
}
.result-link:hover { text-shadow: 0 0 60px rgba(125, 239, 255, 0.6); }

.result-qr {
  background: #ffffff;
  padding: 8px;
  border-radius: 10px;
  line-height: 0;
}
.result-qr img { display: block; width: 120px; height: 120px; }

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding-bottom: env(safe-area-inset-bottom);
}
.result-actions--center { justify-content: center; }

.result-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 239, 255, 0.3);
  background: rgba(125, 239, 255, 0.06);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.result-btn:hover { border-color: var(--glow); background: rgba(125, 239, 255, 0.14); }
.result-btn--quiet { border-color: rgba(143, 180, 196, 0.25); color: var(--dim); }
.result-btn--go { background: rgba(125, 239, 255, 0.15); }
.result-btn--danger { border-color: rgba(255, 120, 100, 0.4); color: #ffb3a6; }
.result-btn--danger:hover { border-color: #ff8873; background: rgba(255, 120, 100, 0.12); }

.result-note {
  font-size: 0.72rem;
  color: rgba(143, 180, 196, 0.75);
  letter-spacing: 0.04em;
}
.result-note em { color: var(--dim); }

/* ---------- hero counters ---------- */

.hero-counters {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  animation: heroIn 1.6s ease both 1.1s;
}
.hero-counters strong { color: var(--ink); font-weight: 600; }
.counter-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--glow-deep);
}

/* ---------- inline links & small cta ---------- */

.inline-link {
  color: var(--glow);
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 239, 255, 0.35);
}
.inline-link:hover { border-color: var(--glow); }

.cta--small {
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.35rem);
  margin-top: 1.6rem;
}

/* ---------- code card ---------- */

.code-card {
  margin: 1.8rem auto 0;
  max-width: 34rem;
  text-align: left;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(125, 239, 255, 0.14);
  background: rgba(2, 6, 14, 0.8);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}
.code-card-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  background: rgba(125, 239, 255, 0.05);
  border-bottom: 1px solid rgba(125, 239, 255, 0.1);
}
.code-card-head span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(143, 180, 196, 0.25);
}
.code-card-head span:nth-child(1) { background: rgba(255, 120, 100, 0.55); }
.code-card-head span:nth-child(2) { background: rgba(255, 200, 90, 0.55); }
.code-card-head span:nth-child(3) { background: rgba(110, 240, 160, 0.55); }
.code-card-head em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
.code-card pre {
  margin: 0;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #cdeef7;
}
.code-out { color: var(--glow); }

/* ---------- ad slots ---------- */

.ad-slot {
  margin: 2rem auto 0;
  max-width: 34rem;
}
.ad-house {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.4rem;
  border-radius: 12px;
  border: 1px dashed rgba(143, 180, 196, 0.3);
  text-decoration: none;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ad-house:hover { border-color: var(--glow); background: rgba(125, 239, 255, 0.04); }
.ad-house-tag {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(143, 180, 196, 0.7);
}
.ad-house-line { font-size: 0.92rem; color: var(--ink); }
.ad-house-cta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--glow);
}

/* ---------- subpages (docs, stats, preview, 404) ---------- */

.subpage { overflow-x: hidden; }

.sub-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(14, 106, 120, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 115%, rgba(6, 40, 58, 0.6) 0%, transparent 55%),
    var(--abyss);
}

.topbar--static {
  position: absolute;
  mix-blend-mode: normal;
}

.sub-main {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin: 0 auto;
  padding: 7rem clamp(1.25rem, 5vw, 3rem)
           calc(3rem + env(safe-area-inset-bottom)) clamp(1.25rem, 5vw, 3rem);
}

.sub-section { margin-bottom: 3rem; }
.sub-section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sub-title {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 1rem;
  word-break: break-word;
}

.sub-lead { color: var(--dim); max-width: 38rem; }
.sub-lead code, .param-note code, .endpoint code, .dest-card code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
  color: var(--glow);
  background: rgba(125, 239, 255, 0.07);
  border-radius: 6px;
  padding: 0.1em 0.4em;
  word-break: break-all;
}

.sub-section h2 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.9rem;
}

.sub-section .code-card { margin: 1rem 0 0; text-align: left; }

.endpoint {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.method {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
}
.method--post { background: rgba(110, 240, 160, 0.15); color: #8ef2b4; }
.method--get { background: rgba(125, 239, 255, 0.15); color: var(--glow); }
.method--del { background: rgba(255, 120, 100, 0.15); color: #ffb3a6; }

.param-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: rgba(143, 180, 196, 0.85);
}

.rules-list {
  list-style: none;
  color: var(--dim);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.rules-list li::before {
  content: "·";
  color: var(--glow);
  margin-right: 0.7rem;
  font-weight: 700;
}

/* ---------- stats ---------- */

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.stat-card {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(125, 239, 255, 0.12);
  background: rgba(4, 12, 22, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-card strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--glow);
}
.stat-card span {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 9rem;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(125, 239, 255, 0.12);
  background: rgba(2, 6, 14, 0.55);
}
.chart-col {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.chart-bar {
  width: 100%;
  min-height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--glow), rgba(14, 106, 120, 0.6));
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.chart-col:hover .chart-bar { opacity: 1; }

.ref-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ref-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: rgba(4, 12, 22, 0.4);
  border: 1px solid rgba(125, 239, 255, 0.08);
}
.ref-host { color: var(--ink); word-break: break-all; }
.ref-n { color: var(--dim); white-space: nowrap; }

.dest-card {
  margin: 1.4rem 0;
  padding: 1.1rem 1.3rem;
  border-radius: 12px;
  border: 1px solid rgba(125, 239, 255, 0.2);
  background: rgba(4, 12, 22, 0.6);
  word-break: break-all;
}

.delete-form { margin-top: 0.8rem; }

/* ---------- responsive ---------- */

@media (max-width: 640px) {
  .creator-row { flex-direction: column; }
  .creator-go { width: 100%; }
  .sub-section--split { grid-template-columns: 1fr; }
  .topnav { gap: 1rem; }
  .hero-counters { flex-direction: column; gap: 0.4rem; }
  .counter-dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .creator, .hero-counters { animation-duration: 0.01s; animation-delay: 0s; }
}
