/* ================================================================
   FRIEND.RIP — friend.tech-style theme
   Pixel font · cyan #00BAFA · black 2.7px borders · pill everything
   ================================================================ */

:root {
  --cyan: #00BAFA;
  --cyan-soft: #7FDCFF;
  --cyan-tint: #EAF8FF;
  --cyan-flash: #C4EFFF;
  --ink: #212529;
  --gray: #7C8B94;
  --gray-light: #A9BEC9;
  --white: #FFFFFF;
  --green: #2ECC71;
  --amber: #FFB020;
  --red: #FF5C5C;
  --bd: 2.7px;
  --shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  --shadow-lift: 0 6px 18px rgba(0, 90, 130, 0.14);
  --font: "Pixelify Sans", "Courier New", monospace; /* body — pixel but readable */
  --font-px: "Silkscreen", "Courier New", monospace; /* display — brand punch */
  --r: 22px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  background: #DFF4FE;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body.is-loading .js-landing,
body.is-loading .js-app { display: none; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--cyan); color: #fff; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; border-radius: 8px; }

.bg {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(85% 75% at 50% 100%, #FFFFFF 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #C7EDFC 0%, #DFF4FE 50%, #BDE9FB 100%);
}

/* Display font (Silkscreen) on brand/headings/chips */
.pill, .brand__word, .landing__title, .side__title, .count, .tag, .fchip,
.chip-soon, .chip-room, .chip-host, .card__title, .docs__head, .docs__num,
.docs__flytitle, .docs__flyloop, .profile__name, .pstat strong, .nomics strong,
.launch__label, .launch__done-big, .docs__steps strong {
  font-family: var(--font-px);
}

/* ---------- Pills (buttons) ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-px); font-weight: 700; font-size: 14px;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--cyan);
  border: var(--bd) solid #000;
  border-radius: 999px;
  padding: 11px 24px 9px;
  box-shadow: var(--shadow);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); filter: brightness(1.06); }
.pill:active { transform: translateY(1px); box-shadow: var(--shadow); }
.pill--big { font-size: 17px; padding: 16px 34px 14px; }
.pill--ghost { background: #fff; color: var(--ink); }
.pill--ghost:hover { filter: none; background: var(--cyan-tint); }
.pill__icon { width: 18px; height: 18px; flex: none; }
.pill--big .pill__icon { width: 21px; height: 21px; }

/* ---------- Top bar ---------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px clamp(16px, 3vw, 32px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__croc { width: 38px; height: auto; transition: transform 0.25s ease; }
.brand:hover .brand__croc { transform: rotate(-8deg) scale(1.06); }
.brand__word { font-weight: 700; font-size: 19px; letter-spacing: 0.02em; }
.brand__tld { color: var(--cyan); }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__link {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: #fff; border: var(--bd) solid #000; border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.16s ease, background-color 0.16s ease;
}
.topbar__link svg { width: 16px; height: 16px; }
.topbar__link:hover { transform: translateY(-2px); background: var(--cyan-tint); }

.user {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: var(--bd) solid #000; border-radius: 999px;
  padding: 4px 8px 4px 4px;
  box-shadow: var(--shadow);
}
.user__avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #000; object-fit: cover; background: var(--cyan-tint); }
.user__handle { font-size: 12px; font-weight: 700; max-width: 130px; overflow: hidden; text-overflow: ellipsis; }
.user__out { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--gray); transition: color 0.15s ease, background-color 0.15s ease; }
.user__out svg { width: 15px; height: 15px; }
.user__out:hover { color: var(--red); background: #FFF0F0; }
body.is-authed .pill--cta { display: none; }

/* ---------- Landing ---------- */
.landing {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(24px, 5vh, 64px) 20px 48px;
}
.landing__title {
  font-size: clamp(30px, 6vw, 54px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.01em;
  margin: 30px 0 18px;
}
.strike { position: relative; white-space: nowrap; }
.strike::after {
  content: "";
  position: absolute; left: -2%; right: -2%; top: 52%;
  height: 0.13em;
  background: var(--cyan);
  border: 2px solid #000;
  border-radius: 99px;
  transform: rotate(-2.5deg);
}
.landing__sub { color: var(--gray); font-size: 17px; margin-bottom: 34px; max-width: 560px; }
.landing__hint {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px;
  color: var(--gray);
  font-size: 13.5px;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  padding: 8px 18px 7px;
}
.landing__error {
  margin-top: 18px;
  color: #B33A3A;
  font-size: 12px;
  background: #FFECEC;
  border: var(--bd) solid #000;
  border-radius: 14px;
  padding: 10px 18px;
  max-width: 480px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); border: 2px solid #000; animation: blink 1.6s ease-in-out infinite; flex: none; }
body.is-live .dot { background: var(--green); }
.dot--amber { background: var(--amber); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* The coin */
.coin { position: relative; animation: float 5.5s ease-in-out infinite; }
.coin__disc {
  width: clamp(170px, 26vw, 230px);
  aspect-ratio: 1;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 30% 22%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 45%),
    var(--cyan);
  border: var(--bd) solid #000;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 140, 200, 0.35), inset 0 0 0 7px rgba(255, 255, 255, 0.22);
}
.coin__disc img { width: 58%; height: auto; filter: drop-shadow(0 6px 10px rgba(0, 90, 140, 0.4)); }
.coin__tag {
  position: absolute; right: -22px; bottom: 8px;
  background: #fff; border: var(--bd) solid #000; border-radius: 999px;
  padding: 7px 14px 5px;
  font-weight: 700; font-size: 13px; color: var(--cyan);
  transform: rotate(-8deg);
  box-shadow: var(--shadow);
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- App layout ---------- */
.app {
  flex: 1;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding: 8px clamp(16px, 3vw, 32px) 40px;
  align-items: start;
}

.panel {
  background: #fff;
  border: var(--bd) solid #000;
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

/* Sidebar */
.side {
  display: flex; flex-direction: column;
  overflow: hidden;
  position: sticky; top: 16px;
  height: calc(100dvh - 110px);
  min-height: 420px;
}
.side__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--cyan);
  color: #fff;
  border-bottom: var(--bd) solid #000;
  padding: 13px 16px 11px;
}
.side__title { font-weight: 700; font-size: 13px; letter-spacing: 0.04em; }
.count {
  background: #000; color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px 2px;
  transition: transform 0.2s ease;
}
.count.is-pop { animation: pop 0.45s ease; }
@keyframes pop { 40% { transform: scale(1.35); } }

.side__list { list-style: none; overflow-y: auto; flex: 1; padding: 8px; scrollbar-width: thin; }
.member {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 14px;
  border: 2px solid transparent;
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.member:hover { background: var(--cyan-tint); border-color: rgba(0, 0, 0, 0.7); transform: translateX(4px); }
.member__avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #000; object-fit: cover; background: var(--cyan-tint); }
.member__id { min-width: 0; }
.member__name { font-weight: 600; font-size: 14px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.member__handle { color: var(--gray); font-size: 12.5px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }
.member__handle:hover { color: var(--cyan); }
.member__time { color: var(--gray-light); font-size: 11px; white-space: nowrap; }
.member.is-new { animation: arrive 0.6s cubic-bezier(0.16, 1, 0.3, 1), flash 1.6s ease; }
@keyframes arrive { from { opacity: 0; transform: translateY(-14px) scale(0.96); } }
@keyframes flash { 0%, 45% { background-color: var(--cyan-flash); } 100% { background-color: transparent; } }

.side__empty { flex: 1; display: grid; place-items: center; text-align: center; color: var(--gray); font-size: 13.5px; padding: 20px; }
.side__foot {
  border-top: var(--bd) solid #000;
  padding: 10px 16px 8px;
  font-size: 12.5px;
  color: var(--gray);
  background: var(--cyan-tint);
}

/* Content cards */
.content { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.card { padding: 22px 24px; }
.card__head { margin-bottom: 16px; }
.card__head .side__title { color: var(--ink); }
.card__title { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.card__title .js-me-handle { color: var(--cyan); }
.card__sub { color: var(--gray); font-size: 14.5px; }

.card--hello { display: flex; align-items: center; gap: 20px; }
.card--hello__croc { width: 52px; height: auto; flex: none; animation: float 5.5s ease-in-out infinite; }

.card--keys .card__head { display: flex; align-items: center; justify-content: space-between; }
.chip-soon {
  background: var(--amber);
  border: 2px solid #000;
  border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 11px 3px;
  animation: blink 1.6s ease-in-out infinite;
}
.keys { display: flex; align-items: center; gap: 18px; }
.keys__icon {
  flex: none;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--cyan);
  color: #fff;
  border: var(--bd) solid #000;
  border-radius: 16px;
  transform: rotate(-8deg);
}
.keys__icon svg { width: 28px; height: 28px; }
.keys p { color: var(--gray); font-size: 14px; }
.keys strong { color: var(--ink); }

.card__row { display: flex; align-items: center; gap: 12px; }
.tag {
  flex: none;
  background: #000; color: #fff;
  font-weight: 700; font-size: 12px;
  border-radius: 10px;
  padding: 6px 11px 4px;
}
.ca-value {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  color: var(--gray);
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ca-value a { color: var(--cyan); }
body.is-live .ca-value { color: var(--ink); font-weight: 700; }
.iconbtn {
  flex: none;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: var(--cyan-tint);
  border: 2px solid #000;
  border-radius: 12px;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.iconbtn:hover { transform: scale(1.07); background: var(--cyan-flash); }
.iconbtn .ic { width: 17px; height: 17px; }
.iconbtn .ic--check { display: none; color: var(--green); }
.iconbtn.is-copied .ic--copy { display: none; }
.iconbtn.is-copied .ic--check { display: block; }
.card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

/* Chart */
.chart-wait {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-align: left;
  border: 2.7px dashed rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  background: var(--cyan-tint);
  color: var(--gray);
  font-size: 13.5px;
  padding: 30px 22px;
}
.chart-frame { border: var(--bd) solid #000; border-radius: 16px; overflow: hidden; background: #0B1217; }
.chart-frame iframe { display: block; width: 100%; height: min(64vh, 540px); border: 0; }

/* Tokenomics strip */
.nomics { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.nomics li {
  background: var(--cyan-tint);
  border: 2px solid #000;
  border-radius: 14px;
  padding: 14px 14px 11px;
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.nomics li:hover { transform: translateY(-3px); background: var(--cyan-flash); }
.nomics strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.nomics span { color: var(--gray); font-size: 12px; line-height: 1.4; display: block; }

/* ---------- Room ---------- */
.room {
  display: flex; flex-direction: column;
  height: calc(100dvh - 110px);
  min-height: 460px;
  overflow: hidden;
}
.room__head {
  display: flex; align-items: center; gap: 13px;
  border-bottom: var(--bd) solid #000;
  background: var(--cyan-tint);
  padding: 12px 16px;
}
.room__avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #000; object-fit: cover; background: #fff; }
.room__id { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.room__name { font-weight: 700; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.room__handle { color: var(--gray); font-size: 12.5px; }
.room__handle:hover { color: var(--cyan); }
.chip-room {
  background: var(--cyan); color: #fff;
  border: 2px solid #000; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 12px 4px;
  white-space: nowrap;
}
.room__feed {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  scrollbar-width: thin;
}
.msg { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; animation: msg-in 0.3s ease; }
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } }
.msg__avatar { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #000; object-fit: cover; background: var(--cyan-tint); margin-top: 2px; }
.msg__bubble {
  background: var(--cyan-tint);
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 4px 14px 14px 14px;
  padding: 8px 12px 7px;
  max-width: 560px;
  justify-self: start;
}
.msg__meta { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.msg__author { font-weight: 700; font-size: 12.5px; }
.msg__author a { color: inherit; }
.msg__author a:hover { color: var(--cyan); }
.msg__time { color: var(--gray-light); font-size: 9.5px; }
.msg__text { font-size: 14.5px; color: var(--ink); overflow-wrap: anywhere; }
.msg--me .msg__bubble { background: #fff; }
.msg--host .msg__bubble { background: var(--cyan); border-color: #000; }
.msg--host .msg__bubble .msg__text, .msg--host .msg__bubble .msg__author, .msg--host .msg__bubble .msg__time { color: #fff; }
.chip-host {
  background: #000; color: #fff;
  border-radius: 6px;
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.06em;
  padding: 2px 6px 1px;
}
.room__empty { flex: 1; display: grid; place-items: center; text-align: center; color: var(--gray); font-size: 12px; }
.room__composer {
  display: flex; gap: 10px;
  border-top: var(--bd) solid #000;
  padding: 12px 14px;
  background: #fff;
}
.room__input {
  flex: 1;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: var(--bd) solid #000;
  border-radius: 999px;
  padding: 10px 18px 8px;
  outline: none;
}
.room__input:focus { background: var(--cyan-tint); }
.room__input::placeholder { color: var(--gray-light); }
.room__input.is-error { border-color: var(--red); background: #FFF0F0; animation: shake 0.35s ease; }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.room__send { padding-inline: 20px; }
.member { cursor: pointer; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 26px 20px 30px; }
.footer__links { display: inline-flex; gap: 22px; margin-bottom: 12px; }
.footer__links a { font-size: 13.5px; font-weight: 700; color: var(--gray); transition: color 0.15s ease; }
.footer__links a:hover { color: var(--cyan); }
.footer__legal { color: var(--gray-light); font-size: 12px; max-width: 520px; margin: 0 auto 6px; }
.footer__copy { color: var(--gray-light); font-size: 12px; }

/* ---------- Follower tier chips ---------- */
.fchip {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 0.04em;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 2px 8px 1px;
  white-space: nowrap;
}
.fchip--0 { background: #EDF1F3; color: #6B7B85; }
.fchip--1 { background: #D9F3FF; color: #0187CE; }
.fchip--2 { background: var(--cyan); color: #fff; }
.fchip--3 { background: var(--amber); color: #4A3200; }
.fchip--4 { background: #FF5C5C; color: #fff; }
.member__right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

/* ---------- Profile modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 20px;
}
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 35, 51, 0.45);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.profile {
  position: relative;
  width: min(430px, 94vw);
  overflow: hidden;
  animation: modal-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 88dvh;
  overflow-y: auto;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(22px) scale(0.97); } }
.profile__x {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: #fff;
}
.profile__banner {
  height: 120px;
  background: linear-gradient(120deg, var(--cyan-soft), var(--cyan));
  background-size: cover;
  background-position: center;
  border-bottom: var(--bd) solid #000;
}
.profile__avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 3px solid #000;
  object-fit: cover;
  background: var(--cyan-tint);
  margin: -46px 0 0 22px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 60, 90, 0.25);
}
.profile__body { padding: 12px 22px 22px; }
.profile__namerow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.profile__name { font-weight: 700; font-size: 17px; }
.profile__handle {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gray); font-size: 12px; font-weight: 700;
  margin-top: 2px;
}
.profile__handle:hover { color: var(--cyan); }
.profile__xlogo { width: 13px; height: 13px; }
.profile__bio { color: var(--ink); font-size: 13.5px; margin-top: 12px; overflow-wrap: anywhere; }
.profile__bio:empty { display: none; }
.profile__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 16px;
}
.pstat {
  background: var(--cyan-tint);
  border: 2px solid #000;
  border-radius: 12px;
  padding: 10px 8px 7px;
  text-align: center;
}
.pstat strong { display: block; font-size: 15px; font-weight: 700; }
.pstat span { color: var(--gray); font-size: 9px; letter-spacing: 0.04em; }
.profile__actions { display: flex; gap: 10px; margin-top: 18px; }
.profile__actions .pill { flex: 1; }
.msg__author, .msg__avatar, .room__avatar, .room__name { cursor: pointer; }

/* ---------- Docs & Launch modals ---------- */
.pill--launch { background: var(--amber); color: #3A2800; }
.pill--launch:hover { filter: brightness(1.04); }
.docs {
  position: relative;
  width: min(560px, 94vw);
  max-height: 88dvh;
  overflow-y: auto;
  animation: modal-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.docs__head {
  display: flex; align-items: center; gap: 14px;
  background: var(--cyan);
  color: #fff;
  font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
  border-bottom: var(--bd) solid #000;
  padding: 16px 20px 14px;
  position: sticky; top: 0; z-index: 1;
}
.docs__head img { width: 44px; height: auto; }
.docs__head--amber { background: var(--amber); color: #3A2800; }
.docs__body { padding: 22px; }
.docs__steps { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.docs__steps li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.docs__num {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--cyan-tint);
  border: 2px solid #000;
  border-radius: 10px;
  font-weight: 700; font-size: 14px;
  color: var(--cyan);
}
.docs__steps strong { font-size: 13px; display: block; margin-bottom: 3px; }
.docs__steps p { color: var(--gray); font-size: 13.5px; }
.docs__steps p strong { display: inline; font-size: inherit; color: var(--ink); }
.docs__flywheel {
  margin-top: 22px;
  background: var(--cyan);
  border: var(--bd) solid #000;
  border-radius: 16px;
  padding: 18px 20px 16px;
  color: #fff;
  box-shadow: 4px 4px 0 #000;
}
.docs__flywheel p { font-size: 13.5px; margin-bottom: 8px; }
.docs__flywheel p:last-child { margin-bottom: 0; }
.docs__flywheel strong { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.docs__flytitle { font-weight: 700; font-size: 14px !important; letter-spacing: 0.05em; }
.docs__flyloop {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 9px 12px 7px;
  font-weight: 700;
  text-align: center;
}
.docs__foot { margin-top: 18px; color: var(--gray-light); font-size: 10.5px; text-align: center; }
.docs__foot a { color: var(--cyan); }

.launch__form { display: flex; flex-direction: column; }
.launch__intro { color: var(--gray); font-size: 13.5px; margin-bottom: 18px; }
.launch__intro strong { color: var(--ink); }
.launch__label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--gray); margin: 0 0 6px 4px; }
.launch__input {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: var(--bd) solid #000;
  border-radius: 12px;
  padding: 11px 14px 9px;
  outline: none;
  margin-bottom: 16px;
}
.launch__input:focus { background: var(--cyan-tint); }
.launch__submit { margin-top: 4px; }
.launch__err {
  margin-top: 12px;
  color: #B33A3A;
  font-size: 11px;
  background: #FFECEC;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 8px 12px;
}
.launch__done { text-align: center; padding: 10px 4px; }
.launch__done-big { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.launch__done p { font-size: 13.5px; color: var(--gray); }
.launch__done strong { color: var(--ink); }
.launch__done a { color: var(--cyan); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 26px;
  transform: translate(-50%, 0);
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: var(--bd) solid #000;
  border-radius: 999px;
  box-shadow: var(--shadow-lift);
  padding: 8px 18px 8px 8px;
  font-size: 12px; font-weight: 700;
  z-index: 50;
  animation: toast-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast[hidden] { display: none; }
.toast__avatar { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #000; object-fit: cover; background: var(--cyan-tint); }
.toast em { font-style: normal; color: var(--cyan); }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 16px); } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .app { grid-template-columns: 1fr; }
  .side { position: static; height: auto; min-height: 0; }
  .side__list { max-height: 300px; }
  .nomics { grid-template-columns: repeat(2, 1fr); }
  .user__handle { display: none; }
}
@media (max-width: 480px) {
  .brand__word { font-size: 16px; }
  .pill--cta { font-size: 12px; padding: 9px 16px 7px; }
  .card { padding: 18px; }
  .card--hello { flex-direction: column; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .coin, .card--hello__croc, .dot, .count.is-pop, .member.is-new, .toast { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}
